diff -Nru kpackagekit-0.5.4/AddRm/KcmKpkAddRm.cpp kpackagekit-0.6.0/AddRm/KcmKpkAddRm.cpp --- kpackagekit-0.5.4/AddRm/KcmKpkAddRm.cpp 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/AddRm/KcmKpkAddRm.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -20,6 +20,10 @@ #include "KcmKpkAddRm.h" +#include "KpkAddRm.h" + +#include "KpkPackageModel.h" + #include #include diff -Nru kpackagekit-0.5.4/AddRm/KcmKpkAddRm.h kpackagekit-0.6.0/AddRm/KcmKpkAddRm.h --- kpackagekit-0.5.4/AddRm/KcmKpkAddRm.h 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/AddRm/KcmKpkAddRm.h 2010-03-19 21:14:59.000000000 +0000 @@ -23,8 +23,8 @@ #include #include -#include "KpkAddRm.h" +class KpkAddRm; class KcmKpkAddRm : public KCModule { Q_OBJECT diff -Nru kpackagekit-0.5.4/AddRm/KpkAddRm.cpp kpackagekit-0.6.0/AddRm/KpkAddRm.cpp --- kpackagekit-0.5.4/AddRm/KpkAddRm.cpp 2009-12-07 18:31:42.000000000 +0000 +++ kpackagekit-0.6.0/AddRm/KpkAddRm.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -28,7 +28,10 @@ #include #include +#include #include +#include +#include #include #include @@ -36,7 +39,7 @@ #define UNIVERSAL_PADDING 6 -KCONFIGGROUP_DECLARE_ENUM_QOBJECT(Client, Filter) +KCONFIGGROUP_DECLARE_ENUM_QOBJECT(Enum, Filter) KpkAddRm::KpkAddRm(QWidget *parent) : QWidget(parent) @@ -64,7 +67,7 @@ packageView->viewport()->setAttribute(Qt::WA_Hover); // check to see if the backend support these actions - m_actions = m_client->actions(); + m_roles = m_client->actions(); // Connect this signal anyway so users that have backend that // do not support install or remove can be informed properly connect(m_pkg_model_main, SIGNAL(dataChanged(const QModelIndex, const QModelIndex)), @@ -76,17 +79,17 @@ toolBar->addAction(m_genericActionK); // Add actions that the backend supports - if (m_actions & Client::ActionSearchName) { + if (m_roles & Enum::RoleSearchName) { m_findMenu->addAction(actionFindName); setCurrentAction(actionFindName); } - if (m_actions & Client::ActionSearchDetails) { + if (m_roles & Enum::RoleSearchDetails) { m_findMenu->addAction(actionFindDescription); if (!m_currentAction) { setCurrentAction(actionFindDescription); } } - if (m_actions & Client::ActionSearchFile) { + if (m_roles & Enum::RoleSearchFile) { m_findMenu->addAction(actionFindFile); if (!m_currentAction) { setCurrentAction(actionFindFile); @@ -116,7 +119,7 @@ groupsCB->setModel(m_groupsModel); //initialize the groups - Client::Groups groups = m_client->groups(); + Enum::Groups groups = m_client->groups(); // Add Text search entry QStandardItem *groupItem; m_groupsModel->appendRow(groupItem = new QStandardItem(i18n("Text search"))); @@ -134,13 +137,13 @@ m_groupsModel->appendRow(groupItem = new QStandardItem(i18ncp("Groups of packages", "Group:", "Groups:", groups.size()))); groupItem->setEnabled(false); - foreach (const Client::Group &group, groups) { - if (group != Client::UnknownGroup) { + foreach (const Enum::Group &group, groups) { + if (group != Enum::UnknownGroup) { m_groupsModel->appendRow(groupItem = new QStandardItem(KpkStrings::groups(group))); groupItem->setData(Group, Qt::UserRole); groupItem->setData(group, Group); groupItem->setIcon(KpkIcons::groupsIcon(group)); - if (!(m_actions & Client::ActionSearchGroup)) { + if (!(m_roles & Enum::RoleSearchGroup)) { groupItem->setSelectable(false); } } @@ -163,7 +166,6 @@ void KpkAddRm::setCurrentAction(QAction *action) { - kDebug(); // just load the new action if it changes this // also ensures that our menu has more than one action if (m_currentAction != action) { @@ -235,20 +237,20 @@ void KpkAddRm::on_packageView_pressed(const QModelIndex &index) { if (index.column() == 0) { - Package *p = m_pkg_model_main->package(index); + QSharedPointerp = m_pkg_model_main->package(index); if (p) { if (pkg_delegate->isExtended(index)) { pkg_delegate->contractItem(index); } else { - pkg_delegate->extendItem(new KpkPackageDetails(p, m_actions), index); + pkg_delegate->extendItem(new KpkPackageDetails(p, m_roles), index); } } } } -void KpkAddRm::errorCode(PackageKit::Client::ErrorType error, const QString &details) +void KpkAddRm::errorCode(PackageKit::Enum::Error error, const QString &details) { - if (error != Client::ErrorTransactionCancelled) { + if (error != Enum::ErrorTransactionCancelled) { KMessageBox::detailedSorry(this, KpkStrings::errorMessage(error), details, KpkStrings::error(error), KMessageBox::Notify); } } @@ -258,7 +260,6 @@ KConfig config("KPackageKit"); KConfigGroup filterMenuGroup(&config, "FilterMenu"); - kDebug() << "Saving settings"; // For usability we will only save ViewInGroups settings and Newest filter, // - The user might get angry when he does not find any packages because he didn't // see that a filter is set by config @@ -267,21 +268,20 @@ filterMenuGroup.writeEntry("ViewInGroups", m_actionViewInGroups->isChecked()); // This entry does not depend on the backend it's ok to call this pointer - if (m_client->filters() & Client::FilterNewest) { + if (m_client->filters() & Enum::FilterNewest) { filterMenuGroup.writeEntry("FilterNewest", - (bool) filters() & Client::FilterNewest); + static_cast(filters() & Enum::FilterNewest)); } } void KpkAddRm::on_actionFindName_triggered() { - kDebug(); setCurrentAction(actionFindName); if (m_mTransRuning) { m_pkClient_main->cancel(); } else if (!searchKLE->text().isEmpty()) { // cache the search - m_searchAction = Client::ActionSearchName; + m_searchRole = Enum::RoleSearchName; m_searchString = searchKLE->text(); m_searchFilters = filters(); // create the main transaction @@ -291,13 +291,12 @@ void KpkAddRm::on_actionFindDescription_triggered() { - kDebug(); setCurrentAction(actionFindDescription); if (m_mTransRuning) { m_pkClient_main->cancel(); } else if (!searchKLE->text().isEmpty()) { // cache the search - m_searchAction = Client::ActionSearchDetails; + m_searchRole = Enum::RoleSearchDetails; m_searchString = searchKLE->text(); m_searchFilters = filters(); // create the main transaction @@ -307,13 +306,12 @@ void KpkAddRm::on_actionFindFile_triggered() { - kDebug(); setCurrentAction(actionFindFile); if (m_mTransRuning) { m_pkClient_main->cancel(); } else if (!searchKLE->text().isEmpty()) { // cache the search - m_searchAction = Client::ActionSearchFile; + m_searchRole = Enum::RoleSearchFile; m_searchString = searchKLE->text(); m_searchFilters = filters(); // create the main transaction @@ -324,7 +322,7 @@ void KpkAddRm::on_groupsCB_currentIndexChanged(int index) { if (groupsCB->itemData(index, Qt::UserRole).isValid()) { - switch ((ItemType) groupsCB->itemData(index, Qt::UserRole).toUInt()) { + switch (static_cast(groupsCB->itemData(index, Qt::UserRole).toUInt())) { case AllPackages : // contract and delete and details widgets pkg_delegate->contractAll(); @@ -336,14 +334,14 @@ pkg_delegate->contractAll(); // cleans the models m_pkg_model_main->clear(); - foreach (Package *pkg, m_pkg_model_main->selectedPackages()) { + foreach (QSharedPointerpkg, m_pkg_model_main->selectedPackages()) { m_pkg_model_main->addPackage(pkg); } break; case Group : // cache the search - m_searchAction = Client::ActionSearchGroup; - m_searchGroup = (Client::Group) groupsCB->itemData(index, Group).toUInt(); + m_searchRole = Enum::RoleSearchGroup; + m_searchGroup = static_cast(groupsCB->itemData(index, Group).toUInt()); m_searchFilters = filters(); // create the main transaction search(); @@ -357,20 +355,20 @@ // if so refresh it and do nothing int index = groupsCB->currentIndex(); if (groupsCB->itemData(index, Qt::UserRole).isValid() && - ListOfChanges == (ItemType) groupsCB->itemData(index, Qt::UserRole).toUInt()) + ListOfChanges == static_cast(groupsCB->itemData(index, Qt::UserRole).toUInt())) { on_groupsCB_currentIndexChanged(index); return; } else { // search - if (m_searchAction == Client::ActionSearchName) { - m_pkClient_main = m_client->searchName(m_searchString, m_searchFilters ); - } else if (m_searchAction == Client::ActionSearchDetails) { + if (m_searchRole == Enum::RoleSearchName) { + m_pkClient_main = m_client->searchNames(m_searchString, m_searchFilters ); + } else if (m_searchRole == Enum::RoleSearchDetails) { m_pkClient_main = m_client->searchDetails(m_searchString, m_searchFilters); - } else if (m_searchAction == Client::ActionSearchFile) { - m_pkClient_main = m_client->searchFile(m_searchString, m_searchFilters); - } else if (m_searchAction == Client::ActionSearchGroup) { - m_pkClient_main = m_client->searchGroup(m_searchGroup, m_searchFilters); + } else if (m_searchRole == Enum::RoleSearchFile) { + m_pkClient_main = m_client->searchFiles(m_searchString, m_searchFilters); + } else if (m_searchRole == Enum::RoleSearchGroup) { + m_pkClient_main = m_client->searchGroups(m_searchGroup, m_searchFilters); } else { kWarning() << "Search type not implemented yet"; return; @@ -394,12 +392,12 @@ void KpkAddRm::connectTransaction(Transaction *transaction) { - connect(transaction, SIGNAL(package(PackageKit::Package *)), - m_pkg_model_main, SLOT(addPackage(PackageKit::Package *))); - connect(transaction, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(finished(PackageKit::Transaction::ExitStatus, uint))); - connect(transaction, SIGNAL(errorCode(PackageKit::Client::ErrorType, const QString &)), - this, SLOT(errorCode(PackageKit::Client::ErrorType, const QString &))); + connect(transaction, SIGNAL(package(QSharedPointer)), + m_pkg_model_main, SLOT(addPackage(QSharedPointer))); + connect(transaction, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished(PackageKit::Enum::Exit, uint))); + connect(transaction, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &))); setCurrentActionEnabled(transaction->allowCancel()); } @@ -409,11 +407,6 @@ setCurrentActionEnabled(trans->allowCancel()); } -void KpkAddRm::message(PackageKit::Client::MessageType message, const QString &details) -{ - qDebug() << "Error code: " << message << " two: " << details; -} - void KpkAddRm::save() { QPointer frm = new KpkReviewChanges(m_pkg_model_main->selectedPackages(), this); @@ -432,7 +425,7 @@ m_pkg_model_main->uncheckAll(); } -void KpkAddRm::finished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkAddRm::finished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) Q_UNUSED(status) @@ -444,7 +437,7 @@ m_mTransRuning = false; } -void KpkAddRm::filterMenu(Client::Filters filters) +void KpkAddRm::filterMenu(Enum::Filters filters) { m_filtersQM = new QMenu(this); filtersTB->setMenu(m_filtersQM); @@ -453,7 +446,7 @@ KConfig config("KPackageKit"); KConfigGroup filterMenuGroup(&config, "FilterMenu"); - if (filters & Client::FilterCollections || filters & Client::FilterNotCollections) { + if (filters & Enum::FilterCollections || filters & Enum::FilterNotCollections) { QMenu *menuCollections = new QMenu(i18n("Collections"), m_filtersQM); m_filtersQM->addMenu(menuCollections); QActionGroup *collectionGroup = new QActionGroup(menuCollections); @@ -461,42 +454,38 @@ QAction *collectionTrue = new QAction(i18n("Only collections"), collectionGroup); collectionTrue->setCheckable(true); - m_filtersAction[collectionTrue] = Client::FilterCollections; + m_filtersAction[collectionTrue] = Enum::FilterCollections; collectionGroup->addAction(collectionTrue); menuCollections->addAction(collectionTrue); actions << collectionTrue; QAction *collectionFalse = new QAction(i18n("Exclude collections"), collectionGroup); collectionFalse->setCheckable(true); - m_filtersAction[collectionFalse] = Client::FilterNotCollections; + m_filtersAction[collectionFalse] = Enum::FilterNotCollections; collectionGroup->addAction(collectionFalse); menuCollections->addAction(collectionFalse); actions << collectionFalse; } - if (filters & Client::FilterInstalled || filters & Client::FilterNotInstalled) { + if (filters & Enum::FilterInstalled || filters & Enum::FilterNotInstalled) { // Installed QMenu *menuInstalled = new QMenu(i18n("Installed"), m_filtersQM); m_filtersQM->addMenu(menuInstalled); QActionGroup *installedGroup = new QActionGroup(menuInstalled); installedGroup->setExclusive(true); -// if (filters & Client::FilterInstalled) { - QAction *installedTrue = new QAction(i18n("Only installed"), installedGroup); - installedTrue->setCheckable(true); - m_filtersAction[installedTrue] = Client::FilterInstalled; - installedGroup->addAction(installedTrue); - menuInstalled->addAction(installedTrue); - actions << installedTrue; -// } - -// if (filters & Client::FilterNotInstalled) { - QAction *installedFalse = new QAction(i18n("Only available"), installedGroup); - installedFalse->setCheckable(true); - m_filtersAction[installedFalse] = Client::FilterNotInstalled; - installedGroup->addAction(installedFalse); - menuInstalled->addAction(installedFalse); - actions << installedFalse; -// } + QAction *installedTrue = new QAction(i18n("Only installed"), installedGroup); + installedTrue->setCheckable(true); + m_filtersAction[installedTrue] = Enum::FilterInstalled; + installedGroup->addAction(installedTrue); + menuInstalled->addAction(installedTrue); + actions << installedTrue; + + QAction *installedFalse = new QAction(i18n("Only available"), installedGroup); + installedFalse->setCheckable(true); + m_filtersAction[installedFalse] = Enum::FilterNotInstalled; + installedGroup->addAction(installedFalse); + menuInstalled->addAction(installedFalse); + actions << installedFalse; QAction *installedNone = new QAction(i18n("No filter"), installedGroup); installedNone->setCheckable(true); @@ -505,30 +494,26 @@ menuInstalled->addAction(installedNone); actions << installedNone; } - if (filters & Client::FilterDevelopment || filters & Client::FilterNotDevelopment) { + if (filters & Enum::FilterDevelopment || filters & Enum::FilterNotDevelopment) { // Development QMenu *menuDevelopment = new QMenu(i18n("Development"), m_filtersQM); m_filtersQM->addMenu(menuDevelopment); QActionGroup *developmentGroup = new QActionGroup(menuDevelopment); developmentGroup->setExclusive(true); -// if (filters & Client::FilterDevelopment) { - QAction *developmentTrue = new QAction(i18n("Only development"), developmentGroup); - developmentTrue->setCheckable(true); - m_filtersAction[developmentTrue] = Client::FilterDevelopment; - developmentGroup->addAction(developmentTrue); - menuDevelopment->addAction(developmentTrue); - actions << developmentTrue; -// } - -// if (filters & Client::FilterNotDevelopment) { - QAction *developmentFalse = new QAction(i18n("Only end user files"), developmentGroup); - developmentFalse->setCheckable(true); - m_filtersAction[developmentFalse] = Client::FilterNotDevelopment; - developmentGroup->addAction(developmentFalse); - menuDevelopment->addAction(developmentFalse); - actions << developmentFalse; -// } + QAction *developmentTrue = new QAction(i18n("Only development"), developmentGroup); + developmentTrue->setCheckable(true); + m_filtersAction[developmentTrue] = Enum::FilterDevelopment; + developmentGroup->addAction(developmentTrue); + menuDevelopment->addAction(developmentTrue); + actions << developmentTrue; + + QAction *developmentFalse = new QAction(i18n("Only end user files"), developmentGroup); + developmentFalse->setCheckable(true); + m_filtersAction[developmentFalse] = Enum::FilterNotDevelopment; + developmentGroup->addAction(developmentFalse); + menuDevelopment->addAction(developmentFalse); + actions << developmentFalse; QAction *developmentNone = new QAction(i18n("No filter"), developmentGroup); developmentNone->setCheckable(true); @@ -537,30 +522,26 @@ menuDevelopment->addAction(developmentNone); actions << developmentNone; } - if (filters & Client::FilterGui || filters & Client::FilterNotGui) { + if (filters & Enum::FilterGui || filters & Enum::FilterNotGui) { // Graphical QMenu *menuGui = new QMenu(i18n("Graphical"), m_filtersQM); m_filtersQM->addMenu(menuGui); QActionGroup *guiGroup = new QActionGroup(menuGui); guiGroup->setExclusive(true); -// if (filters & Client::FilterGui) { - QAction *guiTrue = new QAction(i18n("Only graphical"), guiGroup); - guiTrue->setCheckable(true); - m_filtersAction[guiTrue] = Client::FilterGui; - guiGroup->addAction(guiTrue); - menuGui->addAction(guiTrue); - actions << guiTrue; -// } - -// if (filters & Client::FilterNotGui) { - QAction *guiFalse = new QAction(i18n("Only text"), guiGroup); - guiFalse->setCheckable(true); - m_filtersAction[guiFalse] = Client::FilterNotGui; - guiGroup->addAction(guiFalse); - menuGui->addAction(guiFalse); - actions << guiFalse; -// } + QAction *guiTrue = new QAction(i18n("Only graphical"), guiGroup); + guiTrue->setCheckable(true); + m_filtersAction[guiTrue] = Enum::FilterGui; + guiGroup->addAction(guiTrue); + menuGui->addAction(guiTrue); + actions << guiTrue; + + QAction *guiFalse = new QAction(i18n("Only text"), guiGroup); + guiFalse->setCheckable(true); + m_filtersAction[guiFalse] = Enum::FilterNotGui; + guiGroup->addAction(guiFalse); + menuGui->addAction(guiFalse); + actions << guiFalse; QAction *guiNone = new QAction(i18n("No filter"), guiGroup); guiNone->setCheckable(true); @@ -569,30 +550,26 @@ menuGui->addAction(guiNone); actions << guiNone; } - if (filters & Client::FilterFree || filters & Client::FilterNotFree) { + if (filters & Enum::FilterFree || filters & Enum::FilterNotFree) { // Free QMenu *menuFree = new QMenu(i18nc("Filter for free packages", "Free"), m_filtersQM); m_filtersQM->addMenu(menuFree); QActionGroup *freeGroup = new QActionGroup(menuFree); freeGroup->setExclusive(true); -// if (filters & Client::FilterFree) { - QAction *freeTrue = new QAction(i18n("Only free software"), freeGroup); - freeTrue->setCheckable(true); - m_filtersAction[freeTrue] = Client::FilterFree; - freeGroup->addAction(freeTrue); - menuFree->addAction(freeTrue); - actions << freeTrue; -// } - -// if (filters & Client::FilterNotFree) { - QAction *freeFalse = new QAction(i18n("Only non-free software"), freeGroup); - freeFalse->setCheckable(true); - m_filtersAction[freeFalse] = Client::FilterNotFree; - freeGroup->addAction(freeFalse); - menuFree->addAction(freeFalse); - actions << freeFalse; -// } + QAction *freeTrue = new QAction(i18n("Only free software"), freeGroup); + freeTrue->setCheckable(true); + m_filtersAction[freeTrue] = Enum::FilterFree; + freeGroup->addAction(freeTrue); + menuFree->addAction(freeTrue); + actions << freeTrue; + + QAction *freeFalse = new QAction(i18n("Only non-free software"), freeGroup); + freeFalse->setCheckable(true); + m_filtersAction[freeFalse] = Enum::FilterNotFree; + freeGroup->addAction(freeFalse); + menuFree->addAction(freeFalse); + actions << freeFalse; QAction *freeNone = new QAction(i18n("No filter"), freeGroup); freeNone->setCheckable(true); @@ -601,30 +578,26 @@ menuFree->addAction(freeNone); actions << freeNone; } - if (filters & Client::FilterArch || filters & Client::FilterNotArch) { + if (filters & Enum::FilterArch || filters & Enum::FilterNotArch) { // Arch QMenu *menuArch = new QMenu(i18n("Architectures"), m_filtersQM); m_filtersQM->addMenu(menuArch); QActionGroup *archGroup = new QActionGroup(menuArch); archGroup->setExclusive(true); -// if (filters & Client::FilterArch) { - QAction *archTrue = new QAction(i18n("Only native architectures"), archGroup); - archTrue->setCheckable(true); - m_filtersAction[archTrue] = Client::FilterArch; - archGroup->addAction(archTrue); - menuArch->addAction(archTrue); - actions << archTrue; -// } - -// if (filters & Client::FilterNotArch) { - QAction *archFalse = new QAction(i18n("Only non-native architectures"), archGroup); - archFalse->setCheckable(true); - m_filtersAction[archFalse] = Client::FilterNotArch; - archGroup->addAction(archFalse); - menuArch->addAction(archFalse); - actions << archFalse; -// } + QAction *archTrue = new QAction(i18n("Only native architectures"), archGroup); + archTrue->setCheckable(true); + m_filtersAction[archTrue] = Enum::FilterArch; + archGroup->addAction(archTrue); + menuArch->addAction(archTrue); + actions << archTrue; + + QAction *archFalse = new QAction(i18n("Only non-native architectures"), archGroup); + archFalse->setCheckable(true); + m_filtersAction[archFalse] = Enum::FilterNotArch; + archGroup->addAction(archFalse); + menuArch->addAction(archFalse); + actions << archFalse; QAction *archNone = new QAction(i18n("No filter"), archGroup); archNone->setCheckable(true); @@ -633,30 +606,26 @@ menuArch->addAction(archNone); actions << archNone; } - if (filters & Client::FilterSource || filters & Client::FilterNotSource) { + if (filters & Enum::FilterSource || filters & Enum::FilterNotSource) { // Source QMenu *menuSource = new QMenu(i18nc("Filter for source packages", "Source"), m_filtersQM); m_filtersQM->addMenu(menuSource); QActionGroup *sourceGroup = new QActionGroup(menuSource); sourceGroup->setExclusive(true); -// if (filters & Client::FilterSource) { - QAction *sourceTrue = new QAction(i18n("Only sourcecode"), sourceGroup); - sourceTrue->setCheckable(true); - m_filtersAction[sourceTrue] = Client::FilterSource; - sourceGroup->addAction(sourceTrue); - menuSource->addAction(sourceTrue); - actions << sourceTrue; -// } - -// if (filters & Client::FilterNotSource) { - QAction *sourceFalse = new QAction(i18n("Only non-sourcecode"), sourceGroup); - sourceFalse->setCheckable(true); - m_filtersAction[sourceFalse] = Client::FilterNotSource; - sourceGroup->addAction(sourceFalse); - menuSource->addAction(sourceFalse); - actions << sourceFalse; -// } + QAction *sourceTrue = new QAction(i18n("Only sourcecode"), sourceGroup); + sourceTrue->setCheckable(true); + m_filtersAction[sourceTrue] = Enum::FilterSource; + sourceGroup->addAction(sourceTrue); + menuSource->addAction(sourceTrue); + actions << sourceTrue; + + QAction *sourceFalse = new QAction(i18n("Only non-sourcecode"), sourceGroup); + sourceFalse->setCheckable(true); + m_filtersAction[sourceFalse] = Enum::FilterNotSource; + sourceGroup->addAction(sourceFalse); + menuSource->addAction(sourceFalse); + actions << sourceFalse; QAction *sourceNone = new QAction(i18n("No filter"), sourceGroup); sourceNone->setCheckable(true); @@ -665,23 +634,23 @@ menuSource->addAction(sourceNone); actions << sourceNone; } - if (filters & Client::FilterBasename) { + if (filters & Enum::FilterBasename) { m_filtersQM->addSeparator(); QAction *basename = new QAction(i18n("Hide subpackages"), m_filtersQM); basename->setCheckable(true); - basename->setToolTip( i18n("Only show one package, not subpackages") ); - m_filtersAction[basename] = Client::FilterBasename; + basename->setToolTip(i18n("Only show one package, not subpackages")); + m_filtersAction[basename] = Enum::FilterBasename; m_filtersQM->addAction(basename); actions << basename; } - if (filters & Client::FilterNewest) { + if (filters & Enum::FilterNewest) { m_filtersQM->addSeparator(); QAction *newest = new QAction(i18n("Only newest packages"), m_filtersQM); newest->setCheckable(true); newest->setChecked(filterMenuGroup.readEntry("FilterNewest", true)); - newest->setToolTip( i18n("Only show the newest available package") ); - m_filtersAction[newest] = Client::FilterNewest; + newest->setToolTip(i18n("Only show the newest available package")); + m_filtersAction[newest] = Enum::FilterNewest; m_filtersQM->addAction(newest); actions << newest; @@ -712,9 +681,9 @@ packageView->setRootIsDecorated(value); } -Client::Filters KpkAddRm::filters() +Enum::Filters KpkAddRm::filters() { - Client::Filters filters; + Enum::Filters filters; bool filterSet = false; for (int i = 0 ; i < actions.size(); ++i) { if (actions.at(i)->isChecked()) { @@ -725,7 +694,7 @@ } } if (!filterSet) { - filters = Client::NoFilter; + filters = Enum::NoFilter; } return m_searchFilters = filters; } diff -Nru kpackagekit-0.5.4/AddRm/KpkAddRm.h kpackagekit-0.6.0/AddRm/KpkAddRm.h --- kpackagekit-0.5.4/AddRm/KpkAddRm.h 2009-12-07 18:31:42.000000000 +0000 +++ kpackagekit-0.6.0/AddRm/KpkAddRm.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -18,25 +18,23 @@ * Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef PKADDRM_H -#define PKADDRM_H +#ifndef KPK_ADDRM_H +#define KPK_ADDRM_H + +#include "ui_KpkAddRm.h" #include #include #include #include -#include - -#include "KpkPackageModel.h" -#include "KpkPackageDetails.h" -#include #include -#include "ui_KpkAddRm.h" using namespace PackageKit; +class KpkDelegate; +class KpkPackageModel; class KpkAddRm : public QWidget, public Ui::KpkAddRm { Q_OBJECT @@ -61,9 +59,8 @@ void on_groupsCB_currentIndexChanged(int index); void on_packageView_pressed(const QModelIndex &index); - void finished(PackageKit::Transaction::ExitStatus status, uint runtime); - void message(PackageKit::Client::MessageType message, const QString &details); - void errorCode(PackageKit::Client::ErrorType error, const QString &detail); + void finished(PackageKit::Enum::Exit status, uint runtime); + void errorCode(PackageKit::Enum::Error error, const QString &detail); void checkChanged(); void changed(); @@ -103,22 +100,22 @@ // We need to keep a list to build the filters string QList actions; - QHash m_filtersAction; - void filterMenu(Client::Filters filters); - Client::Filters filters(); + QHash m_filtersAction; + void filterMenu(Enum::Filters filters); + Enum::Filters filters(); void updateColumnsWidth(bool force = false); void setActionCancel(bool enabled); void search(); void connectTransaction(Transaction *transaction); - Client::Actions m_actions; + Enum::Roles m_roles; // Old search cache - Client::Action m_searchAction; - QString m_searchString; - Client::Group m_searchGroup; - Client::Filters m_searchFilters; + Enum::Role m_searchRole; + QString m_searchString; + Enum::Group m_searchGroup; + Enum::Filters m_searchFilters; protected: virtual void resizeEvent(QResizeEvent *event); diff -Nru kpackagekit-0.5.4/AddRm/KpkPackageDetails.cpp kpackagekit-0.6.0/AddRm/KpkPackageDetails.cpp --- kpackagekit-0.5.4/AddRm/KpkPackageDetails.cpp 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/AddRm/KpkPackageDetails.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -20,13 +20,14 @@ #include "KpkPackageDetails.h" +#include #include #include #include #include -KpkPackageDetails::KpkPackageDetails(PackageKit::Package *package, const Client::Actions &actions, QWidget *parent) +KpkPackageDetails::KpkPackageDetails(QSharedPointerpackage, const Enum::Roles &roles, QWidget *parent) : QWidget(parent), m_package(package), currentWidget(0), @@ -37,9 +38,9 @@ { setupUi(this); - // we check to see if the actions are supported by the backend + // we check to see which roles are supported by the backend // if so we ask for information and create the containers - if (actions & Client::ActionGetDetails) { + if (roles & Enum::RoleGetDetails) { descriptionKTB = new KTextBrowser(this); descriptionTB->click(); @@ -47,7 +48,7 @@ descriptionTB->setEnabled(false); } - if (actions & Client::ActionGetFiles) { + if (roles & Enum::RoleGetFiles) { filesPTE = new QPlainTextEdit(this); filesPTE->setVisible(false); if (!currentWidget) { @@ -57,7 +58,7 @@ fileListTB->setEnabled(false); } - if (actions & Client::ActionGetDepends) { + if (roles & Enum::RoleGetDepends) { dependsOnLV = new QListView(this); dependsOnLV->setVisible(false); dependsOnLV->setModel(m_pkg_model_dep = new KpkSimplePackageModel(this)); @@ -68,7 +69,7 @@ dependsOnTB->setEnabled(false); } - if (actions & Client::ActionGetRequires) { + if (roles & Enum::RoleGetRequires) { requiredByLV = new QListView(this); requiredByLV->setVisible(false); requiredByLV->setModel(m_pkg_model_req = new KpkSimplePackageModel(this)); @@ -99,21 +100,21 @@ gridLayout->addWidget(currentWidget = widget); } -void KpkPackageDetails::getDetails(PackageKit::Package *p) +void KpkPackageDetails::getDetails(QSharedPointerp) { // create the description transaction Transaction *t = Client::instance()->getDetails(p); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { - connect(t, SIGNAL(details(PackageKit::Package *)), - this, SLOT(description(PackageKit::Package *))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(getDetailsFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(details(QSharedPointer)), + this, SLOT(description(QSharedPointer))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(getDetailsFinished(PackageKit::Enum::Exit, uint))); } } -void KpkPackageDetails::description(PackageKit::Package *p) +void KpkPackageDetails::description(QSharedPointerp) { descriptionKTB->clear(); //format and show description @@ -135,7 +136,7 @@ + ":" + details->license() + ""; } - if (details->group() != Client::UnknownGroup) { + if (details->group() != Enum::UnknownGroup) { description += "" + i18nc("Group of the package", "Group") + ":" + KpkStrings::groups(details->group()) + ""; @@ -150,10 +151,10 @@ descriptionKTB->setHtml(description); } -void KpkPackageDetails::getDetailsFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkPackageDetails::getDetailsFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) - if (status != Transaction::ExitSuccess) { + if (status != Enum::ExitSuccess) { m_gettingOrGotDescription = false; } } @@ -167,21 +168,21 @@ } } -void KpkPackageDetails::getFiles(PackageKit::Package *p) +void KpkPackageDetails::getFiles(QSharedPointerp) { // create the files transaction Transaction *t = Client::instance()->getFiles(p); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { - connect(t, SIGNAL(files(PackageKit::Package *, const QStringList &)), - this, SLOT(files(PackageKit::Package *, const QStringList &))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(getFilesFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(files(QSharedPointer, const QStringList &)), + this, SLOT(files(QSharedPointer, const QStringList &))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(getFilesFinished(PackageKit::Enum::Exit, uint))); } } -void KpkPackageDetails::files(PackageKit::Package *package, const QStringList &files) +void KpkPackageDetails::files(QSharedPointerpackage, const QStringList &files) { Q_UNUSED(package) filesPTE->clear(); @@ -190,10 +191,10 @@ } } -void KpkPackageDetails::getFilesFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkPackageDetails::getFilesFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (filesPTE->document()->toPlainText().isEmpty()) { filesPTE->appendPlainText(i18n("No files were found.")); } @@ -211,25 +212,25 @@ } } -void KpkPackageDetails::getDepends(PackageKit::Package *p) +void KpkPackageDetails::getDepends(QSharedPointerp) { // create a transaction for the dependecies not recursive - Transaction *t = Client::instance()->getDepends(p, PackageKit::Client::NoFilter, false); + Transaction *t = Client::instance()->getDepends(p, PackageKit::Enum::NoFilter, false); m_pkg_model_dep->clear(); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { - connect(t, SIGNAL(package(PackageKit::Package *)), - m_pkg_model_dep, SLOT(addPackage(PackageKit::Package *))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(getDependsFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(package(QSharedPointer)), + m_pkg_model_dep, SLOT(addPackage(QSharedPointer))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(getDependsFinished(PackageKit::Enum::Exit, uint))); } } -void KpkPackageDetails::getDependsFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkPackageDetails::getDependsFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) - if (status != Transaction::ExitSuccess) { + if (status != Enum::ExitSuccess) { m_gettingOrGotDepends = false; } } @@ -243,25 +244,25 @@ } } -void KpkPackageDetails::getRequires(PackageKit::Package *p) +void KpkPackageDetails::getRequires(QSharedPointerp) { // create a transaction for the requirements not recursive - Transaction *t = Client::instance()->getRequires(p, PackageKit::Client::NoFilter, false); + Transaction *t = Client::instance()->getRequires(p, PackageKit::Enum::NoFilter, false); m_pkg_model_req->clear(); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { - connect(t, SIGNAL(package(PackageKit::Package *)), - m_pkg_model_req, SLOT(addPackage(PackageKit::Package *))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(getRequiresFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(package(QSharedPointer)), + m_pkg_model_req, SLOT(addPackage(QSharedPointer))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(getRequiresFinished(PackageKit::Enum::Exit, uint))); } } -void KpkPackageDetails::getRequiresFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkPackageDetails::getRequiresFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) - if (status != Transaction::ExitSuccess) { + if (status != Enum::ExitSuccess) { m_gettingOrGotRequires = false; } } diff -Nru kpackagekit-0.5.4/AddRm/KpkPackageDetails.h kpackagekit-0.6.0/AddRm/KpkPackageDetails.h --- kpackagekit-0.5.4/AddRm/KpkPackageDetails.h 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/AddRm/KpkPackageDetails.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -18,8 +18,8 @@ * Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef KPKPACKAGEDETAILS_H -#define KPKPACKAGEDETAILS_H +#ifndef KPK_PACKAGE_DETAILS_H +#define KPK_PACKAGE_DETAILS_H #include #include @@ -28,27 +28,26 @@ #include #include -#include - #include "ui_KpkPackageDetails.h" using namespace PackageKit; +class KpkSimplePackageModel; class KpkPackageDetails : public QWidget, Ui::KpkPackageDetails { Q_OBJECT public: - KpkPackageDetails(PackageKit::Package *package, const Client::Actions &actions, QWidget *parent = 0); + KpkPackageDetails(QSharedPointerpackage, const Enum::Roles &roles, QWidget *parent = 0); ~KpkPackageDetails(); private slots: - void description(PackageKit::Package *package); - void files(PackageKit::Package *package, const QStringList &files); + void description(QSharedPointerpackage); + void files(QSharedPointerpackage, const QStringList &files); - void getDetailsFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void getFilesFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void getDependsFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void getRequiresFinished(PackageKit::Transaction::ExitStatus status, uint runtime); + void getDetailsFinished(PackageKit::Enum::Exit status, uint runtime); + void getFilesFinished(PackageKit::Enum::Exit status, uint runtime); + void getDependsFinished(PackageKit::Enum::Exit status, uint runtime); + void getRequiresFinished(PackageKit::Enum::Exit status, uint runtime); void on_descriptionTB_clicked(); void on_fileListTB_clicked(); @@ -56,7 +55,7 @@ void on_requiredByTB_clicked(); private: - Package *m_package; + QSharedPointerm_package; KpkSimplePackageModel *m_pkg_model_dep; KpkSimplePackageModel *m_pkg_model_req; @@ -74,10 +73,10 @@ void setCurrentWidget(QWidget *widget); - void getDetails(PackageKit::Package *p); - void getFiles(PackageKit::Package *p); - void getDepends(PackageKit::Package *p); - void getRequires(PackageKit::Package *p); + void getDetails(QSharedPointerp); + void getFiles(QSharedPointerp); + void getDepends(QSharedPointerp); + void getRequires(QSharedPointerp); }; #endif diff -Nru kpackagekit-0.5.4/CMakeLists.txt kpackagekit-0.6.0/CMakeLists.txt --- kpackagekit-0.5.4/CMakeLists.txt 2009-12-07 18:36:07.000000000 +0000 +++ kpackagekit-0.6.0/CMakeLists.txt 2010-03-19 21:15:09.000000000 +0000 @@ -6,7 +6,7 @@ find_package(Gettext) include(FindPkgConfig) -pkg_check_modules(QPACKAGEKIT REQUIRED packagekit-qt>=0.5.5) +pkg_check_modules(QPACKAGEKIT REQUIRED packagekit-qt>=0.6.3) include(KDE4Defaults) add_definitions(${QT_DEFINITIONS} @@ -28,4 +28,4 @@ add_subdirectory(SmartIcon) add_subdirectory(KPackageKitD) add_subdirectory(Desktop) -add_subdirectory(po) \ No newline at end of file +add_subdirectory(po) diff -Nru kpackagekit-0.5.4/debian/changelog kpackagekit-0.6.0/debian/changelog --- kpackagekit-0.5.4/debian/changelog 2010-05-19 00:13:22.000000000 +0100 +++ kpackagekit-0.6.0/debian/changelog 2010-06-17 11:33:05.000000000 +0100 @@ -1,3 +1,9 @@ +kpackagekit (0.6.0-0ubuntu1) maverick; urgency=low + + * New upstream release + + -- Jonathan Riddell Thu, 17 Jun 2010 11:32:37 +0100 + kpackagekit (0.5.4-0ubuntu5) maverick; urgency=low * Add an explicit depend on cmake now that kdelibs5-dev doesn't depend on it diff -Nru kpackagekit-0.5.4/debian/control kpackagekit-0.6.0/debian/control --- kpackagekit-0.5.4/debian/control 2010-05-19 00:21:19.000000000 +0100 +++ kpackagekit-0.6.0/debian/control 2010-06-17 11:32:59.000000000 +0100 @@ -3,7 +3,7 @@ Priority: extra Maintainer: Kubuntu Developers XSBC-Original-Maintainer: Sebastian Heinlein -Build-Depends: debhelper (>= 7.3.16), pkg-kde-tools (>= 0.5.0), cmake, libpackagekit-qt-dev (>= 0.5.0), cmake, kdelibs5-dev, libdbus-1-dev +Build-Depends: debhelper (>= 7.3.16), pkg-kde-tools (>= 0.5.0), cmake, libpackagekit-qt-dev (>= 0.6.5), cmake, kdelibs5-dev, libdbus-1-dev Standards-Version: 3.8.4 Homepage: http://www.packagekit.org diff -Nru kpackagekit-0.5.4/debian/patches/kubuntu_01_edit_sources.patch kpackagekit-0.6.0/debian/patches/kubuntu_01_edit_sources.patch --- kpackagekit-0.5.4/debian/patches/kubuntu_01_edit_sources.patch 2010-04-04 02:55:02.000000000 +0100 +++ kpackagekit-0.6.0/debian/patches/kubuntu_01_edit_sources.patch 2010-06-18 11:47:08.000000000 +0100 @@ -1,15 +1,16 @@ -diff -ur kpackagekit-0.5.4/Settings/KpkSettings.cpp kpackagekit-0.5.4/Settings/KpkSettings.cpp ---- kpackagekit-0.5.4/Settings/KpkSettings.cpp 2009-12-07 18:31:35.000000000 +0000 -+++ kpackagekit-0.5.4/Settings/KpkSettings.cpp 2010-01-27 20:14:55.000000000 +0000 -@@ -25,6 +25,7 @@ +Index: KPackageKit-0.6.0/Settings/KpkSettings.cpp +=================================================================== +--- KPackageKit-0.6.0.orig/Settings/KpkSettings.cpp 2010-03-19 21:14:58.000000000 +0000 ++++ KPackageKit-0.6.0/Settings/KpkSettings.cpp 2010-06-18 11:46:59.063711620 +0100 +@@ -28,6 +28,7 @@ #include #include #include +#include - #include + #include using namespace PackageKit; -@@ -58,7 +59,12 @@ +@@ -61,7 +62,12 @@ originGB->setEnabled(false); } @@ -23,7 +24,7 @@ intervalCB->addItem(i18nc("Daily refresh the package cache", "Daily"), KpkEnum::Daily); intervalCB->addItem(i18nc("Weekly refresh the package cache", "Weekly"), KpkEnum::Weekly); intervalCB->addItem(i18nc("Monthly refresh the package cache", "Monthly"), KpkEnum::Monthly); -@@ -68,9 +74,17 @@ +@@ -71,9 +77,17 @@ autoCB->addItem(i18n("All updates"), KpkEnum::All); autoCB->addItem(i18nc("None updates will be automatically installed", "None"), KpkEnum::None); @@ -40,8 +41,8 @@ + connect( editSourcesPB, SIGNAL( clicked() ), this, SLOT( runSourcesEditor() ) ); } - void KpkSettings::on_showOriginsCB_stateChanged(int state) -@@ -112,6 +126,27 @@ + // TODO update the repo list connecting to repo changed signal +@@ -116,6 +130,27 @@ autoCB->setEnabled(enabled); } @@ -69,9 +70,10 @@ void KpkSettings::load() { KConfig config("KPackageKit"); -diff -ur kpackagekit-0.5.4/Settings/KpkSettings.h kpackagekit-0.5.4/Settings/KpkSettings.h ---- kpackagekit-0.5.4/Settings/KpkSettings.h 2009-11-17 12:32:04.000000000 +0000 -+++ kpackagekit-0.5.4/Settings/KpkSettings.h 2010-01-27 20:05:24.000000000 +0000 +Index: KPackageKit-0.6.0/Settings/KpkSettings.h +=================================================================== +--- KPackageKit-0.6.0.orig/Settings/KpkSettings.h 2010-03-19 21:14:58.000000000 +0000 ++++ KPackageKit-0.6.0/Settings/KpkSettings.h 2010-06-18 11:46:41.163693880 +0100 @@ -40,6 +40,8 @@ void save(); void defaults(); @@ -81,9 +83,10 @@ signals: void changed(bool state); -diff -ur kpackagekit-0.5.4/Settings/KpkSettings.ui kpackagekit-0.5.4/Settings/KpkSettings.ui ---- kpackagekit-0.5.4/Settings/KpkSettings.ui 2009-11-17 12:32:04.000000000 +0000 -+++ kpackagekit-0.5.4/Settings/KpkSettings.ui 2010-01-27 20:05:24.000000000 +0000 +Index: KPackageKit-0.6.0/Settings/KpkSettings.ui +=================================================================== +--- KPackageKit-0.6.0.orig/Settings/KpkSettings.ui 2009-11-17 12:32:04.000000000 +0000 ++++ KPackageKit-0.6.0/Settings/KpkSettings.ui 2010-06-18 11:46:41.171720978 +0100 @@ -79,6 +79,26 @@ diff -Nru kpackagekit-0.5.4/debian/patches/kubuntu_04_tray_icon.patch kpackagekit-0.6.0/debian/patches/kubuntu_04_tray_icon.patch --- kpackagekit-0.5.4/debian/patches/kubuntu_04_tray_icon.patch 2010-04-04 02:55:02.000000000 +0100 +++ kpackagekit-0.6.0/debian/patches/kubuntu_04_tray_icon.patch 2010-06-18 11:47:15.000000000 +0100 @@ -1,5 +1,7 @@ ---- kpackagekit/SmartIcon/KpkUpdateIcon.cpp 2009-11-17 18:25:12.000000000 +0000 -+++ kpackagekit/SmartIcon/KpkUpdateIcon.cpp 2010-01-27 19:30:07.000000000 +0000 +Index: KPackageKit-0.6.0/SmartIcon/KpkUpdateIcon.cpp +=================================================================== +--- KPackageKit-0.6.0.orig/SmartIcon/KpkUpdateIcon.cpp 2010-03-19 21:14:58.000000000 +0000 ++++ KPackageKit-0.6.0/SmartIcon/KpkUpdateIcon.cpp 2010-06-18 11:47:11.919697093 +0100 @@ -199,6 +199,7 @@ QString text; @@ -15,4 +17,4 @@ + */ m_updateNotify->setText(text); - QStringList actions; + diff -Nru kpackagekit-0.5.4/debian/patches/kubuntu_05_hide_rollback_button.diff kpackagekit-0.6.0/debian/patches/kubuntu_05_hide_rollback_button.diff --- kpackagekit-0.5.4/debian/patches/kubuntu_05_hide_rollback_button.diff 2010-04-04 02:55:02.000000000 +0100 +++ kpackagekit-0.6.0/debian/patches/kubuntu_05_hide_rollback_button.diff 2010-06-18 11:47:20.000000000 +0100 @@ -1,8 +1,8 @@ -Index: kpackagekit-0.5.4/Updater/KpkHistory.cpp +Index: KPackageKit-0.6.0/Updater/KpkHistory.cpp =================================================================== ---- kpackagekit-0.5.4.orig/Updater/KpkHistory.cpp 2010-03-25 19:59:04.089433287 -0400 -+++ kpackagekit-0.5.4/Updater/KpkHistory.cpp 2010-03-25 19:59:08.729414827 -0400 -@@ -42,12 +42,12 @@ +--- KPackageKit-0.6.0.orig/Updater/KpkHistory.cpp 2010-06-18 11:44:45.519696883 +0100 ++++ KPackageKit-0.6.0/Updater/KpkHistory.cpp 2010-06-18 11:47:17.256705387 +0100 +@@ -45,12 +45,12 @@ connect(searchLineKLE, SIGNAL(textChanged(const QString &)), m_proxyModel, SLOT(setFilterRegExp(const QString &))); diff -Nru kpackagekit-0.5.4/debian/patches/kubuntu_06_no_automatic_updates.diff kpackagekit-0.6.0/debian/patches/kubuntu_06_no_automatic_updates.diff --- kpackagekit-0.5.4/debian/patches/kubuntu_06_no_automatic_updates.diff 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/debian/patches/kubuntu_06_no_automatic_updates.diff 2010-06-18 12:01:17.000000000 +0100 @@ -0,0 +1,21 @@ +Index: KPackageKit-0.6.0/SmartIcon/KpkUpdateIcon.cpp +=================================================================== +--- KPackageKit-0.6.0.orig/SmartIcon/KpkUpdateIcon.cpp 2010-06-18 11:59:18.751703100 +0100 ++++ KPackageKit-0.6.0/SmartIcon/KpkUpdateIcon.cpp 2010-06-18 12:01:11.475695138 +0100 +@@ -243,6 +243,7 @@ + KConfig config("KPackageKit"); + KConfigGroup checkUpdateGroup(&config, "CheckUpdate"); + uint updateType = static_cast(checkUpdateGroup.readEntry("autoUpdate", KpkEnum::AutoUpdateDefault)); ++ /* + if (updateType == KpkEnum::None) { + // update none + notifyUpdates(); +@@ -302,6 +303,8 @@ + } + } + } ++ */ ++ notifyUpdates(); + } + decreaseRunning(); + } diff -Nru kpackagekit-0.5.4/debian/patches/series kpackagekit-0.6.0/debian/patches/series --- kpackagekit-0.5.4/debian/patches/series 2010-04-04 02:55:02.000000000 +0100 +++ kpackagekit-0.6.0/debian/patches/series 2010-06-18 11:56:16.000000000 +0100 @@ -1,3 +1,4 @@ kubuntu_01_edit_sources.patch kubuntu_04_tray_icon.patch kubuntu_05_hide_rollback_button.diff +kubuntu_06_no_automatic_updates.diff diff -Nru kpackagekit-0.5.4/Desktop/kpackagekitd.desktop kpackagekit-0.6.0/Desktop/kpackagekitd.desktop --- kpackagekit-0.5.4/Desktop/kpackagekitd.desktop 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/Desktop/kpackagekitd.desktop 2010-03-19 21:14:59.000000000 +0000 @@ -8,15 +8,18 @@ Name=KPackageKit Service Name[bg]=Услуга KPackageKit Name[ca]=Servei del KPackageKit +Name[ca@valencia]=Servei del KPackageKit Name[cs]=Služba KPackageKit Name[da]=KPackageKit-tjeneste Name[el]=Υπηρεσία KPackageKit Name[en_GB]=KPackageKit Service Name[es]=Servicio KPackageKit Name[et]=KPackageKiti teenus +Name[fi]=KPackageKit-palvelu Name[fr]=Service KPackageKit Name[ga]=Seirbhís KPackageKit Name[gl]=Servizo KPackageKit +Name[hu]=KPackageKit szolgáltatás Name[km]=សេវា KPackageKit Name[nds]=KPackageKit-Deenst Name[nn]=KPackageKit-teneste @@ -32,6 +35,7 @@ Comment=Tracks and Notify about Software Updates Comment[ca]=Segueix i comunica les actualitzacions de programari +Comment[ca@valencia]=Segueix i comunica les actualitzacions de programari Comment[cs]=Sledovat a oznamovat aktualizace softwaru Comment[da]=Overvåger og bekendtgør om softwareopdateringer Comment[el]=Καταγραφή και ειδοποίηση σχετικά με ενημερώσεις λογισμικού @@ -40,6 +44,7 @@ Comment[et]=Tarkvarauuenduste jälgimine ja neist teadaandmine Comment[fr]=Surveille et informe sur les mises à jour logicielles Comment[gl]=Vixía e notifica a existencia de actualizacións de software +Comment[hu]=Nyomok és értesítés a szoftver frissítésekről Comment[km]=តាមដាន និង​ជូនដំណឹង​អំពី​ភាព​ទាន់សម័យ​របស់​កម្មវិធី Comment[nds]=Op Software-Opfrischen luern un Bescheed geven Comment[nn]=Sporar og varslar programvareoppdateringar diff -Nru kpackagekit-0.5.4/Desktop/kpackagekit.desktop kpackagekit-0.6.0/Desktop/kpackagekit.desktop --- kpackagekit-0.5.4/Desktop/kpackagekit.desktop 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/Desktop/kpackagekit.desktop 2010-03-19 21:14:59.000000000 +0000 @@ -8,6 +8,7 @@ Name=KPackageKit Name[bg]=KPackageKit Name[ca]=KPackageKit +Name[ca@valencia]=KPackageKit Name[cs]=KPackageKit Name[da]=KPackageKit Name[de]=KPackageKit @@ -15,9 +16,11 @@ Name[en_GB]=KPackageKit Name[es]=KPackageKit Name[et]=KPackageKit +Name[fi]=KPackageKit Name[fr]=KPackageKit Name[ga]=KPackageKit Name[gl]=KPackageKit +Name[hu]=KPackageKit Name[km]=KPackageKit Name[nds]=KPackageKit Name[nl]=KPackageKit @@ -34,6 +37,7 @@ GenericName=Software Management GenericName[bg]=Управление на софтуер GenericName[ca]=Gestor de programari +GenericName[ca@valencia]=Gestor de programari GenericName[cs]=Správa softwaru GenericName[da]=Håndtering af software GenericName[de]=Softwareverwaltung @@ -41,8 +45,10 @@ GenericName[en_GB]=Software Management GenericName[es]=Gestión de software GenericName[et]=Tarkvarahaldur +GenericName[fi]=Ohjelmistonhallinta GenericName[fr]=Gestion des logiciels GenericName[gl]=Xestión de software +GenericName[hu]=Szoftver Menedzsment GenericName[km]=ការ​គ្រប់គ្រង​កម្មវិធី GenericName[nds]=Programmpleeg GenericName[nl]=Softwarebeheer @@ -59,14 +65,17 @@ Comment=PackageKit interface for KDE Comment[bg]=Интерфейс на PackageKit за KDE Comment[ca]=Interfície del PackageKit per al KDE +Comment[ca@valencia]=Interfície del PackageKit per al KDE Comment[cs]=PackageKit rozhraní pro KDE Comment[da]=PackageKit-brugerflade til KDE Comment[el]=Διασύνδεση PackageKit για το KDE Comment[en_GB]=PackageKit interface for KDE Comment[es]=Interfaz de PackageKit para KDE Comment[et]=PackageKiti KDE liides +Comment[fi]=KDE:n PackageKit-liittymä Comment[fr]=Interface PackageKit pour KDE Comment[gl]=Interface de PackageKit para KDE +Comment[hu]=PackageKit interfész a KDE-re Comment[km]=ចំណុច​ប្រទាក់ PackageKit សម្រាប់ KDE Comment[nds]=KPackageKit-Koppelsteed för KDE Comment[nl]=KDE-interface voor PackageKit diff -Nru kpackagekit-0.5.4/Desktop/kpk_addrm.desktop kpackagekit-0.6.0/Desktop/kpk_addrm.desktop --- kpackagekit-0.5.4/Desktop/kpk_addrm.desktop 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/Desktop/kpk_addrm.desktop 2010-03-19 21:14:59.000000000 +0000 @@ -13,6 +13,7 @@ Name=Software Management Name[bg]=Управление на софтуер Name[ca]=Gestor de programari +Name[ca@valencia]=Gestor de programari Name[cs]=Správa softwaru Name[da]=Håndtering af software Name[de]=Softwareverwaltung @@ -20,8 +21,10 @@ Name[en_GB]=Software Management Name[es]=Gestión de software Name[et]=Tarkvarahaldur +Name[fi]=Ohjelmistonhallinta Name[fr]=Gestion des logiciels Name[gl]=Xestión do software +Name[hu]=Szoftver Menedzsment Name[km]=ការ​គ្រប់គ្រង​កម្មវិធី Name[nds]=Programmpleeg Name[nl]=Softwarebeheer @@ -39,6 +42,7 @@ Comment=Add and Remove Software Comment[bg]=Добавяне и премахване на програми Comment[ca]=Afegeix i elimina programes +Comment[ca@valencia]=Afig i elimina programes Comment[cs]=Přidat a odebrat software Comment[da]=Tilføj og fjern software Comment[de]=Hinzufügen und Entfernen von Software @@ -46,8 +50,10 @@ Comment[en_GB]=Add and Remove Software Comment[es]=Añade y elimina software Comment[et]=Tarkvara lisamine ja eemaldamine +Comment[fi]=Lisää tai poista ohjelmia Comment[fr]=Ajouter et supprimer des logiciels Comment[gl]=Engade e elimina software +Comment[hu]=Szoftver hozzáadása és eltávolítása Comment[km]=បន្ថែម និង​យក​កម្មវិធី​ចេញ Comment[nds]=Software tofögen un wegmaken Comment[nn]=Legg til / fjern programvare diff -Nru kpackagekit-0.5.4/Desktop/kpk_settings.desktop kpackagekit-0.6.0/Desktop/kpk_settings.desktop --- kpackagekit-0.5.4/Desktop/kpk_settings.desktop 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/Desktop/kpk_settings.desktop 2010-03-19 21:14:59.000000000 +0000 @@ -13,6 +13,7 @@ Name=Settings Name[bg]=Настройки Name[ca]=Arranjaments +Name[ca@valencia]=Arranjaments Name[cs]=Nastavení Name[da]=Indstillinger Name[de]=Einstellungen @@ -21,9 +22,11 @@ Name[eo]=Agordo Name[es]=Preferencias Name[et]=Seadistused +Name[fi]=Asetukset Name[fr]=Configuration Name[ga]=Socruithe Name[gl]=Configuración +Name[hu]=Beállítások Name[km]=ការ​កំណត់ Name[nds]=Instellen Name[nl]=Instellingen @@ -41,6 +44,7 @@ Comment=KPackageKit Settings Comment[bg]=Настройки на KPackageKit Comment[ca]=Arranjaments del KpackageKit +Comment[ca@valencia]=Arranjaments del KpackageKit Comment[cs]=Nastavení KPackageKit Comment[da]=Indstillinger for KPackageKit Comment[de]=Einstellungen von KPackageKit @@ -48,9 +52,11 @@ Comment[en_GB]=KPackageKit Settings Comment[es]=Preferencias de KPackageKit Comment[et]=KPackageKiti seadistused +Comment[fi]=KPackageKitin asetukset Comment[fr]=Configuration de KPackageKit Comment[ga]=Socruithe KPackageKit Comment[gl]=Configuración de KPackageKit +Comment[hu]=KPackageKit Beállítások Comment[km]=ការ​កំណត់ KPackageKit Comment[nds]=KPackageKit instellen Comment[nn]=Innstillingar for KPackageKit diff -Nru kpackagekit-0.5.4/Desktop/kpk_update.desktop kpackagekit-0.6.0/Desktop/kpk_update.desktop --- kpackagekit-0.5.4/Desktop/kpk_update.desktop 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/Desktop/kpk_update.desktop 2010-03-19 21:14:59.000000000 +0000 @@ -13,6 +13,7 @@ Name=Software Updates Name[bg]=Софтуерни обновления Name[ca]=Actualitzacions del programari +Name[ca@valencia]=Actualitzacions del programari Name[cs]=Aktualizace softwaru Name[da]=Softwareopdateringer Name[de]=Software-Aktualisierung @@ -20,8 +21,10 @@ Name[en_GB]=Software Updates Name[es]=Actualizaciones de software Name[et]=Tarkvarauuendused +Name[fi]=Ohjelmapäivitykset Name[fr]=Mises à jour logicielles Name[gl]=Actualizacións de software +Name[hu]=Szoftver frissítések Name[km]=ភាព​​ទាន់សម័យ​របស់​កម្មវិធី Name[nds]=Software-Opfrischen Name[nl]=Software-opwaarderingen @@ -39,14 +42,17 @@ Comment=Check and Install Updates Comment[bg]=Проверка и инсталиране на обновления Comment[ca]=Comprova i instal·la actualitzacions +Comment[ca@valencia]=Comprova i instal·la actualitzacions Comment[cs]=Projít a nainstalovat aktualizace Comment[da]=Tjek efter og installér opdateringer Comment[el]=Έλεγχος και εγκατάσταση ενημερώσεων Comment[en_GB]=Check and Install Updates Comment[es]=Buscar e instalar actualizaciones Comment[et]=Uuenduste kontroll ja paigaldamine +Comment[fi]=Tarkkaile ja asenna päivityksiä Comment[fr]=Vérifier et installer les mises à jour Comment[gl]=Vixía e instala actualizacións +Comment[hu]=Frissítések ellenőrzése és telepítése Comment[km]=ពិនិត្យ​មើល និង​ដំឡើង​ភាព​ទាន់សម័យ Comment[nds]=Na Opfrischen kieken un se installeren Comment[nn]=Sjå etter og installer oppdateringar diff -Nru kpackagekit-0.5.4/Desktop/settings-add-and-remove-software.desktop kpackagekit-0.6.0/Desktop/settings-add-and-remove-software.desktop --- kpackagekit-0.5.4/Desktop/settings-add-and-remove-software.desktop 2009-11-17 12:32:15.000000000 +0000 +++ kpackagekit-0.6.0/Desktop/settings-add-and-remove-software.desktop 2010-03-19 21:14:59.000000000 +0000 @@ -9,6 +9,7 @@ Name=Add and Remove Software Name[bg]=Добавяне и премахване на програми Name[ca]=Afegeix i elimina programes +Name[ca@valencia]=Afig i elimina programes Name[cs]=Přidat a odebrat software Name[da]=Tilføj og fjern software Name[de]=Hinzufügen und Entfernen von Software @@ -16,8 +17,10 @@ Name[en_GB]=Add and Remove Software Name[es]=Añadir y eliminar software Name[et]=Tarkvara lisamine ja eemaldamine +Name[fi]=Lisää tai poista ohjelmia Name[fr]=Ajouter et supprimer des logiciels Name[gl]=Engadir e eliminar software +Name[hu]=Szoftver hozzáadása és eltávolítása Name[km]=បន្ថែម និងយក​កម្មវិធី​ចេញ Name[nds]=Software tofögen un wegmaken Name[nn]=Legg til / fjern programvare Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi22-action-package-wait.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi22-action-package-wait.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-distro-upgrade.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-distro-upgrade.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-kpk-clean-up.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-kpk-clean-up.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-kpk-important.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-kpk-important.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-kpk-package-add.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-kpk-package-add.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-kpk-refresh-cache.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-kpk-refresh-cache.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-download.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-download.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-info.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-info.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-orign.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-orign.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-rollback.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-rollback.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-search.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-search.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-setup.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-setup.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-update.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-update.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-action-package-wait.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-action-package-wait.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-categories-kpk-desktop-gnome.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-categories-kpk-desktop-gnome.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi48-categories-kpk-desktop-xfce.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi48-categories-kpk-desktop-xfce.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi64-action-package-installed.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi64-action-package-installed.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi64-action-package.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi64-action-package.png differ Binary files /tmp/h8hH7FI9fL/kpackagekit-0.5.4/KPackageKit/Icons/hi64-action-package-removed.png and /tmp/LHIfIu7DfR/kpackagekit-0.6.0/KPackageKit/Icons/hi64-action-package-removed.png differ diff -Nru kpackagekit-0.5.4/KPackageKit/KPackageKit.cpp kpackagekit-0.6.0/KPackageKit/KPackageKit.cpp --- kpackagekit-0.5.4/KPackageKit/KPackageKit.cpp 2010-01-12 12:52:00.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKit/KPackageKit.cpp 2010-03-19 21:15:09.000000000 +0000 @@ -20,6 +20,9 @@ #include "KPackageKit.h" +#include "KpkBackendDetails.h" +#include "KpkMainUi.h" + #include #include #include @@ -27,14 +30,11 @@ #include #include #include +#include #include #include #include -#include - -#include "KpkBackendDetails.h" - -using namespace kpackagekit; +#include KPackageKit::KPackageKit() : KUniqueApplication(), @@ -86,7 +86,7 @@ // what will happen if we call the other process to // install and this very one closes? will the files // in /tmp be deleted? - invoke("InstallPackageFiles" , urls); + invoke("InstallPackageFiles", urls); notSet = false; } @@ -102,22 +102,22 @@ } if (args->isSet("install-mime-type")) { - invoke("InstallMimeTypes" , args->getOptionList("install-mime-type")); + invoke("InstallMimeTypes", args->getOptionList("install-mime-type")); notSet = false; } if (args->isSet("install-package-name")) { - invoke("InstallPackageNames" , args->getOptionList("install-package-name")); + invoke("InstallPackageNames", args->getOptionList("install-package-name")); notSet = false; } if (args->isSet("install-provide-file")) { - invoke("InstallProvideFiles" , args->getOptionList("install-provide-file")); + invoke("InstallProvideFiles", args->getOptionList("install-provide-file")); notSet = false; } if (args->isSet("remove-package-by-file")) { - invoke("RemovePackageByFiles" , args->getOptionList("remove-package-by-file")); + invoke("RemovePackageByFiles", args->getOptionList("remove-package-by-file")); notSet = false; } @@ -148,7 +148,7 @@ // Show all m_pkUi->showAll(); m_pkUi->show(); - m_pkUi->activateWindow(); + KWindowSystem::forceActiveWindow(m_pkUi->winId()); } void KPackageKit::showUpdates() @@ -159,7 +159,7 @@ } m_pkUi->showUpdates(); m_pkUi->show(); - m_pkUi->activateWindow(); + KWindowSystem::forceActiveWindow(m_pkUi->winId()); } void KPackageKit::showSettings() @@ -170,7 +170,7 @@ } m_pkUi->showSettings(); m_pkUi->show(); - m_pkUi->activateWindow(); + KWindowSystem::forceActiveWindow(m_pkUi->winId()); } void KPackageKit::invoke(const QString &method_name, const QStringList &args) diff -Nru kpackagekit-0.5.4/KPackageKit/KPackageKit.h kpackagekit-0.6.0/KPackageKit/KPackageKit.h --- kpackagekit-0.5.4/KPackageKit/KPackageKit.h 2010-01-12 12:52:06.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKit/KPackageKit.h 2010-03-19 21:15:09.000000000 +0000 @@ -22,10 +22,8 @@ #define KPACKAGEKIT_H #include -#include "KpkMainUi.h" - -namespace kpackagekit { +class KpkMainUi; class KPackageKit : public KUniqueApplication { Q_OBJECT @@ -52,6 +50,5 @@ bool m_init; }; -} #endif diff -Nru kpackagekit-0.5.4/KPackageKit/KpkBackendDetails.cpp kpackagekit-0.6.0/KPackageKit/KpkBackendDetails.cpp --- kpackagekit-0.5.4/KPackageKit/KpkBackendDetails.cpp 2009-12-07 18:31:43.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKit/KpkBackendDetails.cpp 2010-03-19 21:15:09.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -28,7 +28,7 @@ { setupUi(mainWidget()); setButtons(KDialog::Close); - setWindowIcon(KIcon::KIcon("help-about")); + setWindowIcon(KIcon("help-about")); // GENERAL - Setup backend name and author nameL->setText(Client::instance()->backendName()); @@ -36,49 +36,49 @@ authorL->setText(Client::instance()->backendAuthor()); // METHODS - Setup backend supported methods - Client::Actions actions = Client::instance()->actions(); - getUpdatesCB->setChecked(actions & Client::ActionGetUpdates); - refreshCacheCB->setChecked(actions & Client::ActionRefreshCache); - updateSystemCB->setChecked(actions & Client::ActionUpdateSystem); - searchNameCB->setChecked(actions & Client::ActionSearchName); - searchDetailsCB->setChecked(actions & Client::ActionSearchDetails); - searchGroupCB->setChecked(actions & Client::ActionSearchGroup); - searchFileCB->setChecked(actions & Client::ActionSearchFile); - cancelCB->setChecked(actions & Client::ActionCancel); - resolveCB->setChecked(actions & Client::ActionResolve); - - updatePackageCB->setChecked(actions & Client::ActionUpdatePackages); - installPackageCB->setChecked(actions & Client::ActionInstallPackages); - removePackageCB->setChecked(actions & Client::ActionRemovePackages); - getDependsCB->setChecked(actions & Client::ActionGetDepends); - getRequiresCB->setChecked(actions & Client::ActionGetRequires); - getUpdateDetailCB->setChecked(actions & Client::ActionGetUpdateDetail); - getDescriptionCB->setChecked(actions & Client::ActionGetDetails); - getFilesCB->setChecked(actions & Client::ActionRefreshCache); - installFileCB->setChecked(actions & Client::ActionInstallFiles); - - getRepositoryListCB->setChecked(actions & Client::ActionGetRepoList); - repositoryEnableCB->setChecked(actions & Client::ActionRepoEnable); - repositorySetEnableCB->setChecked(actions & Client::ActionRepoSetData); - whatProvidesCB->setChecked(actions & Client::ActionWhatProvides); - getPackagesCB->setChecked(actions & Client::ActionGetPackages); - simulateInstallFilesCB->setChecked(actions & Client::ActionSimulateInstallFiles); - simulateInstallPackagesCB->setChecked(actions & Client::ActionSimulateInstallPackages); - simulateRemovePackagesCB->setChecked(actions & Client::ActionSimulateRemovePackages); - simulateUpdatePackagesCB->setChecked(actions & Client::ActionSimulateUpdatePackages); + Enum::Roles actions = Client::instance()->actions(); + getUpdatesCB->setChecked(actions & Enum::RoleGetUpdates); + refreshCacheCB->setChecked(actions & Enum::RoleRefreshCache); + updateSystemCB->setChecked(actions & Enum::RoleUpdateSystem); + searchNameCB->setChecked(actions & Enum::RoleSearchName); + searchDetailsCB->setChecked(actions & Enum::RoleSearchDetails); + searchGroupCB->setChecked(actions & Enum::RoleSearchGroup); + searchFileCB->setChecked(actions & Enum::RoleSearchFile); + cancelCB->setChecked(actions & Enum::RoleCancel); + resolveCB->setChecked(actions & Enum::RoleResolve); + + updatePackageCB->setChecked(actions & Enum::RoleUpdatePackages); + installPackageCB->setChecked(actions & Enum::RoleInstallPackages); + removePackageCB->setChecked(actions & Enum::RoleRemovePackages); + getDependsCB->setChecked(actions & Enum::RoleGetDepends); + getRequiresCB->setChecked(actions & Enum::RoleGetRequires); + getUpdateDetailCB->setChecked(actions & Enum::RoleGetUpdateDetail); + getDescriptionCB->setChecked(actions & Enum::RoleGetDetails); + getFilesCB->setChecked(actions & Enum::RoleRefreshCache); + installFileCB->setChecked(actions & Enum::RoleInstallFiles); + + getRepositoryListCB->setChecked(actions & Enum::RoleGetRepoList); + repositoryEnableCB->setChecked(actions & Enum::RoleRepoEnable); + repositorySetEnableCB->setChecked(actions & Enum::RoleRepoSetData); + whatProvidesCB->setChecked(actions & Enum::RoleWhatProvides); + getPackagesCB->setChecked(actions & Enum::RoleGetPackages); + simulateInstallFilesCB->setChecked(actions & Enum::RoleSimulateInstallFiles); + simulateInstallPackagesCB->setChecked(actions & Enum::RoleSimulateInstallPackages); + simulateRemovePackagesCB->setChecked(actions & Enum::RoleSimulateRemovePackages); + simulateUpdatePackagesCB->setChecked(actions & Enum::RoleSimulateUpdatePackages); // FILTERS - Setup filters - Client::Filters filters = Client::instance()->filters(); - installedCB->setChecked(filters & Client::FilterInstalled); - guiCB->setChecked(filters & Client::FilterGui); + Enum::Filters filters = Client::instance()->filters(); + installedCB->setChecked(filters & Enum::FilterInstalled); + guiCB->setChecked(filters & Enum::FilterGui); - developmentCB->setChecked(filters & Client::FilterDevelopment); - freeCB->setChecked(filters & Client::FilterFree); + developmentCB->setChecked(filters & Enum::FilterDevelopment); + freeCB->setChecked(filters & Enum::FilterFree); - visibleCB->setChecked(filters & Client::FilterVisible); - supportedCB->setChecked(filters & Client::FilterSupported); + visibleCB->setChecked(filters & Enum::FilterVisible); + supportedCB->setChecked(filters & Enum::FilterSupported); - newestCB->setChecked(filters & Client::FilterNewest); + newestCB->setChecked(filters & Enum::FilterNewest); } #include "KpkBackendDetails.moc" diff -Nru kpackagekit-0.5.4/KPackageKit/KpkMainUi.cpp kpackagekit-0.6.0/KPackageKit/KpkMainUi.cpp --- kpackagekit-0.5.4/KPackageKit/KpkMainUi.cpp 2009-11-17 12:34:00.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKit/KpkMainUi.cpp 2010-03-19 21:15:09.000000000 +0000 @@ -59,7 +59,7 @@ showSettings(); showUpdates(); if (!m_addrmPWI) { - m_addrmPWI = addModule(KCModuleInfo::KCModuleInfo("kpk_addrm.desktop")); + m_addrmPWI = addModule(KCModuleInfo("kpk_addrm.desktop")); } setCurrentPage(m_addrmPWI); } @@ -67,7 +67,7 @@ void KpkMainUi::showUpdates() { if (!m_updatePWI) { - m_updatePWI = addModule(KCModuleInfo::KCModuleInfo("kpk_update.desktop")); + m_updatePWI = addModule(KCModuleInfo("kpk_update.desktop")); } setCurrentPage(m_updatePWI); } @@ -75,7 +75,7 @@ void KpkMainUi::showSettings() { if (!m_settingsPWI) { - m_settingsPWI = addModule(KCModuleInfo::KCModuleInfo("kpk_settings.desktop")); + m_settingsPWI = addModule(KCModuleInfo("kpk_settings.desktop")); } setCurrentPage(m_settingsPWI); } diff -Nru kpackagekit-0.5.4/KPackageKit/main.cpp kpackagekit-0.6.0/KPackageKit/main.cpp --- kpackagekit-0.5.4/KPackageKit/main.cpp 2009-11-17 12:34:00.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKit/main.cpp 2010-03-19 21:15:09.000000000 +0000 @@ -53,15 +53,15 @@ options.add("+[package]", ki18n("Package file to install")); KCmdLineArgs::addCmdLineOptions(options); - kpackagekit::KPackageKit::addCmdLineOptions(); + KPackageKit::addCmdLineOptions(); - if (!kpackagekit::KPackageKit::start()) + if (!KPackageKit::start()) { qDebug() << "KPackageKit is already running!"; return 0; } - kpackagekit::KPackageKit app; + KPackageKit app; return app.exec(); } diff -Nru kpackagekit-0.5.4/KPackageKitD/kpackagekitd.cpp kpackagekit-0.6.0/KPackageKitD/kpackagekitd.cpp --- kpackagekit-0.5.4/KPackageKitD/kpackagekitd.cpp 2010-01-12 12:47:50.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKitD/kpackagekitd.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -19,24 +19,19 @@ ***************************************************************************/ #include "kpackagekitd.h" -#include "../libkpackagekit/KpkEnum.h" +#include #include #include #include #include -#include -#include #include #include -// reply = QDBusConnection::systemBus().call(message); -// QStringList #include -#include -#include -#include +#include +#include #define FIVE_MIN 360000 @@ -44,7 +39,8 @@ K_EXPORT_PLUGIN(KPackageKitFactory("kpackagekitd")) KPackageKitD::KPackageKitD(QObject *parent, const QList &) - : KDEDModule(parent) + : KDEDModule(parent), + m_actRefreshCacheChecked(false) { m_qtimer = new QTimer(this); connect(m_qtimer, SIGNAL(timeout()), this, SLOT(init())); @@ -60,6 +56,15 @@ // Start after 5 minutes, 360000 msec // To keep the startup fast.. m_qtimer->start(FIVE_MIN); + + //check if any changes to the file occour + //this also prevents from reading when a checkUpdate happens + KDirWatch *confWatch = new KDirWatch(this); + confWatch->addFile(KStandardDirs::locateLocal("config", "KPackageKit")); + connect(confWatch, SIGNAL( dirty(const QString &)), this, SLOT(read())); + connect(confWatch, SIGNAL(created(const QString &)), this, SLOT(read())); + connect(confWatch, SIGNAL(deleted(const QString &)), this, SLOT(read())); + confWatch->startScan(); } KPackageKitD::~KPackageKitD() @@ -72,16 +77,6 @@ m_qtimer->disconnect(); connect(m_qtimer, SIGNAL(timeout()), this, SLOT(read())); - QDBusMessage message; - message = QDBusMessage::createMethodCall("org.freedesktop.PackageKit", - "/org/freedesktop/PackageKit", - "org.freedesktop.DBus.Properties", - QLatin1String("Get")); - message << QLatin1String("org.freedesktop.PackageKit"); - message << QLatin1String("Roles"); - QDBusReply reply = QDBusConnection::systemBus().call(message); - bool canRefreshCache = reply.value().variant().toString().split(';').contains("refresh-cache"); - // check to see when the next check update will happen // if more that 15 minutes, call show updates KConfig config("KPackageKit"); @@ -89,7 +84,7 @@ // default to one day, 86400 sec uint interval = checkUpdateGroup.readEntry("interval", KpkEnum::TimeIntervalDefault); - if (!canRefreshCache) { + if (!canRefreshCache()) { //if the backend does not suport refreshing cache let's don't do nothing return; } else if ((getTimeSinceRefreshCache() - interval > 1160) && interval != 0 ) { @@ -100,21 +95,12 @@ } read(); - - //check if any changes to the file occour - //this also prevents from reading when a checkUpdate happens - KDirWatch *confWatch = new KDirWatch(this); - confWatch->addFile(KStandardDirs::locateLocal("config", "KPackageKit")); - connect(confWatch, SIGNAL( dirty(const QString &)), this, SLOT(read())); - connect(confWatch, SIGNAL(created(const QString &)), this, SLOT(read())); - connect(confWatch, SIGNAL(deleted(const QString &)), this, SLOT(read())); - confWatch->startScan(); } void KPackageKitD::read() { KConfig config("KPackageKit"); - KConfigGroup checkUpdateGroup( &config, "CheckUpdate" ); + KConfigGroup checkUpdateGroup(&config, "CheckUpdate"); // default to one day, 86400 sec int interval = checkUpdateGroup.readEntry("interval", KpkEnum::TimeIntervalDefault); int actRefreshCache = getTimeSinceRefreshCache(); @@ -201,3 +187,19 @@ QDBusReply reply = QDBusConnection::systemBus().call(message); return reply.value(); } + +bool KPackageKitD::canRefreshCache() +{ + if (m_actRefreshCacheChecked) { + return m_canRefreshCache; + } + QDBusMessage message; + message = QDBusMessage::createMethodCall("org.freedesktop.PackageKit", + "/org/freedesktop/PackageKit", + "org.freedesktop.DBus.Properties", + QLatin1String("Get")); + message << QLatin1String("org.freedesktop.PackageKit"); + message << QLatin1String("Roles"); + QDBusReply reply = QDBusConnection::systemBus().call(message); + return m_canRefreshCache = reply.value().variant().toString().split(';').contains("refresh-cache"); +} diff -Nru kpackagekit-0.5.4/KPackageKitD/kpackagekitd.h kpackagekit-0.6.0/KPackageKitD/kpackagekitd.h --- kpackagekit-0.5.4/KPackageKitD/kpackagekitd.h 2010-01-12 12:48:01.000000000 +0000 +++ kpackagekit-0.6.0/KPackageKitD/kpackagekitd.h 2010-03-19 21:14:58.000000000 +0000 @@ -44,7 +44,10 @@ void refreshAndUpdate(); bool systemIsReady(); uint getTimeSinceRefreshCache() const; + bool canRefreshCache(); + bool m_actRefreshCacheChecked; + bool m_canRefreshCache; QTimer *m_qtimer; }; diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkDelegate.cpp kpackagekit-0.6.0/libkpackagekit/KpkDelegate.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkDelegate.cpp 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkDelegate.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -90,14 +90,14 @@ bool leftToRight = (painter->layoutDirection() == Qt::LeftToRight); //grab the package from the index pointer - Package *pkg = static_cast(index.internalPointer()); + PackageKit::Package *pkg = static_cast(index.internalPointer()); // selects the mode to paint the icon based on the info field QIcon::Mode iconMode; if (index.data(KpkPackageModel::CheckedRole).toInt() == Qt::Checked) { iconMode = QIcon::Selected; } else { - iconMode = QIcon::Normal; + iconMode = QIcon::Active; } QColor foregroundColor = (option.state.testFlag(QStyle::State_Selected))? @@ -166,13 +166,13 @@ // can try to get a better icon if (pkg) { if (pkg->iconPath().isEmpty()) { - if (pkg->state() == Package::StateInstalled) { + if (pkg->info() == Enum::InfoInstalled) { icon = m_pkgRemove; } else { icon = m_pkgDownload; } } else { - if (pkg->state() == Package::StateInstalled) { + if (pkg->info() == Enum::InfoInstalled) { icon = KpkIcons::getIcon(pkg->iconPath(), "package-installed"); } else { icon = KpkIcons::getIcon(pkg->iconPath(), "kpk-refresh-cache"); @@ -225,12 +225,6 @@ // Emblems icons p.setCompositionMode(QPainter::CompositionMode_SourceOver); - int emblemLeft = leftToRight ? (left + width - EMBLEM_ICON_SIZE) : left; - if (leftToRight) { - emblemLeft -= UNIVERSAL_PADDING + EMBLEM_ICON_SIZE; - } else { - emblemLeft += UNIVERSAL_PADDING + EMBLEM_ICON_SIZE; - } p.end(); painter->drawPixmap(option.rect.topLeft(), pixmap); diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkIcons.cpp kpackagekit-0.6.0/libkpackagekit/KpkIcons.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkIcons.cpp 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkIcons.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,7 +1,7 @@ /*************************************************************************** * Copyright (C) 2008 by Trever Fischer * * wm161@wm161.net * - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -61,203 +61,207 @@ return KpkIcons::cache[name]; } -KIcon KpkIcons::statusIcon(PackageKit::Transaction::Status status) +KIcon KpkIcons::statusIcon(Enum::Status status) { switch (status) { - case Transaction::UnknownStatus : return KpkIcons::getIcon("help-browser"); - case Transaction::StatusCancel : - case Transaction::StatusCleanup : return KpkIcons::getIcon("kpk-clean-up"); - case Transaction::StatusCommit : return KpkIcons::getIcon("package-setup");//TODO needs a better icon - case Transaction::StatusDepResolve : return KpkIcons::getIcon("package-info"); - case Transaction::StatusDownloadChangelog : - case Transaction::StatusDownloadFilelist : - case Transaction::StatusDownloadGroup : - case Transaction::StatusDownloadPackagelist : return KpkIcons::getIcon("kpk-refresh-cache"); - case Transaction::StatusDownload : return KpkIcons::getIcon("package-download"); - case Transaction::StatusDownloadRepository : - case Transaction::StatusDownloadUpdateinfo : return KpkIcons::getIcon("kpk-refresh-cache"); - case Transaction::StatusFinished : return KpkIcons::getIcon("kpk-clean-up"); - case Transaction::StatusGeneratePackageList : return KpkIcons::getIcon("kpk-refresh-cache"); - case Transaction::StatusWaitingForLock : return KpkIcons::getIcon("dialog-password"); - case Transaction::StatusWaitingForAuth : return KpkIcons::getIcon("dialog-password");//IMPROVE ME - case Transaction::StatusInfo : return KpkIcons::getIcon("package-info"); - case Transaction::StatusInstall : return KpkIcons::getIcon("kpk-package-add"); - case Transaction::StatusLoadingCache : return KpkIcons::getIcon("kpk-refresh-cache"); - case Transaction::StatusObsolete : return KpkIcons::getIcon("kpk-clean-up"); - case Transaction::StatusQuery : return KpkIcons::getIcon("package-search"); - case Transaction::StatusRefreshCache : return KpkIcons::getIcon("kpk-refresh-cache"); - case Transaction::StatusRemove : return KpkIcons::getIcon("package-removed"); - case Transaction::StatusRepackaging : return KpkIcons::getIcon("kpk-clean-up"); - case Transaction::StatusRequest : return KpkIcons::getIcon("package-search"); - case Transaction::StatusRollback : return KpkIcons::getIcon("package-rollback"); - case Transaction::StatusRunning : return KpkIcons::getIcon("package-setup"); - case Transaction::StatusScanApplications : return KpkIcons::getIcon("package-search"); - case Transaction::StatusSetup : return KpkIcons::getIcon("package-setup"); - case Transaction::StatusSigCheck : - case Transaction::StatusTestCommit : return KpkIcons::getIcon("package-info");//TODO needs a better icon - case Transaction::StatusUpdate : return KpkIcons::getIcon("package-update"); - case Transaction::StatusWait : return KpkIcons::getIcon("package-wait"); - case Transaction::StatusScanProcessList : return KpkIcons::getIcon("package-info"); - case Transaction::StatusCheckExecutableFiles : return KpkIcons::getIcon("package-info"); - case Transaction::StatusCheckLibraries : return KpkIcons::getIcon("package-info"); - case Transaction::StatusCopyFiles : return KpkIcons::getIcon("package-info"); + case Enum::LastStatus : + case Enum::UnknownStatus : return KpkIcons::getIcon("help-browser"); + case Enum::StatusCancel : + case Enum::StatusCleanup : return KpkIcons::getIcon("kpk-clean-up"); + case Enum::StatusCommit : return KpkIcons::getIcon("package-setup");//TODO needs a better icon + case Enum::StatusDepResolve : return KpkIcons::getIcon("package-info"); + case Enum::StatusDownloadChangelog : + case Enum::StatusDownloadFilelist : + case Enum::StatusDownloadGroup : + case Enum::StatusDownloadPackagelist : return KpkIcons::getIcon("kpk-refresh-cache"); + case Enum::StatusDownload : return KpkIcons::getIcon("package-download"); + case Enum::StatusDownloadRepository : + case Enum::StatusDownloadUpdateinfo : return KpkIcons::getIcon("kpk-refresh-cache"); + case Enum::StatusFinished : return KpkIcons::getIcon("kpk-clean-up"); + case Enum::StatusGeneratePackageList : return KpkIcons::getIcon("kpk-refresh-cache"); + case Enum::StatusWaitingForLock : return KpkIcons::getIcon("dialog-password"); + case Enum::StatusWaitingForAuth : return KpkIcons::getIcon("dialog-password");//IMPROVE ME + case Enum::StatusInfo : return KpkIcons::getIcon("package-info"); + case Enum::StatusInstall : return KpkIcons::getIcon("kpk-package-add"); + case Enum::StatusLoadingCache : return KpkIcons::getIcon("kpk-refresh-cache"); + case Enum::StatusObsolete : return KpkIcons::getIcon("kpk-clean-up"); + case Enum::StatusQuery : return KpkIcons::getIcon("package-search"); + case Enum::StatusRefreshCache : return KpkIcons::getIcon("kpk-refresh-cache"); + case Enum::StatusRemove : return KpkIcons::getIcon("package-removed"); + case Enum::StatusRepackaging : return KpkIcons::getIcon("kpk-clean-up"); + case Enum::StatusRequest : return KpkIcons::getIcon("package-search"); + case Enum::StatusRollback : return KpkIcons::getIcon("package-rollback"); + case Enum::StatusRunning : return KpkIcons::getIcon("package-setup"); + case Enum::StatusScanApplications : return KpkIcons::getIcon("package-search"); + case Enum::StatusSetup : return KpkIcons::getIcon("package-setup"); + case Enum::StatusSigCheck : + case Enum::StatusTestCommit : return KpkIcons::getIcon("package-info");//TODO needs a better icon + case Enum::StatusUpdate : return KpkIcons::getIcon("package-update"); + case Enum::StatusWait : return KpkIcons::getIcon("package-wait"); + case Enum::StatusScanProcessList : return KpkIcons::getIcon("package-info"); + case Enum::StatusCheckExecutableFiles : return KpkIcons::getIcon("package-info"); + case Enum::StatusCheckLibraries : return KpkIcons::getIcon("package-info"); + case Enum::StatusCopyFiles : return KpkIcons::getIcon("package-info"); } kDebug() << "status icon unrecognised: " << status; return KpkIcons::getIcon("help-browser"); } -QString KpkIcons::statusAnimation(PackageKit::Transaction::Status status) +QString KpkIcons::statusAnimation(PackageKit::Enum::Status status) { switch (status) { - case Transaction::UnknownStatus : return "help-browser"; - case Transaction::StatusCancel : - case Transaction::StatusCleanup : return "pk-cleaning-up"; - case Transaction::StatusCommit : - case Transaction::StatusDepResolve : return "pk-testing"; - case Transaction::StatusDownloadChangelog : - case Transaction::StatusDownloadFilelist : - case Transaction::StatusDownloadGroup : - case Transaction::StatusDownloadPackagelist : return "pk-refresh-cache"; - case Transaction::StatusDownload : return "pk-downloading"; - case Transaction::StatusDownloadRepository : - case Transaction::StatusDownloadUpdateinfo : return "pk-refresh-cache"; - case Transaction::StatusFinished : return "pk-cleaning-up"; - case Transaction::StatusGeneratePackageList : return "pk-searching"; - case Transaction::StatusWaitingForLock : return "pk-waiting"; - case Transaction::StatusInfo : return "package-working"; - case Transaction::StatusInstall : return "pk-installing"; - case Transaction::StatusLoadingCache : return "pk-refresh-cache"; - case Transaction::StatusObsolete : return "pk-cleaning-up"; - case Transaction::StatusQuery : return "pk-searching"; - case Transaction::StatusRefreshCache : return "pk-refresh-cache"; - case Transaction::StatusRemove : return "package-removed";//TODO do the animation - case Transaction::StatusRepackaging : return "pk-searching"; - case Transaction::StatusRequest : return "process-working"; - case Transaction::StatusRollback : return "package-removed"; - case Transaction::StatusRunning : return "pk-testing"; - case Transaction::StatusScanApplications : return "pk-searching"; - case Transaction::StatusSetup : return "pk-searching"; - case Transaction::StatusSigCheck : return "package-info"; - case Transaction::StatusTestCommit : return "pk-testing"; - case Transaction::StatusUpdate : return "pk-installing"; - case Transaction::StatusWait : return "pk-waiting"; + case Enum::UnknownStatus : return "help-browser"; + case Enum::StatusCancel : + case Enum::StatusCleanup : return "pk-cleaning-up"; + case Enum::StatusCommit : + case Enum::StatusDepResolve : return "pk-testing"; + case Enum::StatusDownloadChangelog : + case Enum::StatusDownloadFilelist : + case Enum::StatusDownloadGroup : + case Enum::StatusDownloadPackagelist : return "pk-refresh-cache"; + case Enum::StatusDownload : return "pk-downloading"; + case Enum::StatusDownloadRepository : + case Enum::StatusDownloadUpdateinfo : return "pk-refresh-cache"; + case Enum::StatusFinished : return "pk-cleaning-up"; + case Enum::StatusGeneratePackageList : return "pk-searching"; + case Enum::StatusWaitingForLock : return "pk-waiting"; + case Enum::StatusInfo : return "package-working"; + case Enum::StatusInstall : return "pk-installing"; + case Enum::StatusLoadingCache : return "pk-refresh-cache"; + case Enum::StatusObsolete : return "pk-cleaning-up"; + case Enum::StatusQuery : return "pk-searching"; + case Enum::StatusRefreshCache : return "pk-refresh-cache"; + case Enum::StatusRemove : return "package-removed";//TODO do the animation + case Enum::StatusRepackaging : return "pk-searching"; + case Enum::StatusRequest : return "process-working"; + case Enum::StatusRollback : return "package-removed"; + case Enum::StatusRunning : return "pk-testing"; + case Enum::StatusScanApplications : return "pk-searching"; + case Enum::StatusSetup : return "pk-searching"; + case Enum::StatusSigCheck : return "package-info"; + case Enum::StatusTestCommit : return "pk-testing"; + case Enum::StatusUpdate : return "pk-installing"; + case Enum::StatusWait : return "pk-waiting"; default : kDebug() << "status icon unrecognised: " << status; return "help-browser"; } } -KIcon KpkIcons::actionIcon(Client::Action action) +KIcon KpkIcons::actionIcon(Enum::Role role) { - switch (action) { - case Client::UnknownAction : return KpkIcons::getIcon("applications-other"); - case Client::ActionAcceptEula : return KpkIcons::getIcon("package-info"); - case Client::ActionCancel : return KpkIcons::getIcon("process-stop"); - case Client::ActionDownloadPackages : return KpkIcons::getIcon("package-download"); - case Client::ActionGetCategories : return KpkIcons::getIcon("package-info"); - case Client::ActionGetDepends : return KpkIcons::getIcon("package-info"); - case Client::ActionGetDetails : return KpkIcons::getIcon("package-info"); - case Client::ActionGetDistroUpgrades : return KpkIcons::getIcon("distro-upgrade"); - case Client::ActionGetFiles : return KpkIcons::getIcon("package-search"); - case Client::ActionGetOldTransactions : return KpkIcons::getIcon("package-info"); - case Client::ActionGetPackages : return KpkIcons::getIcon("package-packages"); - case Client::ActionGetRepoList : return KpkIcons::getIcon("package-orign"); - case Client::ActionGetRequires : return KpkIcons::getIcon("package-info"); - case Client::ActionGetUpdateDetail : return KpkIcons::getIcon("package-info"); - case Client::ActionGetUpdates : return KpkIcons::getIcon("package-info"); - case Client::ActionInstallFiles : return KpkIcons::getIcon("package-installed"); - case Client::ActionInstallPackages : return KpkIcons::getIcon("package-installed"); - case Client::ActionInstallSignature : return KpkIcons::getIcon("package-installed"); - case Client::ActionRefreshCache : return KpkIcons::getIcon("kpk-refresh-cache"); - case Client::ActionRemovePackages : return KpkIcons::getIcon("package-removed"); - case Client::ActionRepoEnable : return KpkIcons::getIcon("package-orign"); - case Client::ActionRepoSetData : return KpkIcons::getIcon("package-orign"); - case Client::ActionResolve : return KpkIcons::getIcon("package-search"); - case Client::ActionRollback : return KpkIcons::getIcon("package-rollback"); - case Client::ActionSearchDetails : return KpkIcons::getIcon("package-search"); - case Client::ActionSearchFile : return KpkIcons::getIcon("package-search"); - case Client::ActionSearchGroup : return KpkIcons::getIcon("package-search"); - case Client::ActionSearchName : return KpkIcons::getIcon("package-search"); - case Client::ActionUpdatePackages : return KpkIcons::getIcon("package-update"); - case Client::ActionUpdateSystem : return KpkIcons::getIcon("distro-upgrade");//TODO - case Client::ActionWhatProvides : return KpkIcons::getIcon("package-search"); - case Client::ActionSimulateInstallFiles : return KpkIcons::getIcon("package-installed"); - case Client::ActionSimulateInstallPackages : return KpkIcons::getIcon("package-installed"); - case Client::ActionSimulateRemovePackages : return KpkIcons::getIcon("package-removed"); - case Client::ActionSimulateUpdatePackages : return KpkIcons::getIcon("package-update'"); + switch (role) { + case Enum::LastRole : + case Enum::UnknownRole : return KpkIcons::getIcon("applications-other"); + case Enum::RoleAcceptEula : return KpkIcons::getIcon("package-info"); + case Enum::RoleCancel : return KpkIcons::getIcon("process-stop"); + case Enum::RoleDownloadPackages : return KpkIcons::getIcon("package-download"); + case Enum::RoleGetCategories : return KpkIcons::getIcon("package-info"); + case Enum::RoleGetDepends : return KpkIcons::getIcon("package-info"); + case Enum::RoleGetDetails : return KpkIcons::getIcon("package-info"); + case Enum::RoleGetDistroUpgrades : return KpkIcons::getIcon("distro-upgrade"); + case Enum::RoleGetFiles : return KpkIcons::getIcon("package-search"); + case Enum::RoleGetOldTransactions : return KpkIcons::getIcon("package-info"); + case Enum::RoleGetPackages : return KpkIcons::getIcon("package-packages"); + case Enum::RoleGetRepoList : return KpkIcons::getIcon("package-orign"); + case Enum::RoleGetRequires : return KpkIcons::getIcon("package-info"); + case Enum::RoleGetUpdateDetail : return KpkIcons::getIcon("package-info"); + case Enum::RoleGetUpdates : return KpkIcons::getIcon("package-info"); + case Enum::RoleInstallFiles : return KpkIcons::getIcon("package-installed"); + case Enum::RoleInstallPackages : return KpkIcons::getIcon("package-installed"); + case Enum::RoleInstallSignature : return KpkIcons::getIcon("package-installed"); + case Enum::RoleRefreshCache : return KpkIcons::getIcon("kpk-refresh-cache"); + case Enum::RoleRemovePackages : return KpkIcons::getIcon("package-removed"); + case Enum::RoleRepoEnable : return KpkIcons::getIcon("package-orign"); + case Enum::RoleRepoSetData : return KpkIcons::getIcon("package-orign"); + case Enum::RoleResolve : return KpkIcons::getIcon("package-search"); + case Enum::RoleRollback : return KpkIcons::getIcon("package-rollback"); + case Enum::RoleSearchDetails : return KpkIcons::getIcon("package-search"); + case Enum::RoleSearchFile : return KpkIcons::getIcon("package-search"); + case Enum::RoleSearchGroup : return KpkIcons::getIcon("package-search"); + case Enum::RoleSearchName : return KpkIcons::getIcon("package-search"); + case Enum::RoleUpdatePackages : return KpkIcons::getIcon("package-update"); + case Enum::RoleUpdateSystem : return KpkIcons::getIcon("distro-upgrade");//TODO + case Enum::RoleWhatProvides : return KpkIcons::getIcon("package-search"); + case Enum::RoleSimulateInstallFiles : return KpkIcons::getIcon("package-installed"); + case Enum::RoleSimulateInstallPackages : return KpkIcons::getIcon("package-installed"); + case Enum::RoleSimulateRemovePackages : return KpkIcons::getIcon("package-removed"); + case Enum::RoleSimulateUpdatePackages : return KpkIcons::getIcon("package-update'"); } - kDebug() << "action unrecognised: " << action; + kDebug() << "action unrecognised: " << role; return KpkIcons::getIcon("applications-other"); } -KIcon KpkIcons::groupsIcon(Client::Group group) +KIcon KpkIcons::groupsIcon(Enum::Group group) { switch (group) { - case Client::UnknownGroup : return KpkIcons::getIcon("unknown"); - case Client::GroupAccessibility : return KpkIcons::getIcon("preferences-desktop-accessibility"); - case Client::GroupAccessories : return KpkIcons::getIcon("applications-accessories"); - case Client::GroupAdminTools : return KpkIcons::getIcon("dialog-password"); - case Client::GroupCommunication : return KpkIcons::getIcon("network-workgroup");//FIXME - case Client::GroupDesktopGnome : return KpkIcons::getIcon("user-desktop");//FIXME - case Client::GroupDesktopKde : return KpkIcons::getIcon("kde"); - case Client::GroupDesktopOther : return KpkIcons::getIcon("user-desktop"); - case Client::GroupDesktopXfce : return KpkIcons::getIcon("user-desktop");//FIXME - case Client::GroupDocumentation : return KpkIcons::getIcon("accessories-dictionary");//FIXME - case Client::GroupEducation : return KpkIcons::getIcon("applications-education"); - case Client::GroupElectronics : return KpkIcons::getIcon("media-flash"); - case Client::GroupFonts : return KpkIcons::getIcon("preferences-desktop-font"); - case Client::GroupGames : return KpkIcons::getIcon("applications-games"); - case Client::GroupGraphics : return KpkIcons::getIcon("applications-graphics"); - case Client::GroupInternet : return KpkIcons::getIcon("applications-internet"); - case Client::GroupLegacy : return KpkIcons::getIcon("media-floppy"); - case Client::GroupLocalization : return KpkIcons::getIcon("applications-education-language"); - case Client::GroupMaps : return KpkIcons::getIcon("Maps");//FIXME - case Client::GroupCollections : return KpkIcons::getIcon("unknown");//FIXME - case Client::GroupMultimedia : return KpkIcons::getIcon("applications-multimedia"); - case Client::GroupNetwork : return KpkIcons::getIcon("network-wired"); - case Client::GroupOffice : return KpkIcons::getIcon("applications-office"); - case Client::GroupOther : return KpkIcons::getIcon("applications-other"); - case Client::GroupPowerManagement : return KpkIcons::getIcon("battery"); - case Client::GroupProgramming : return KpkIcons::getIcon("applications-development"); - case Client::GroupPublishing : return KpkIcons::getIcon("accessories-text-editor"); - case Client::GroupRepos : return KpkIcons::getIcon("application-x-compressed-tar"); - case Client::GroupScience : return KpkIcons::getIcon("applications-science"); - case Client::GroupSecurity : return KpkIcons::getIcon("security-high"); - case Client::GroupServers : return KpkIcons::getIcon("network-server"); - case Client::GroupSystem : return KpkIcons::getIcon("applications-system"); - case Client::GroupVirtualization : return KpkIcons::getIcon("cpu"); - case Client::GroupVendor : return KpkIcons::getIcon("application-certificate"); - case Client::GroupNewest : return KpkIcons::getIcon("dialog-information"); + case Enum::LastGroup : + case Enum::UnknownGroup : return KpkIcons::getIcon("unknown"); + case Enum::GroupAccessibility : return KpkIcons::getIcon("preferences-desktop-accessibility"); + case Enum::GroupAccessories : return KpkIcons::getIcon("applications-accessories"); + case Enum::GroupAdminTools : return KpkIcons::getIcon("dialog-password"); + case Enum::GroupCommunication : return KpkIcons::getIcon("network-workgroup");//FIXME + case Enum::GroupDesktopGnome : return KpkIcons::getIcon("user-desktop");//FIXME + case Enum::GroupDesktopKde : return KpkIcons::getIcon("kde"); + case Enum::GroupDesktopOther : return KpkIcons::getIcon("user-desktop"); + case Enum::GroupDesktopXfce : return KpkIcons::getIcon("user-desktop");//FIXME + case Enum::GroupDocumentation : return KpkIcons::getIcon("accessories-dictionary");//FIXME + case Enum::GroupEducation : return KpkIcons::getIcon("applications-education"); + case Enum::GroupElectronics : return KpkIcons::getIcon("media-flash"); + case Enum::GroupFonts : return KpkIcons::getIcon("preferences-desktop-font"); + case Enum::GroupGames : return KpkIcons::getIcon("applications-games"); + case Enum::GroupGraphics : return KpkIcons::getIcon("applications-graphics"); + case Enum::GroupInternet : return KpkIcons::getIcon("applications-internet"); + case Enum::GroupLegacy : return KpkIcons::getIcon("media-floppy"); + case Enum::GroupLocalization : return KpkIcons::getIcon("applications-education-language"); + case Enum::GroupMaps : return KpkIcons::getIcon("Maps");//FIXME + case Enum::GroupCollections : return KpkIcons::getIcon("unknown");//FIXME + case Enum::GroupMultimedia : return KpkIcons::getIcon("applications-multimedia"); + case Enum::GroupNetwork : return KpkIcons::getIcon("network-wired"); + case Enum::GroupOffice : return KpkIcons::getIcon("applications-office"); + case Enum::GroupOther : return KpkIcons::getIcon("applications-other"); + case Enum::GroupPowerManagement : return KpkIcons::getIcon("battery"); + case Enum::GroupProgramming : return KpkIcons::getIcon("applications-development"); + case Enum::GroupPublishing : return KpkIcons::getIcon("accessories-text-editor"); + case Enum::GroupRepos : return KpkIcons::getIcon("application-x-compressed-tar"); + case Enum::GroupScience : return KpkIcons::getIcon("applications-science"); + case Enum::GroupSecurity : return KpkIcons::getIcon("security-high"); + case Enum::GroupServers : return KpkIcons::getIcon("network-server"); + case Enum::GroupSystem : return KpkIcons::getIcon("applications-system"); + case Enum::GroupVirtualization : return KpkIcons::getIcon("cpu"); + case Enum::GroupVendor : return KpkIcons::getIcon("application-certificate"); + case Enum::GroupNewest : return KpkIcons::getIcon("dialog-information"); } kDebug() << "group unrecognised: " << group; return KpkIcons::getIcon("unknown"); } -KIcon KpkIcons::packageIcon(Package::State state) +KIcon KpkIcons::packageIcon(Enum::Info info) { - switch (state) { - case Package::StateBugfix : return KpkIcons::getIcon("script-error"); - case Package::StateImportant : return KpkIcons::getIcon("security-low"); - case Package::StateLow : return KpkIcons::getIcon("security-high"); - case Package::StateEnhancement : return KpkIcons::getIcon("ktip"); - case Package::StateSecurity : return KpkIcons::getIcon("emblem-important"); - case Package::StateNormal : return KpkIcons::getIcon("security-medium"); - case Package::StateBlocked : return KpkIcons::getIcon("dialog-cancel"); - case Package::StateAvailable : return KpkIcons::getIcon("package-download"); - case Package::StateInstalled : return KpkIcons::getIcon("package-installed"); - default : return KpkIcons::getIcon("package"); + switch (info) { + case Enum::InfoBugfix : return KpkIcons::getIcon("script-error"); + case Enum::InfoImportant : return KpkIcons::getIcon("security-low"); + case Enum::InfoLow : return KpkIcons::getIcon("security-high"); + case Enum::InfoEnhancement : return KpkIcons::getIcon("ktip"); + case Enum::InfoSecurity : return KpkIcons::getIcon("emblem-important"); + case Enum::InfoNormal : return KpkIcons::getIcon("security-medium"); + case Enum::InfoBlocked : return KpkIcons::getIcon("dialog-cancel"); + case Enum::InfoAvailable : return KpkIcons::getIcon("package-download"); + case Enum::InfoInstalled : return KpkIcons::getIcon("package-installed"); + default : return KpkIcons::getIcon("package"); } } -KIcon KpkIcons::restartIcon(Client::RestartType type) +KIcon KpkIcons::restartIcon(Enum::Restart type) { switch (type) { - case Client::RestartSecuritySystem : - case Client::RestartSystem : return KpkIcons::getIcon("system-reboot"); - case Client::RestartSecuritySession : - case Client::RestartSession : return KpkIcons::getIcon("system-log-out"); - case Client::RestartApplication : return KpkIcons::getIcon("process-stop"); - case Client::RestartNone : - case Client::UnknownRestartType : KpkIcons::getIcon(""); + case Enum::RestartSecuritySystem : + case Enum::RestartSystem : return KpkIcons::getIcon("system-reboot"); + case Enum::RestartSecuritySession : + case Enum::RestartSession : return KpkIcons::getIcon("system-log-out"); + case Enum::RestartApplication : return KpkIcons::getIcon("process-stop"); + case Enum::RestartNone : + case Enum::LastRestart : + case Enum::UnknownRestart : KpkIcons::getIcon(""); } return KpkIcons::getIcon(""); } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkIcons.h kpackagekit-0.6.0/libkpackagekit/KpkIcons.h --- kpackagekit-0.5.4/libkpackagekit/KpkIcons.h 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkIcons.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,6 +1,8 @@ /*************************************************************************** * Copyright (C) 2008 by Trever Fischer * * wm161@wm161.net * + * Copyright (C) 2010 by Daniel Nicoletti * + * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -30,12 +32,12 @@ class KDE_EXPORT KpkIcons { public: - static KIcon groupsIcon(Client::Group group); - static KIcon statusIcon(PackageKit::Transaction::Status status); - static QString statusAnimation(PackageKit::Transaction::Status status); - static KIcon actionIcon(Client::Action action); - static KIcon packageIcon(Package::State state); - static KIcon restartIcon(Client::RestartType type); + static KIcon groupsIcon(Enum::Group group); + static KIcon statusIcon(Enum::Status status); + static QString statusAnimation(Enum::Status status); + static KIcon actionIcon(Enum::Role role); + static KIcon packageIcon(Enum::Info state); + static KIcon restartIcon(Enum::Restart type); static KIcon getIcon(const QString &name); static KIcon getIcon(const QString &name, const QString &defaultName); diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkImportance.cpp kpackagekit-0.6.0/libkpackagekit/KpkImportance.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkImportance.cpp 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkImportance.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 200 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,21 +22,22 @@ #include -int KpkImportance::restartImportance(Client::RestartType type) +int KpkImportance::restartImportance(Enum::Restart type) { switch (type) { - case Client::UnknownRestartType : - case Client::RestartNone : + case Enum::LastRestart : + case Enum::UnknownRestart : + case Enum::RestartNone : return 0; - case Client::RestartApplication : + case Enum::RestartApplication : return 1; - case Client::RestartSession : + case Enum::RestartSession : return 2; - case Client::RestartSecuritySession : + case Enum::RestartSecuritySession : return 3; - case Client::RestartSystem : + case Enum::RestartSystem : return 4; - case Client::RestartSecuritySystem : + case Enum::RestartSecuritySystem : return 5; } kWarning() << "restart type unrecognised: " << type; diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkImportance.h kpackagekit-0.6.0/libkpackagekit/KpkImportance.h --- kpackagekit-0.5.4/libkpackagekit/KpkImportance.h 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkImportance.h 2010-03-19 21:14:59.000000000 +0000 @@ -29,7 +29,7 @@ namespace KpkImportance { - KDE_EXPORT int restartImportance(Client::RestartType type); + KDE_EXPORT int restartImportance(Enum::Restart type); }; #endif diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkLicenseAgreement.cpp kpackagekit-0.6.0/libkpackagekit/KpkLicenseAgreement.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkLicenseAgreement.cpp 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkLicenseAgreement.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -27,13 +27,13 @@ KpkLicenseAgreement::KpkLicenseAgreement( PackageKit::Client::EulaInfo info, bool modal, QWidget *parent ) : KDialog(parent) { - setupUi( mainWidget() ); + setupUi(mainWidget()); setModal(modal); - setButtons( KDialog::Cancel | KDialog::Yes ); - setButtonText( KDialog::Yes, i18n("Accept Agreement") ); - setCaption( i18n("License Agreement Required") ); - title->setText( i18n("License required for %1 by %2", info.package->name(), info.vendorName) ); + setButtons(KDialog::Cancel | KDialog::Yes); + setButtonText(KDialog::Yes, i18n("Accept Agreement")); + setCaption(i18n("License Agreement Required")); + title->setText(i18n("License required for %1 by %2", info.package->name(), info.vendorName)); ktextbrowser->setText(info.licenseAgreement); } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkPackageModel.cpp kpackagekit-0.6.0/libkpackagekit/KpkPackageModel.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkPackageModel.cpp 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkPackageModel.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * Copyright (C) 2008 by Trever Fischer * * wm161@wm161.net * @@ -36,51 +36,51 @@ { } -KpkPackageModel::KpkPackageModel(const QList &packages, QObject *parent, QAbstractItemView *packageView) +KpkPackageModel::KpkPackageModel(const QList > &packages, QObject *parent, QAbstractItemView *packageView) : QAbstractItemModel(parent), m_packageView(packageView), m_grouped(false) { - foreach(Package* p, packages) { + foreach(QSharedPointer p, packages) { addPackage(p); } } //Sort helpers -bool packageNameSortLessThan(const Package* p1, const Package* p2) +bool packageNameSortLessThan(const QSharedPointer p1, const QSharedPointer p2) { return p1->name().toLower() < p2->name().toLower(); } -bool packageNameSortGreaterThan(const Package* p1, const Package* p2) +bool packageNameSortGreaterThan(const QSharedPointer p1, const QSharedPointer p2) { return p1->name().toLower() > p2->name().toLower(); } //A fancy function object to allow the use of the checklist -class ascendingSelectionSorter { - public: - ascendingSelectionSorter(QList l) : m_list(l) {} - bool operator()(const Package* p1, const Package*p2) { - if (m_list.contains(const_cast(p1)) && m_list.contains(const_cast(p2))) { - return false; - } - return m_list.contains(const_cast(p2)); - } - QList m_list; -}; - -class descendingSelectionSorter { - public: - descendingSelectionSorter(QList l) : m_list(l) {} - bool operator()(const Package* p1, const Package* p2) { - if (m_list.contains(const_cast(p1)) && m_list.contains(const_cast(p2))) { - return false; - } - return m_list.contains(const_cast(p1)); - } - QList m_list; -}; +// class ascendingSelectionSorter { +// public: +// ascendingSelectionSorter(QList > l) : m_list(l) {} +// bool operator()(const QSharedPointer p1, const QSharedPointerp2) { +// if (m_list.contains(const_cast >(p1)) && m_list.contains(const_cast >(p2))) { +// return false; +// } +// return m_list.contains(const_cast >(p2)); +// } +// QList > m_list; +// }; +// +// class descendingSelectionSorter { +// public: +// descendingSelectionSorter(QList > l) : m_list(l) {} +// bool operator()(const QSharedPointer p1, const QSharedPointer p2) { +// if (m_list.contains(const_cast >(p1)) && m_list.contains(const_cast >(p2))) { +// return false; +// } +// return m_list.contains(const_cast >(p1)); +// } +// QList > m_list; +// }; void KpkPackageModel::sort(int column, Qt::SortOrder order) { @@ -88,7 +88,7 @@ if (order == Qt::DescendingOrder) { qSort(m_packages.begin(), m_packages.end(), packageNameSortGreaterThan); - QMap >::const_iterator i = m_groups.constBegin(); + QMap > >::const_iterator i = m_groups.constBegin(); while (i != m_groups.constEnd()) { qSort(m_groups[i.key()].begin(), m_groups[i.key()].end(), packageNameSortGreaterThan); ++i; @@ -96,32 +96,32 @@ } else { qSort(m_packages.begin(), m_packages.end(), packageNameSortLessThan); - QMap >::const_iterator i = m_groups.constBegin(); + QMap > >::const_iterator i = m_groups.constBegin(); while (i != m_groups.constEnd()) { qSort(m_groups[i.key()].begin(), m_groups[i.key()].end(), packageNameSortLessThan); ++i; } } } else if (column == 1) { - if (order == Qt::DescendingOrder){ - descendingSelectionSorter sort(m_checkedPackages); - qSort(m_packages.begin(), m_packages.end(), sort); - - QMap >::const_iterator i = m_groups.constBegin(); - while (i != m_groups.constEnd()) { - qSort(m_groups[i.key()].begin(), m_groups[i.key()].end(), sort); - ++i; - } - } else { - ascendingSelectionSorter sort(m_checkedPackages); - qSort(m_packages.begin(), m_packages.end(), sort); - - QMap >::const_iterator i = m_groups.constBegin(); - while (i != m_groups.constEnd()) { - qSort(m_groups[i.key()].begin(), m_groups[i.key()].end(), sort); - ++i; - } - } +// if (order == Qt::DescendingOrder){ +// descendingSelectionSorter sort(m_checkedPackages); +// qSort(m_packages.begin(), m_packages.end(), sort); +// +// QMap > >::const_iterator i = m_groups.constBegin(); +// while (i != m_groups.constEnd()) { +// qSort(m_groups[i.key()].begin(), m_groups[i.key()].end(), sort); +// ++i; +// } +// } else { +// ascendingSelectionSorter sort(m_checkedPackages); +// qSort(m_packages.begin(), m_packages.end(), sort); +// +// QMap > >::const_iterator i = m_groups.constBegin(); +// while (i != m_groups.constEnd()) { +// qSort(m_groups[i.key()].begin(), m_groups[i.key()].end(), sort); +// ++i; +// } +// } } if (m_grouped) { for (int i = 0; i < rowCount(QModelIndex()); i++) { @@ -156,7 +156,7 @@ if (!parent.isValid()) { return m_groups.size(); } - Package::State group = m_groups.keys().at(parent.row()); + Enum::Info group = m_groups.keys().at(parent.row()); return m_groups.value(group).size(); } else { if (parent.isValid()) { @@ -168,12 +168,12 @@ QModelIndex KpkPackageModel::index(int row, int column, const QModelIndex &parent) const { - Package *pkg; + QSharedPointer pkg; // not grouped and parent invalid // means a normal package - if (!m_grouped && !parent.isValid()) { + if (!m_grouped && !parent.isValid() && m_packages.size() > row) { pkg = m_packages.at(row); - return createIndex(row, column, pkg); + return createIndex(row, column, pkg.data()); } else if (!m_grouped) { return QModelIndex(); } @@ -183,9 +183,9 @@ } if (parent.isValid()) { - Package::State group = m_groups.keys().at(parent.row()); + Enum::Info group = m_groups.keys().at(parent.row()); pkg = m_groups[group].at(row); - return createIndex(row, column, pkg); + return createIndex(row, column, pkg.data()); } else { return createIndex(row, column, 0); } @@ -201,9 +201,9 @@ /*if (!index.isValid()) return QModelIndex();*/ - Package* p = static_cast(index.internalPointer()); + PackageKit::Package *p = static_cast(index.internalPointer()); if (p) { - return createIndex(m_groups.keys().indexOf(p->state()), 0); + return createIndex(m_groups.keys().indexOf(p->info()), 0); } else { return QModelIndex(); } @@ -223,16 +223,15 @@ //TODO: Make this not hideous. QVariant KpkPackageModel::data(const QModelIndex &index, int role) const { - Package *pkg = static_cast(index.internalPointer()); - if (pkg) { - // we're a package. -// if (index.row() >= m_packages.size()) { -// return QVariant(); -// } + if (!index.isValid()) { + return QVariant(); + } + PackageKit::Package *pkg = static_cast(index.internalPointer()); + if (pkg) { // we do this here cause it's the same code for column 1 and 2 if (role == CheckedRole) { - if (containsChecked(pkg)) { + if (containsChecked(pkg->id())) { return Qt::Checked; } return Qt::Unchecked; @@ -245,16 +244,11 @@ case NameRole: return pkg->name() + " - " + pkg->version() + (pkg->arch().isNull() ? NULL : " (" + pkg->arch() + ')'); case IconRole: - if (containsChecked(pkg)) { - return (pkg->state() == Package::StateInstalled) ? - KpkIcons::getIcon("package-removed") - : KpkIcons::getIcon("package-download"); - } - return KpkIcons::packageIcon(pkg->state());; + return KpkIcons::packageIcon(pkg->info());; case SummaryRole: return pkg->summary(); case InstalledRole: - return pkg->state() == Package::StateInstalled; + return pkg->info() == Enum::InfoInstalled; case IdRole: return pkg->id(); case GroupRole: @@ -265,7 +259,7 @@ case 1: //Checkbox column switch(role) { case InstalledRole: - return pkg->state() == Package::StateInstalled; + return pkg->info() == Enum::InfoInstalled; default: return QVariant(); } @@ -273,25 +267,17 @@ return QVariant(); } } else { -// if (index.row() >= m_groups.size()) { -// return QVariant(); -// } //Grouped, and the parent is invalid means this is a group - Package::State group = m_groups.keys().at(index.row()); - int count = m_groups.value(group).size(); - // we do this here cause it's the same code for column 1 and 2 - int nChecked = 0; - foreach(Package *p, m_groups[group]) { - if (containsChecked(p)) { - nChecked++; - } - } + Enum::Info group = m_groups.keys().at(index.row()); + //TODO: Group descriptions switch(index.column()) { case 0: switch(role) { case NameRole: - return KpkStrings::infoUpdate(group, count, nChecked); + return KpkStrings::infoUpdate(group, + m_groups.value(group).size(), + checkedGroupCount(group)); case IconRole: return KpkIcons::packageIcon(group); case GroupRole: @@ -304,15 +290,15 @@ case 1: switch(role) { case CheckedRole: - if (m_groups[group].size() == nChecked) { + if (m_groups[group].size() == checkedGroupCount(group)) { return Qt::Checked; - } else if (nChecked == 0) { + } else if (checkedGroupCount(group) == 0) { return Qt::Unchecked; } else { return Qt::PartiallyChecked; } case InstalledRole: - return group == Package::StateInstalled; + return group == Enum::InfoInstalled; default: return QVariant(); } @@ -322,17 +308,45 @@ } } +void KpkPackageModel::checkPackage(QSharedPointer package) +{ + if (!containsChecked(package->id())) { + m_checkedPackages[package->id()] = package; + m_checkedGroupCount[package->info()]++; + } +} + +void KpkPackageModel::uncheckPackage(const QSharedPointer package) +{ + if (containsChecked(package->id())) { + m_checkedPackages.remove(package->id()); + m_checkedGroupCount[package->info()]--; + } +} + +int KpkPackageModel::checkedGroupCount(Enum::Info info) const +{ + return m_checkedGroupCount[info]; +} + +bool KpkPackageModel::containsChecked(const QString &pid) const +{ + if (m_checkedPackages.isEmpty()) { + return false; + } + return m_checkedPackages.contains(pid); +} + bool KpkPackageModel::setData(const QModelIndex &index, const QVariant &value, int role) { if (role == CheckedRole) { - Package *p = package(index); + QSharedPointer p = package(index); if (value.toBool()) { if (p || !m_grouped) { - if (p) { - m_checkedPackages.append(p); - } else { - m_checkedPackages.append(m_packages.at(index.row())); + if (!p) { + p = m_packages.at(index.row()); } + checkPackage(p); emit dataChanged(index, index); // emit this so the package icon is also updated emit dataChanged(index, @@ -348,11 +362,9 @@ index.parent().column())); } } else { - Package::State group = m_groups.keys().at(index.row()); - foreach(Package *p, m_groups[group]) { - if (!containsChecked(p)) { - m_checkedPackages.append(p); - } + Enum::Info group = m_groups.keys().at(index.row()); + foreach(QSharedPointerp, m_groups[group]) { + checkPackage(p); } emit dataChanged(this->index(0, 1, index), this->index(m_groups[group].size(), @@ -364,7 +376,7 @@ if (!p) { p = m_packages.at(index.row()); } - removeChecked(p); + uncheckPackage(p); emit dataChanged(index, index); // emit this so the package icon is also updated emit dataChanged(index, @@ -380,9 +392,9 @@ index.parent().column())); } } else { - Package::State group = m_groups.keys().at(index.row()); - foreach(Package *p, m_groups[group]) { - removeChecked(p); + Enum::Info group = m_groups.keys().at(index.row()); + foreach(const QSharedPointer p, m_groups[group]) { + uncheckPackage(p); } emit dataChanged(this->index(0, 1, index), this->index(m_groups[group].size(), @@ -395,44 +407,16 @@ return false; } -// This class remove package is -// in the checked list. -// removeOne/removeAll can't be used since our -// Packages are pointers -void KpkPackageModel::removeChecked(Package *package) -{ - for (int i = 0; i < m_checkedPackages.size(); ++i) { - if (*m_checkedPackages.at(i) == package) { - m_checkedPackages.removeAt(i); - break; - } - } -} - -// This class checks if the package is -// in the checked list. -// contains() can't be used since our -// Packages are pointers -bool KpkPackageModel::containsChecked(Package *package) const -{ - for (int i = 0; i < m_checkedPackages.size(); ++i) { - if (*m_checkedPackages.at(i) == package) { - return true; - } - } - return false; -} - Qt::ItemFlags KpkPackageModel::flags(const QModelIndex &index) const { if (index.column() == 1) { if (package(index)) { - if (package(index)->state() == Package::StateBlocked) { + if (package(index)->info() == Enum::InfoBlocked) { return QAbstractItemModel::flags(index); } else { return Qt::ItemIsUserCheckable | QAbstractItemModel::flags(index); } - } else if (m_groups.keys().at(index.row()) == Package::StateBlocked) { + } else if (m_groups.keys().at(index.row()) == Enum::InfoBlocked) { return QAbstractItemModel::flags(index); } else { return Qt::ItemIsUserCheckable | Qt::ItemIsTristate | QAbstractItemModel::flags(index); @@ -447,67 +431,67 @@ return 2; } -Package* KpkPackageModel::package(const QModelIndex &index) const +QSharedPointer KpkPackageModel::package(const QModelIndex &index) const { if (m_grouped && !index.parent().isValid()) { - return 0; + return QSharedPointer(); } else { if (m_grouped) { - return packagesWithState(m_groups.keys().at(index.parent().row())).at(index.row()); + return packagesWithInfo(m_groups.keys().at(index.parent().row())).at(index.row()); } else { return m_packages.at(index.row()); } } } -void KpkPackageModel::addSelectedPackage(PackageKit::Package *package) +void KpkPackageModel::addSelectedPackage(QSharedPointerpackage) { - if (package->state() != Package::StateBlocked) { - m_checkedPackages << package; + if (package->info() != Enum::InfoBlocked) { + checkPackage(package); } addPackage(package); } -void KpkPackageModel::addPackage(PackageKit::Package *package) +void KpkPackageModel::addPackage(QSharedPointerpackage) { // check to see if the list of info has any package if (!m_grouped) { beginInsertRows(QModelIndex(), m_packages.size(), m_packages.size()); m_packages.append(package); - m_groups[package->state()].append(package); + m_groups[package->info()].append(package); endInsertRows(); - } else if (!m_groups.contains(package->state())) { + } else if (!m_groups.contains(package->info())) { // insert the group item beginInsertRows(QModelIndex(), m_groups.size(), m_groups.size()); - m_groups[package->state()].append(package); + m_groups[package->info()].append(package); endInsertRows(); // now insert the package - QModelIndex index(createIndex(m_groups.keys().indexOf(package->state()), 0)); + QModelIndex index(createIndex(m_groups.keys().indexOf(package->info()), 0)); beginInsertRows(index, - m_groups[package->state()].size(), - m_groups[package->state()].size()); + m_groups[package->info()].size(), + m_groups[package->info()].size()); m_packages.append(package); endInsertRows(); // the displayed data of the parent MUST be updated to show the right number of packages emit dataChanged(index, index); } else { - QModelIndex index(createIndex(m_groups.keys().indexOf(package->state()), 0)); + QModelIndex index(createIndex(m_groups.keys().indexOf(package->info()), 0)); beginInsertRows(index, - m_groups[package->state()].size(), - m_groups[package->state()].size()); + m_groups[package->info()].size(), + m_groups[package->info()].size()); m_packages.append(package); - m_groups[package->state()].append(package); + m_groups[package->info()].append(package); endInsertRows(); // the displayed data of the parent MUST be updated to show the right number of packages emit dataChanged(index, index); } } -void KpkPackageModel::removePackage(Package *package) +void KpkPackageModel::removePackage(QSharedPointerpackage) { beginRemoveRows(QModelIndex(), m_packages.size() - 1, m_packages.size() - 1); m_packages.removeOne(package); - m_groups[package->state()].removeOne(package); + m_groups[package->info()].removeOne(package); endRemoveRows(); } @@ -521,10 +505,11 @@ void KpkPackageModel::uncheckAll() { m_checkedPackages.clear(); - emit dataChanged(createIndex(0, 1), - createIndex(m_groups.size(), 1)); + m_checkedGroupCount.clear(); +// emit dataChanged(createIndex(0, 1), +// createIndex(m_groups.size(), 1)); if (m_grouped) { - QMap >::const_iterator i = m_groups.constBegin(); + QMap > >::const_iterator i = m_groups.constBegin(); while (i != m_groups.constEnd()) { QModelIndex groupIndex = index(m_groups.keys().indexOf(i.key()), 0, QModelIndex()); emit dataChanged(index(0, 1, groupIndex), @@ -539,15 +524,16 @@ void KpkPackageModel::checkAll() { m_checkedPackages.clear(); - foreach(Package *package, m_packages) { - if (package->state() != Package::StateBlocked) { - m_checkedPackages << package; + m_checkedGroupCount.clear(); + foreach(QSharedPointer package, m_packages) { + if (package->info() != Enum::InfoBlocked) { + checkPackage(package); } } emit dataChanged(createIndex(0, 1), createIndex(m_groups.size(), 1)); if (m_grouped) { - QMap >::const_iterator i = m_groups.constBegin(); + QMap > >::const_iterator i = m_groups.constBegin(); while (i != m_groups.constEnd()) { QModelIndex groupIndex = index(m_groups.keys().indexOf(i.key()), 0, QModelIndex()); emit dataChanged(index(0, 1, groupIndex), @@ -559,20 +545,20 @@ } } -QList KpkPackageModel::selectedPackages() const +QList > KpkPackageModel::selectedPackages() const { - return QList(m_checkedPackages); + return m_checkedPackages.values(); } -QList KpkPackageModel::packagesWithState(Package::State state) const +QList > KpkPackageModel::packagesWithInfo(Enum::Info info) const { - return m_groups[state]; + return m_groups[info]; } bool KpkPackageModel::allSelected() const { - foreach(Package *p, m_packages) { - if (p->state() != Package::StateBlocked && !containsChecked(p)) { + foreach(QSharedPointer p, m_packages) { + if (p->info() != Enum::InfoBlocked && !containsChecked(p->id())) { return false; } } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkPackageModel.h kpackagekit-0.6.0/libkpackagekit/KpkPackageModel.h --- kpackagekit-0.5.4/libkpackagekit/KpkPackageModel.h 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkPackageModel.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -18,8 +18,8 @@ * Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef KPKPACKAGEMODEL_H -#define KPKPACKAGEMODEL_H +#ifndef KPK_PACKAGE_MODEL_H +#define KPK_PACKAGE_MODEL_H #include #include @@ -36,7 +36,7 @@ public: explicit KpkPackageModel(QObject *parent = 0, QAbstractItemView *packageView = 0); - explicit KpkPackageModel(const QList &packages, QObject *parent = 0, QAbstractItemView *packageView = 0); + explicit KpkPackageModel(const QList > &packages, QObject *parent = 0, QAbstractItemView *packageView = 0); int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; @@ -46,10 +46,10 @@ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; bool allSelected() const; - QList selectedPackages() const; - QList packagesWithState(Package::State) const; - void removePackage(Package *package); - Package *package(const QModelIndex &index) const; + QList > selectedPackages() const; + QList > packagesWithInfo(Enum::Info) const; + void removePackage(QSharedPointerpackage); + QSharedPointer package(const QModelIndex &index) const; void clear(); void uncheckAll(); void checkAll(); @@ -71,18 +71,22 @@ }; public slots: - void addPackage(PackageKit::Package *package); - void addSelectedPackage(PackageKit::Package *package); + void addPackage(QSharedPointerpackage); + void addSelectedPackage(QSharedPointerpackage); void setGrouped(bool g); private: - void removeChecked(Package *package); - bool containsChecked(Package *package) const; + bool containsChecked(const QString &pid) const; + void checkPackage(QSharedPointerpackage); + void uncheckPackage(const QSharedPointerpackage); + int checkedGroupCount(Enum::Info info) const; QAbstractItemView *m_packageView; - QList m_packages; - QList m_checkedPackages; - QMap > m_groups; + QList > m_packages; + QHash > m_checkedPackages; + QHash m_checkedGroupCount; +// QList<> m_checkedPackages; + QMap > > m_groups; bool m_grouped; }; diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkRepoSig.cpp kpackagekit-0.6.0/libkpackagekit/KpkRepoSig.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkRepoSig.cpp 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkRepoSig.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -29,11 +29,11 @@ KpkRepoSig::KpkRepoSig( PackageKit::Client::SignatureInfo info, bool modal, QWidget *parent ) : KDialog(parent) { - setupUi( mainWidget() ); + setupUi(mainWidget()); setModal(modal); - setButtons( KDialog::Cancel | KDialog::Yes ); - setCaption( i18n("Software signature is required") ); + setButtons(KDialog::Cancel | KDialog::Yes); + setCaption(i18n("Software signature is required")); repoNameL->setText(info.repoId); sigUrlL->setText(info.keyUrl); diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkRequirements.cpp kpackagekit-0.6.0/libkpackagekit/KpkRequirements.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkRequirements.cpp 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkRequirements.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -41,14 +41,15 @@ #include "KpkRequirements.h" #include "ui_KpkRequirements.h" -#include +#include "KpkIcons.h" +#include "KpkSimulateModel.h" #include #include #include -Q_DECLARE_METATYPE(Package::State) +Q_DECLARE_METATYPE(Enum::Info) #include #define LATERAL_MARGIN 4 @@ -247,55 +248,55 @@ // Populate the actionsModel QStandardItem *item; - if (int c = model->countState(Package::StateRemoving)) { + if (int c = model->countInfo(Enum::InfoRemoving)) { item = new QStandardItem; item->setText(i18np("1 package to remove", "%1 packages to remove", c)); - item->setIcon(KpkIcons::actionIcon(Client::ActionRemovePackages)); - item->setData(QVariant::fromValue(Package::StateRemoving)); + item->setIcon(KpkIcons::actionIcon(Enum::RoleRemovePackages)); + item->setData(QVariant::fromValue(Enum::InfoRemoving)); d->actionsModel->appendRow(item); - model->setCurrentState(Package::StateRemoving); + model->setCurrentInfo(Enum::InfoRemoving); } - if (int c = model->countState(Package::StateDowngrading)) { + if (int c = model->countInfo(Enum::InfoDowngrading)) { item = new QStandardItem; item->setText(i18np("1 package to downgrade", "%1 packages to downgrade", c)); - item->setIcon(KpkIcons::actionIcon(Client::ActionRemovePackages)); - item->setData(QVariant::fromValue(Package::StateDowngrading)); - if (model->currentState() == Package::UnknownState) { - model->setCurrentState(Package::StateDowngrading); + item->setIcon(KpkIcons::actionIcon(Enum::RoleRemovePackages)); + item->setData(QVariant::fromValue(Enum::InfoDowngrading)); + if (model->currentInfo() == Enum::UnknownInfo) { + model->setCurrentInfo(Enum::InfoDowngrading); } d->actionsModel->appendRow(item); } - if (int c = model->countState(Package::StateReinstalling)) { + if (int c = model->countInfo(Enum::InfoReinstalling)) { item = new QStandardItem; item->setText(i18np("1 package to reinstall", "%1 packages to reinstall", c)); - item->setIcon(KpkIcons::actionIcon(Client::ActionRemovePackages)); - item->setData(QVariant::fromValue(Package::StateReinstalling)); - if (model->currentState() == Package::UnknownState) { - model->setCurrentState(Package::StateReinstalling); + item->setIcon(KpkIcons::actionIcon(Enum::RoleRemovePackages)); + item->setData(QVariant::fromValue(Enum::InfoReinstalling)); + if (model->currentInfo() == Enum::UnknownInfo) { + model->setCurrentInfo(Enum::InfoReinstalling); } d->actionsModel->appendRow(item); } - if (int c = model->countState(Package::StateInstalling)) { + if (int c = model->countInfo(Enum::InfoInstalling)) { item = new QStandardItem; item->setText(i18np("1 package to install", "%1 packages to install", c)); - item->setIcon(KpkIcons::actionIcon(Client::ActionInstallPackages)); - item->setData(QVariant::fromValue(Package::StateInstalling)); - if (model->currentState() == Package::UnknownState) { - model->setCurrentState(Package::StateInstalling); + item->setIcon(KpkIcons::actionIcon(Enum::RoleInstallPackages)); + item->setData(QVariant::fromValue(Enum::InfoInstalling)); + if (model->currentInfo() == Enum::UnknownInfo) { + model->setCurrentInfo(Enum::InfoInstalling); } d->actionsModel->appendRow(item); } - if (int c = model->countState(Package::StateUpdating)) { + if (int c = model->countInfo(Enum::InfoUpdating)) { item = new QStandardItem; item->setText(i18np("1 package to update", "%1 packages to update", c)); - item->setIcon(KpkIcons::actionIcon(Client::ActionUpdatePackages)); - item->setData(QVariant::fromValue(Package::StateUpdating)); - if (model->currentState() == Package::UnknownState) { - model->setCurrentState(Package::StateUpdating); + item->setIcon(KpkIcons::actionIcon(Enum::RoleUpdatePackages)); + item->setData(QVariant::fromValue(Enum::InfoUpdating)); + if (model->currentInfo() == Enum::UnknownInfo) { + model->setCurrentInfo(Enum::InfoUpdating); } d->actionsModel->appendRow(item); } @@ -317,8 +318,8 @@ void KpkRequirements::actionClicked(const QModelIndex &index) { - Package::State state = index.data(Qt::UserRole+1).value(); - static_cast(d->ui.packageView->model())->setCurrentState(state); + Enum::Info state = index.data(Qt::UserRole+1).value(); + static_cast(d->ui.packageView->model())->setCurrentInfo(state); d->ui.packageView->resizeColumnToContents(0); d->ui.packageView->resizeColumnToContents(1); } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkRequirements.h kpackagekit-0.6.0/libkpackagekit/KpkRequirements.h --- kpackagekit-0.5.4/libkpackagekit/KpkRequirements.h 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkRequirements.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,18 +22,15 @@ #define KPKREQUIREMENTS_H #include - -#include "KpkSimulateModel.h" - -using namespace PackageKit; +#include class KpkRequirementsPrivate; - +class KpkSimulateModel; class KDE_EXPORT KpkRequirements : public KDialog { Q_OBJECT public: - KpkRequirements(KpkSimulateModel *model, QWidget *parent = 0); + explicit KpkRequirements(KpkSimulateModel *model, QWidget *parent = 0); ~KpkRequirements(); private slots: diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkRequirements.ui kpackagekit-0.6.0/libkpackagekit/KpkRequirements.ui --- kpackagekit-0.5.4/libkpackagekit/KpkRequirements.ui 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkRequirements.ui 2010-03-19 21:14:59.000000000 +0000 @@ -108,9 +108,6 @@ true - - QAbstractItemView::NoSelection - false diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkReviewChanges.cpp kpackagekit-0.6.0/libkpackagekit/KpkReviewChanges.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkReviewChanges.cpp 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkReviewChanges.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -26,7 +26,13 @@ #include #include "KpkStrings.h" +#include "KpkEnum.h" #include "KpkRequirements.h" +#include "KpkSimulateModel.h" +#include "KpkPackageModel.h" +#include "KpkTransaction.h" +#include "KpkDelegate.h" + #include "ui_KpkReviewChanges.h" #define UNIVERSAL_PADDING 6 @@ -36,23 +42,35 @@ { public: Ui::KpkReviewChanges ui; + + KpkPackageModel *mainPkgModel; + KpkSimulateModel *installPkgModel, *removePkgModel; + KpkDelegate *pkgDelegate; + + Client *client; + + QList > remPackages; + QList > addPackages; + QList > reqDepPackages; + + Enum::Roles actions; }; -KpkReviewChanges::KpkReviewChanges(const QList &packages, QWidget *parent) +KpkReviewChanges::KpkReviewChanges(const QList > &packages, QWidget *parent) : KDialog(parent), d(new KpkReviewChangesPrivate), m_flags(Default) { d->ui.setupUi(mainWidget()); - m_client = Client::instance(); + d->client = Client::instance(); //initialize the model, delegate, client and connect it's signals - d->ui.packageView->setItemDelegate(m_pkgDelegate = new KpkDelegate(d->ui.packageView)); - d->ui.packageView->setModel(m_pkgModelMain = new KpkPackageModel(packages, this, d->ui.packageView)); - m_pkgModelMain->checkAll(); + d->ui.packageView->setItemDelegate(d->pkgDelegate = new KpkDelegate(d->ui.packageView)); + d->ui.packageView->setModel(d->mainPkgModel = new KpkPackageModel(packages, this, d->ui.packageView)); + d->mainPkgModel->checkAll(); d->ui.packageView->setEditTriggers(QAbstractItemView::NoEditTriggers); - connect(m_pkgModelMain, SIGNAL(dataChanged(const QModelIndex, const QModelIndex)), + connect(d->mainPkgModel, SIGNAL(dataChanged(const QModelIndex, const QModelIndex)), this, SLOT(checkChanged())); // Set Apply and Cancel buttons @@ -62,9 +80,9 @@ // better apply text and description text int countRemove = 0; int countInstall = 0; - foreach (Package *package, packages) { + foreach (QSharedPointerpackage, packages) { // If the package is installed we are going to remove it - if (package->state() == Package::StateInstalled) { + if (package->info() == Enum::InfoInstalled) { countRemove++; } else { countInstall++; @@ -114,7 +132,7 @@ { m_flags = flags; if (m_flags & ShowConfirmation) { - this->show(); + show(); } else { // Starts the action without showing the dialog QTimer::singleShot(0, this, SLOT(doAction())); @@ -124,24 +142,23 @@ connect(this, SIGNAL(finished(int)), &loop, SLOT(quit())); loop.exec(); - kDebug() << result(); return result(); } void KpkReviewChanges::doAction() { - m_actions = m_client->actions(); + d->actions = d->client->actions(); // check what packages are installed and marked to be removed - for (int i = 0; i < m_pkgModelMain->selectedPackages().size(); ++i) { - if (m_pkgModelMain->selectedPackages().at(i)->state() == Package::StateInstalled) { - m_remPackages << m_pkgModelMain->selectedPackages().takeAt(i); + for (int i = 0; i < d->mainPkgModel->selectedPackages().size(); ++i) { + if (d->mainPkgModel->selectedPackages().at(i)->info() == Enum::InfoInstalled) { + d->remPackages << d->mainPkgModel->selectedPackages().takeAt(i); } } // check what packages are available and marked to be installed - for (int i = 0; i < m_pkgModelMain->selectedPackages().size(); ++i) { - if (m_pkgModelMain->selectedPackages().at(i)->state() == Package::StateAvailable) { - m_addPackages << m_pkgModelMain->selectedPackages().takeAt(i); + for (int i = 0; i < d->mainPkgModel->selectedPackages().size(); ++i) { + if (d->mainPkgModel->selectedPackages().at(i)->info() == Enum::InfoAvailable) { + d->addPackages << d->mainPkgModel->selectedPackages().takeAt(i); } } @@ -150,34 +167,36 @@ void KpkReviewChanges::checkTask() { - if (!m_remPackages.isEmpty()) { - kDebug() << "task rm if"; - if (m_actions & Client::ActionRemovePackages) { - if (m_actions & Client::ActionSimulateRemovePackages && + if (!d->remPackages.isEmpty()) { + if (d->actions & Enum::RoleRemovePackages) { + if (d->actions & Enum::RoleSimulateRemovePackages && !(m_flags & HideConfirmDeps)) { - m_reqDepPackages = m_remPackages; + d->reqDepPackages = d->remPackages; + d->removePkgModel = new KpkSimulateModel(this, d->reqDepPackages); + // Create a Transaction dialog to don't upset the user + QPointer kTrans = new KpkTransaction(0, + KpkTransaction::CloseOnFinish + | KpkTransaction::Modal, + this); // Create the requirements transaction and it's model - m_transactionReq = m_client->simulateRemovePackages(m_reqDepPackages); - if (m_transactionReq->error()) { + Transaction *trans; + trans = d->client->simulateRemovePackages(d->reqDepPackages, true); + if (trans->error()) { KMessageBox::sorry(this, - KpkStrings::daemonError(m_transactionReq->error()), + KpkStrings::daemonError(trans->error()), i18n("Failed to simulate package removal")); - removeDone(); + taskDone(Enum::RoleRemovePackages); } else { - m_removePkgModel = new KpkSimulateModel(this); - connect(m_transactionReq, SIGNAL(package(PackageKit::Package *)), - m_removePkgModel, SLOT(addPackage(PackageKit::Package *))); - connect(m_transactionReq, - SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(simRemFinished(PackageKit::Transaction::ExitStatus, uint))); - // Create a Transaction dialog to don't upset the user - KpkTransaction *kTrans = new KpkTransaction(m_transactionReq, - KpkTransaction::CloseOnFinish - | KpkTransaction::Modal, - this); + kTrans->setTransaction(trans); + connect(trans, SIGNAL(package(QSharedPointer)), + d->removePkgModel, SLOT(addPackage(QSharedPointer))); + connect(trans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(simulateFinished(PackageKit::Enum::Exit))); + if (!(m_flags & HideProgress)) { - kTrans->show(); + kTrans->exec(); } + delete kTrans; } } else { // As we can't check for requires don't allow deps removal @@ -185,225 +204,208 @@ } } else { KMessageBox::error(this, i18n("The current backend does not support removing packages."), i18n("KPackageKit Error")); - removeDone(); + taskDone(Enum::RoleRemovePackages); } - } else if (!m_addPackages.isEmpty()) { - kDebug() << "task add else"; - if (m_actions & Client::ActionInstallPackages) { - if (m_actions & Client::ActionSimulateInstallPackages && + } else if (!d->addPackages.isEmpty()) { + if (d->actions & Enum::RoleInstallPackages) { + if (d->actions & Enum::RoleSimulateInstallPackages && !(m_flags & HideConfirmDeps)) { - m_reqDepPackages = m_addPackages; + d->reqDepPackages = d->addPackages; + d->installPkgModel = new KpkSimulateModel(this, d->reqDepPackages); + // Create a Transaction dialog to don't upset the user + QPointer kTrans = new KpkTransaction(0, + KpkTransaction::CloseOnFinish + | KpkTransaction::Modal, + this); // Create the depends transaction and it's model - m_transactionDep = m_client->simulateInstallPackages(m_reqDepPackages); - if (m_transactionDep->error()) { + Transaction *trans; + trans = d->client->simulateInstallPackages(d->reqDepPackages); + if (trans->error()) { KMessageBox::sorry(this, - KpkStrings::daemonError(m_transactionDep->error()), + KpkStrings::daemonError(trans->error()), i18n("Failed to simulate package install")); - installDone(); + taskDone(Enum::RoleInstallPackages); } else { - m_installPkgModel = new KpkSimulateModel(this); - connect(m_transactionDep, SIGNAL(package(PackageKit::Package *)), - m_installPkgModel, SLOT(addPackage(PackageKit::Package *))); - connect(m_transactionDep, - SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, - SLOT(simInstFinished(PackageKit::Transaction::ExitStatus, uint))); - // Create a Transaction dialog to don't upset the user - KpkTransaction *kTrans = new KpkTransaction(m_transactionDep, - KpkTransaction::CloseOnFinish - | KpkTransaction::Modal, - this); + kTrans->setTransaction(trans); + connect(trans, SIGNAL(package(QSharedPointer)), + d->installPkgModel, SLOT(addPackage(QSharedPointer))); + connect(trans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(simulateFinished(PackageKit::Enum::Exit))); + if (!(m_flags & HideProgress)) { - kTrans->show(); + kTrans->exec(); } } + delete kTrans; } else { installPackages(); } } else { KMessageBox::error(this, i18n("Current backend does not support installing packages."), i18n("KPackageKit Error")); - installDone(); + taskDone(Enum::RoleInstallPackages); } } else { - kDebug() << "No more tasks to do"; slotButtonClicked(KDialog::Ok); } } -void KpkReviewChanges::simInstFinished(PackageKit::Transaction::ExitStatus status, - uint runtime) +void KpkReviewChanges::simulateFinished(PackageKit::Enum::Exit status) { - Q_UNUSED(runtime) - kDebug(); - if (status == Transaction::ExitSuccess) { - if (m_installPkgModel->rowCount() > 0) { - KpkRequirements *frm = new KpkRequirements(m_installPkgModel, this); - if (frm->exec() == QDialog::Accepted) { - installPackages(); - } else { - close(); + Transaction *trans = qobject_cast(sender()); + if (status == Enum::ExitSuccess) { + switch (trans->role()) { + case Enum::RoleSimulateRemovePackages: + { + if (d->removePkgModel->rowCount() > 0) { + QPointer frm = new KpkRequirements(d->removePkgModel, this); + if (frm->exec() == QDialog::Accepted) { + removePackages(); + } else { + reject(); + } + delete frm; + } else { + // As there was no requires don't allow deps removal + removePackages(false); + } } - } else { - installPackages(); - } - } else { - kDebug() << "Failed " << status; - installDone(); - } -} - -void KpkReviewChanges::simRemFinished(PackageKit::Transaction::ExitStatus status, uint runtime) -{ - Q_UNUSED(runtime) - kDebug(); - if (status == Transaction::ExitSuccess) { - if (m_removePkgModel->rowCount() > 0) { - KpkRequirements *frm = new KpkRequirements(m_removePkgModel, this); - if (frm->exec() == QDialog::Accepted) { - removePackages(); - } else { - close(); + break; + case Enum::RoleSimulateInstallPackages: + { + if (d->installPkgModel->rowCount() > 0) { + QPointer frm = new KpkRequirements(d->installPkgModel, this); + if (frm->exec() == QDialog::Accepted) { + installPackages(); + } else { + reject(); + } + delete frm; + } else { + installPackages(); + } } - } else { - // As there was no requires don't allow deps removal - removePackages(false); + break; + + default: + break; } } else { - kDebug() << "Failed " << status; - removeDone(); + taskDone(trans->role()); } } void KpkReviewChanges::installPackages() { - kDebug(); SET_PROXY - Transaction *t = m_client->installPackages(true, m_addPackages); + Transaction *t = d->client->installPackages(true, d->addPackages); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error()), i18n("Failed to install package")); - installDone(); + taskDone(Enum::RoleInstallPackages); } else { - KpkTransaction *frm = new KpkTransaction(t, KpkTransaction::CloseOnFinish | KpkTransaction::Modal, this); + QPointer frm = new KpkTransaction(t, KpkTransaction::CloseOnFinish | KpkTransaction::Modal, this); if (m_flags & ReturnOnlyWhenFinished) { connect(t, - SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + SIGNAL(finished(PackageKit::Enum::Exit, uint)), this, - SLOT(ensureInstallFinished(PackageKit::Transaction::ExitStatus, uint))); + SLOT(ensureTransactionFinished(PackageKit::Enum::Exit))); } else { - connect(frm, SIGNAL(kTransactionFinished(KpkTransaction::ExitStatus)), - this, SLOT(addFinished(KpkTransaction::ExitStatus))); + connect(frm, SIGNAL(requeue()), + this, SLOT(requeueTransaction())); } if (!(m_flags & HideProgress)) { - frm->show(); + // for modal dialogs to work correctly exec must be called + frm->exec(); + switch (frm->exitStatus()) { + case KpkTransaction::Success: + delete frm; + taskDone(Enum::RoleInstallPackages); + break; + case KpkTransaction::Cancelled: + delete frm; + slotButtonClicked(KDialog::Close); + break; + default: + delete frm; + } } } } void KpkReviewChanges::removePackages(bool allowDeps) { - kDebug(); SET_PROXY - Transaction *t = m_client->removePackages(m_remPackages, allowDeps, true); + Transaction *t = d->client->removePackages(d->remPackages, allowDeps, true); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error()), i18n("Failed to remove package")); - removeDone(); + taskDone(Enum::RoleRemovePackages); } else { - KpkTransaction *frm = new KpkTransaction(t, KpkTransaction::CloseOnFinish | KpkTransaction::Modal, this); + QPointer frm = new KpkTransaction(t, KpkTransaction::CloseOnFinish | KpkTransaction::Modal, this); frm->setAllowDeps(allowDeps); if (m_flags & ReturnOnlyWhenFinished) { connect(t, - SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + SIGNAL(finished(PackageKit::Enum::Exit, uint)), this, - SLOT(ensureRemoveFinished(PackageKit::Transaction::ExitStatus, uint))); + SLOT(ensureTransactionFinished(PackageKit::Enum::Exit))); } else { - connect(frm, SIGNAL(kTransactionFinished(KpkTransaction::ExitStatus)), - this, SLOT(remFinished(KpkTransaction::ExitStatus))); + connect(frm, SIGNAL(requeue()), + this, SLOT(requeueTransaction())); } if (!(m_flags & HideProgress)) { - frm->show(); + // for modal dialogs to work correctly exec must be called + frm->exec(); + switch (frm->exitStatus()) { + case KpkTransaction::Success: + delete frm; + taskDone(Enum::RoleRemovePackages); + break; + case KpkTransaction::Cancelled: + delete frm; + slotButtonClicked(KDialog::Close); + break; + default: + delete frm; + } } } } -void KpkReviewChanges::addFinished(KpkTransaction::ExitStatus status) +void KpkReviewChanges::requeueTransaction() { - kDebug() << status; - KpkTransaction *trans = (KpkTransaction *) sender(); - switch (status) { - case KpkTransaction::Success : - installDone(); - break; - case KpkTransaction::Failed : - case KpkTransaction::Cancelled : - slotButtonClicked(KDialog::Close); - break; - case KpkTransaction::ReQueue : - SET_PROXY - trans->setTransaction(m_client->installPackages(trans->onlyTrusted(), - m_addPackages)); - break; - } -} - -void KpkReviewChanges::remFinished(KpkTransaction::ExitStatus status) -{ - KpkTransaction *trans = (KpkTransaction *) sender(); - switch (status) { - case KpkTransaction::Success : - removeDone(); - break; - case KpkTransaction::Failed : - case KpkTransaction::Cancelled : - slotButtonClicked(KDialog::Close); - break; - case KpkTransaction::ReQueue : - SET_PROXY - trans->setTransaction(m_client->removePackages(m_remPackages, + KpkTransaction *trans = qobject_cast(sender()); + SET_PROXY + if (trans->role() == Enum::RoleRemovePackages) { + trans->setTransaction(d->client->removePackages(d->remPackages, trans->allowDeps(), AUTOREMOVE)); - break; + } else if (trans->role() == Enum::RoleInstallPackages) { + trans->setTransaction(d->client->installPackages(trans->onlyTrusted(), + d->addPackages)); } } -void KpkReviewChanges::ensureRemoveFinished(PackageKit::Transaction::ExitStatus status, - uint runtime) +void KpkReviewChanges::ensureTransactionFinished(PackageKit::Enum::Exit status) { - Q_UNUSED(runtime) - kDebug(); - if (status == Transaction::ExitSuccess) { - removeDone(); + Transaction *trans = qobject_cast(sender()); + if (status == Enum::ExitSuccess) { + taskDone(trans->role()); } else { slotButtonClicked(KDialog::Cancel); } } -void KpkReviewChanges::ensureInstallFinished(PackageKit::Transaction::ExitStatus status, - uint runtime) +void KpkReviewChanges::taskDone(PackageKit::Enum::Role role) { - Q_UNUSED(runtime) - kDebug(); - if (status == Transaction::ExitSuccess) { - installDone(); - } else { - slotButtonClicked(KDialog::Cancel); + if (role == Enum::RoleRemovePackages) { + d->remPackages.clear(); + } else if (role == Enum::RoleInstallPackages) { + d->addPackages.clear(); } -} - -void KpkReviewChanges::installDone() -{ - m_addPackages.clear(); - checkTask(); -} - -void KpkReviewChanges::removeDone() -{ - m_remPackages.clear(); checkTask(); } @@ -448,19 +450,19 @@ void KpkReviewChanges::updateColumnsWidth(bool force) { - m_viewWidth = d->ui.packageView->viewport()->width(); + int viewWidth = d->ui.packageView->viewport()->width(); if (force) { - m_viewWidth -= style()->pixelMetric(QStyle::PM_ScrollBarExtent) + UNIVERSAL_PADDING; + viewWidth -= style()->pixelMetric(QStyle::PM_ScrollBarExtent) + UNIVERSAL_PADDING; } - d->ui.packageView->setColumnWidth(0, m_pkgDelegate->columnWidth(0, m_viewWidth)); - d->ui.packageView->setColumnWidth(1, m_pkgDelegate->columnWidth(1, m_viewWidth)); + d->ui.packageView->setColumnWidth(0, d->pkgDelegate->columnWidth(0, viewWidth)); + d->ui.packageView->setColumnWidth(1, d->pkgDelegate->columnWidth(1, viewWidth)); } void KpkReviewChanges::checkChanged() { - if (m_pkgModelMain->selectedPackages().size() > 0) { + if (d->mainPkgModel->selectedPackages().size() > 0) { enableButtonApply(true); } else { enableButtonApply(false); diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkReviewChanges.h kpackagekit-0.6.0/libkpackagekit/KpkReviewChanges.h --- kpackagekit-0.5.4/libkpackagekit/KpkReviewChanges.h 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkReviewChanges.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,24 +22,21 @@ #define KPK_REVIEW_CHANGES_H #include -#include - -#include -#include -#include "KpkPackageModel.h" -#include "KpkSimulateModel.h" #include using namespace PackageKit; +class KpkDelegate; +class KpkTransaction; +class KpkSimulateModel; +class KpkPackageModel; class KpkReviewChangesPrivate; - class KDE_EXPORT KpkReviewChanges : public KDialog { Q_OBJECT public: - explicit KpkReviewChanges(const QList &packages, QWidget *parent = 0); + explicit KpkReviewChanges(const QList > &packages, QWidget *parent = 0); ~KpkReviewChanges(); enum OperationMode { @@ -58,14 +55,9 @@ int exec(OperationModes flags = 0); private slots: - void remFinished(KpkTransaction::ExitStatus); - void addFinished(KpkTransaction::ExitStatus); - - void simRemFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void simInstFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - - void ensureRemoveFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void ensureInstallFinished(PackageKit::Transaction::ExitStatus status, uint runtime); + void requeueTransaction(); + void simulateFinished(PackageKit::Enum::Exit status); + void ensureTransactionFinished(PackageKit::Enum::Exit status); void doAction(); void checkChanged(); @@ -73,29 +65,12 @@ private: void installPackages(); void removePackages(bool allow_deps = true); - - void installDone(); - void removeDone(); - - KpkReviewChangesPrivate *d; - KpkPackageModel *m_pkgModelMain; - KpkSimulateModel *m_installPkgModel, *m_removePkgModel; - KpkDelegate *m_pkgDelegate; - - Client *m_client; - Transaction *m_transactionReq; - Transaction *m_transactionDep; - QTimer m_notifyT; - int m_viewWidth; + void taskDone(PackageKit::Enum::Role role); void updateColumnsWidth(bool force = false); void checkTask(); - QList m_remPackages; - QList m_addPackages; - QList m_reqDepPackages; - - Client::Actions m_actions; + KpkReviewChangesPrivate *d; OperationModes m_flags; protected slots: diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkSimplePackageModel.cpp kpackagekit-0.6.0/libkpackagekit/KpkSimplePackageModel.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkSimplePackageModel.cpp 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkSimplePackageModel.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -31,26 +31,13 @@ setSortRole(Qt::DisplayRole); } -void KpkSimplePackageModel::addPackage(PackageKit::Package *p) +void KpkSimplePackageModel::addPackage(QSharedPointer p) { QStandardItem *item = new QStandardItem; item->setText(p->name() + " - " + p->version() + (p->arch().isNull() ? NULL : " (" + p->arch() + ')')); - item->setIcon(KpkIcons::packageIcon(p->state())); + item->setIcon(KpkIcons::packageIcon(p->info())); item->setSelectable(false); item->setEditable(false); item->setToolTip(p->summary()); appendRow(item); } - -void KpkSimplePackageModel::addPackages(const QList &pkgs) -{ - QStandardItem *item = new QStandardItem; - foreach (const PackageKit::Package *p, pkgs) { - item->setText(p->name() + " - " + p->version() + (p->arch().isNull() ? NULL : " (" + p->arch() + ')')); - item->setIcon(KpkIcons::packageIcon(p->state())); - item->setSelectable(false); - item->setEditable(false); - item->setToolTip(p->summary()); - appendRow(item); - } -} diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkSimplePackageModel.h kpackagekit-0.6.0/libkpackagekit/KpkSimplePackageModel.h --- kpackagekit-0.5.4/libkpackagekit/KpkSimplePackageModel.h 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkSimplePackageModel.h 2010-03-19 21:14:59.000000000 +0000 @@ -36,8 +36,7 @@ KpkSimplePackageModel(QObject *parent = 0); public slots: - void addPackage(PackageKit::Package *package); - void addPackages(const QList &pkgs); + void addPackage(QSharedPointer package); }; #endif diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkSimulateModel.cpp kpackagekit-0.6.0/libkpackagekit/KpkSimulateModel.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkSimulateModel.cpp 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkSimulateModel.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -26,9 +26,11 @@ using namespace PackageKit; -KpkSimulateModel::KpkSimulateModel(QObject *parent) +KpkSimulateModel::KpkSimulateModel(QObject *parent, + QList > skipPackages) : QAbstractTableModel(parent), - m_currentState(Package::UnknownState) + m_skipPackages(skipPackages), + m_currentInfo(Enum::UnknownInfo) { // setSortRole(Qt::DisplayRole); } @@ -36,12 +38,12 @@ QVariant KpkSimulateModel::data(const QModelIndex &index, int role) const { if (!index.isValid() || - m_currentState == Package::UnknownState || - index.row() >= m_packages[m_currentState].size()) { + m_currentInfo == Enum::UnknownInfo || + index.row() >= m_packages[m_currentInfo].size()) { return QVariant(); } - Package *p = m_packages[m_currentState].at(index.row()); + QSharedPointerp = m_packages[m_currentInfo].at(index.row()); switch(index.column()) { case 0: switch (role) { @@ -64,49 +66,57 @@ return QVariant(); } -Package::State KpkSimulateModel::currentState() const +Enum::Info KpkSimulateModel::currentInfo() const { - return m_currentState; + return m_currentInfo; } -void KpkSimulateModel::setCurrentState(Package::State currentState) +void KpkSimulateModel::setCurrentInfo(Enum::Info currentInfo) { - m_currentState = currentState; + m_currentInfo = currentInfo; reset(); } -int KpkSimulateModel::countState(Package::State state) +int KpkSimulateModel::countInfo(Enum::Info info) { - if (m_packages.contains(state)) { - return m_packages[state].size(); + if (m_packages.contains(info)) { + return m_packages[info].size(); } else { return 0; } } -void KpkSimulateModel::addPackage(PackageKit::Package *p) +void KpkSimulateModel::addPackage(QSharedPointer p) { - if (p->state() == Package::StateFinished) { + if (p->info() == Enum::InfoFinished) { return; } - if (m_currentState == Package::UnknownState) { - m_currentState = p->state(); + + foreach (const QSharedPointer pkg, m_skipPackages) { + if (pkg->id() == p->id()) { + // found a package to skip + return; + } + } + + if (m_currentInfo == Enum::UnknownInfo) { + m_currentInfo = p->info(); } - m_packages[p->state()].append(p); + m_packages[p->info()].append(p); } int KpkSimulateModel::rowCount(const QModelIndex &parent) const { - if (parent.isValid() && m_currentState == Package::UnknownState) { + if (parent.isValid() && m_currentInfo == Enum::UnknownInfo) { return 0; } else { - return m_packages[m_currentState].size(); + return m_packages[m_currentInfo].size(); } } int KpkSimulateModel::columnCount(const QModelIndex &parent) const { - if (parent.isValid() && m_currentState == Package::UnknownState) { + if (parent.isValid() && m_currentInfo == Enum::UnknownInfo) { return 0; } else { return 2; @@ -130,6 +140,6 @@ void KpkSimulateModel::clear() { m_packages.clear(); - m_currentState = Package::UnknownState; + m_currentInfo = Enum::UnknownInfo; reset(); } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkSimulateModel.h kpackagekit-0.6.0/libkpackagekit/KpkSimulateModel.h --- kpackagekit-0.5.4/libkpackagekit/KpkSimulateModel.h 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkSimulateModel.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -33,24 +33,26 @@ Q_OBJECT public: - KpkSimulateModel(QObject *parent = 0); + explicit KpkSimulateModel(QObject *parent = 0, + QList > skipPackages = QList >()); int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; - Package::State currentState() const; - void setCurrentState(Package::State currentState); - int countState(Package::State state); + Enum::Info currentInfo() const; + void setCurrentInfo(Enum::Info currentInfo); + int countInfo(Enum::Info info); void clear(); public slots: - void addPackage(PackageKit::Package *package); + void addPackage(QSharedPointer package); private: - QHash > m_packages; - Package::State m_currentState; + QHash > > m_packages; + QList > m_skipPackages; + Enum::Info m_currentInfo; }; #endif diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkStrings.cpp kpackagekit-0.6.0/libkpackagekit/KpkStrings.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkStrings.cpp 2009-11-17 14:49:52.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkStrings.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -24,118 +24,119 @@ #include -QString KpkStrings::status(PackageKit::Transaction::Status status) +QString KpkStrings::status(PackageKit::Enum::Status status) { switch (status) { - case Transaction::UnknownStatus : + case Enum::LastStatus : + case Enum::UnknownStatus : return i18nc("This is when the transaction status is not known", "Unknown state"); - case Transaction::StatusSetup : + case Enum::StatusSetup : return i18nc("transaction state, the daemon is in the process of starting", "Waiting for service to start"); - case Transaction::StatusWait : + case Enum::StatusWait : return i18nc("transaction state, the transaction is waiting for another to complete", "Waiting for other tasks"); - case Transaction::StatusRunning : + case Enum::StatusRunning : return i18nc("transaction state, just started", "Running task"); - case Transaction::StatusQuery : + case Enum::StatusQuery : return i18nc("transaction state, is querying data", "Querying"); - case Transaction::StatusInfo : + case Enum::StatusInfo : return i18nc("transaction state, getting data from a server", "Getting information"); - case Transaction::StatusRemove : + case Enum::StatusRemove : return i18nc("transaction state, removing packages", "Removing packages"); - case Transaction::StatusDownload : + case Enum::StatusDownload : return i18nc("transaction state, downloading package files", "Downloading packages"); - case Transaction::StatusInstall : + case Enum::StatusInstall : return i18nc("transaction state, installing packages", "Installing packages"); - case Transaction::StatusRefreshCache : + case Enum::StatusRefreshCache : return i18nc("transaction state, refreshing internal lists", "Refreshing software list"); - case Transaction::StatusUpdate : + case Enum::StatusUpdate : return i18nc("transaction state, installing updates", "Updating packages"); - case Transaction::StatusCleanup : + case Enum::StatusCleanup : return i18nc("transaction state, removing old packages, and cleaning config files", "Cleaning up packages"); - case Transaction::StatusObsolete : + case Enum::StatusObsolete : return i18nc("transaction state, obsoleting old packages", "Obsoleting packages"); - case Transaction::StatusDepResolve : + case Enum::StatusDepResolve : return i18nc("transaction state, checking the transaction before we do it", "Resolving dependencies"); - case Transaction::StatusSigCheck : + case Enum::StatusSigCheck : return i18nc("transaction state, checking if we have all the security keys for the operation", "Checking signatures"); - case Transaction::StatusRollback : + case Enum::StatusRollback : return i18nc("transaction state, when we return to a previous system state", "Rolling back"); - case Transaction::StatusTestCommit : + case Enum::StatusTestCommit : return i18nc("transaction state, when we're doing a test transaction", "Testing changes"); - case Transaction::StatusCommit : + case Enum::StatusCommit : return i18nc("transaction state, when we're writing to the system package database", "Committing changes"); - case Transaction::StatusRequest : + case Enum::StatusRequest : return i18nc("transaction state, requesting data from a server", "Requesting data"); - case Transaction::StatusFinished : + case Enum::StatusFinished : return i18nc("transaction state, all done!", "Finished"); - case Transaction::StatusCancel : + case Enum::StatusCancel : return i18nc("transaction state, in the process of cancelling", "Cancelling"); - case Transaction::StatusDownloadRepository : + case Enum::StatusDownloadRepository : return i18nc("transaction state, downloading metadata", "Downloading repository information"); - case Transaction::StatusDownloadPackagelist : + case Enum::StatusDownloadPackagelist : return i18nc("transaction state, downloading metadata", "Downloading list of packages"); - case Transaction::StatusDownloadFilelist : + case Enum::StatusDownloadFilelist : return i18nc("transaction state, downloading metadata", "Downloading file lists"); - case Transaction::StatusDownloadChangelog : + case Enum::StatusDownloadChangelog : return i18nc("transaction state, downloading metadata", "Downloading lists of changes"); - case Transaction::StatusDownloadGroup : + case Enum::StatusDownloadGroup : return i18nc("transaction state, downloading metadata", "Downloading groups"); - case Transaction::StatusDownloadUpdateinfo : + case Enum::StatusDownloadUpdateinfo : return i18nc("transaction state, downloading metadata", "Downloading update information"); - case Transaction::StatusRepackaging : + case Enum::StatusRepackaging : return i18nc("transaction state, repackaging delta files", "Repackaging files"); - case Transaction::StatusLoadingCache : + case Enum::StatusLoadingCache : return i18nc("transaction state, loading databases", "Loading cache"); - case Transaction::StatusScanApplications : + case Enum::StatusScanApplications : return i18nc("transaction state, scanning for running processes", "Scanning installed applications"); - case Transaction::StatusGeneratePackageList : + case Enum::StatusGeneratePackageList : return i18nc("transaction state, generating a list of packages installed on the system", "Generating package lists"); - case Transaction::StatusWaitingForLock : + case Enum::StatusWaitingForLock : return i18nc("transaction state, when we're waiting for the native tools to exit", "Waiting for package manager lock"); - case Transaction::StatusWaitingForAuth : + case Enum::StatusWaitingForAuth : return i18nc("waiting for user to type in a password", "Waiting for authentication"); - case Transaction::StatusScanProcessList : + case Enum::StatusScanProcessList : return i18nc("we are updating the list of processes", "Updating the list of running applications"); - case Transaction::StatusCheckExecutableFiles : + case Enum::StatusCheckExecutableFiles : return i18nc("we are checking executable files in use", "Checking for applications currently in use"); - case Transaction::StatusCheckLibraries : + case Enum::StatusCheckLibraries : return i18nc("we are checking for libraries in use", "Checking for libraries currently in use"); - case Transaction::StatusCopyFiles : + case Enum::StatusCopyFiles : return i18nc("we are copying package files to prepare to install", "Copying files"); } @@ -143,20 +144,20 @@ return QString(); } -QString KpkStrings::statusPast(PackageKit::Transaction::Status status) +QString KpkStrings::statusPast(PackageKit::Enum::Status status) { switch (status) { - case Transaction::StatusDownload: + case Enum::StatusDownload: return i18nc("The action of the package, in past tense", "Downloaded"); - case Transaction::StatusUpdate: + case Enum::StatusUpdate: return i18nc("The action of the package, in past tense", "Updated"); - case Transaction::StatusInstall: + case Enum::StatusInstall: return i18nc("The action of the package, in past tense", "Installed"); - case Transaction::StatusRemove: + case Enum::StatusRemove: return i18nc("The action of the package, in past tense", "Removed"); - case Transaction::StatusCleanup: + case Enum::StatusCleanup: return i18nc("The action of the package, in past tense", "Cleaned Up"); - case Transaction::StatusObsolete: + case Enum::StatusObsolete: return i18nc("The action of the package, in past tense", "Obsoleted"); default : // In this case we don't want to map all enums kWarning() << "status unrecognised: " << status; @@ -164,450 +165,463 @@ } } -QString KpkStrings::action(Client::Action action) +QString KpkStrings::action(Enum::Role action) { switch (action) { - case Client::UnknownAction : + case Enum::LastRole : + case Enum::UnknownRole : return i18nc("The role of the transaction, in present tense", "Unknown role type"); - case Client::ActionGetDepends : + case Enum::RoleGetDepends : return i18nc("The role of the transaction, in present tense", "Getting dependencies"); - case Client::ActionGetUpdateDetail : + case Enum::RoleGetUpdateDetail : return i18nc("The role of the transaction, in present tense", "Getting update detail"); - case Client::ActionGetDetails : + case Enum::RoleGetDetails : return i18nc("The role of the transaction, in present tense", "Getting details"); - case Client::ActionGetRequires : + case Enum::RoleGetRequires : return i18nc("The role of the transaction, in present tense", "Getting requires"); - case Client::ActionGetUpdates : + case Enum::RoleGetUpdates : return i18nc("The role of the transaction, in present tense", "Getting updates"); - case Client::ActionSearchDetails : + case Enum::RoleSearchDetails : return i18nc("The role of the transaction, in present tense", "Searching details"); - case Client::ActionSearchFile : + case Enum::RoleSearchFile : return i18nc("The role of the transaction, in present tense", "Searching for file"); - case Client::ActionSearchGroup : + case Enum::RoleSearchGroup : return i18nc("The role of the transaction, in present tense", "Searching groups"); - case Client::ActionSearchName : + case Enum::RoleSearchName : return i18nc("The role of the transaction, in present tense", "Searching by package name"); - case Client::ActionRemovePackages : + case Enum::RoleRemovePackages : return i18nc("The role of the transaction, in present tense", "Removing"); - case Client::ActionInstallPackages : + case Enum::RoleInstallPackages : return i18nc("The role of the transaction, in present tense", "Installing"); - case Client::ActionInstallFiles : + case Enum::RoleInstallFiles : return i18nc("The role of the transaction, in present tense", "Installing file"); - case Client::ActionRefreshCache : + case Enum::RoleRefreshCache : return i18nc("The role of the transaction, in present tense", "Refreshing package cache"); - case Client::ActionUpdatePackages : + case Enum::RoleUpdatePackages : return i18nc("The role of the transaction, in present tense", "Updating packages"); - case Client::ActionUpdateSystem : + case Enum::RoleUpdateSystem : return i18nc("The role of the transaction, in present tense", "Updating system"); - case Client::ActionCancel : + case Enum::RoleCancel : return i18nc("The role of the transaction, in present tense", "Canceling"); - case Client::ActionRollback : + case Enum::RoleRollback : return i18nc("The role of the transaction, in present tense", "Rolling back"); - case Client::ActionGetRepoList : + case Enum::RoleGetRepoList : return i18nc("The role of the transaction, in present tense", "Getting list of repositories"); - case Client::ActionRepoEnable : + case Enum::RoleRepoEnable : return i18nc("The role of the transaction, in present tense", "Enabling repository"); - case Client::ActionRepoSetData : + case Enum::RoleRepoSetData : return i18nc("The role of the transaction, in present tense", "Setting repository data"); - case Client::ActionResolve : + case Enum::RoleResolve : return i18nc("The role of the transaction, in present tense", "Resolving"); - case Client::ActionGetFiles : + case Enum::RoleGetFiles : return i18nc("The role of the transaction, in present tense", "Getting file list"); - case Client::ActionWhatProvides : + case Enum::RoleWhatProvides : return i18nc("The role of the transaction, in present tense", "Getting what provides"); - case Client::ActionInstallSignature : + case Enum::RoleInstallSignature : return i18nc("The role of the transaction, in present tense", "Installing signature"); - case Client::ActionGetPackages : + case Enum::RoleGetPackages : return i18nc("The role of the transaction, in present tense", "Getting package lists"); - case Client::ActionAcceptEula : + case Enum::RoleAcceptEula : return i18nc("The role of the transaction, in present tense", "Accepting EULA"); - case Client::ActionDownloadPackages : + case Enum::RoleDownloadPackages : return i18nc("The role of the transaction, in present tense", "Downloading packages"); - case Client::ActionGetDistroUpgrades : + case Enum::RoleGetDistroUpgrades : return i18nc("The role of the transaction, in present tense", "Getting distribution upgrade information"); - case Client::ActionGetCategories : + case Enum::RoleGetCategories : return i18nc("The role of the transaction, in present tense", "Getting categories"); - case Client::ActionGetOldTransactions : + case Enum::RoleGetOldTransactions : return i18nc("The role of the transaction, in present tense", "Getting old transactions"); - case Client::ActionSimulateInstallFiles : + case Enum::RoleSimulateInstallFiles : return i18nc("The role of the transaction, in present tense", "Simulating the install of files"); - case Client::ActionSimulateInstallPackages : + case Enum::RoleSimulateInstallPackages : return i18nc("The role of the transaction, in present tense", "Simulating the install"); - case Client::ActionSimulateRemovePackages : + case Enum::RoleSimulateRemovePackages : return i18nc("The role of the transaction, in present tense", "Simulating the remove"); - case Client::ActionSimulateUpdatePackages : + case Enum::RoleSimulateUpdatePackages : return i18nc("The role of the transaction, in present tense", "Simulating the update"); } kWarning() << "action unrecognised: " << action; return QString(); } -QString KpkStrings::actionPast(Client::Action action) +QString KpkStrings::actionPast(Enum::Role action) { switch (action) { - case Client::UnknownAction : + case Enum::LastRole : + case Enum::UnknownRole : return i18nc("The role of the transaction, in past tense", "Unknown role type"); - case Client::ActionGetDepends : + case Enum::RoleGetDepends : return i18nc("The role of the transaction, in past tense", "Got dependencies"); - case Client::ActionGetUpdateDetail : + case Enum::RoleGetUpdateDetail : return i18nc("The role of the transaction, in past tense", "Got update detail"); - case Client::ActionGetDetails : + case Enum::RoleGetDetails : return i18nc("The role of the transaction, in past tense", "Got details"); - case Client::ActionGetRequires : + case Enum::RoleGetRequires : return i18nc("The role of the transaction, in past tense", "Got requires"); - case Client::ActionGetUpdates : + case Enum::RoleGetUpdates : return i18nc("The role of the transaction, in past tense", "Got updates"); - case Client::ActionSearchDetails : + case Enum::RoleSearchDetails : return i18nc("The role of the transaction, in past tense", "Searched for package details"); - case Client::ActionSearchFile : + case Enum::RoleSearchFile : return i18nc("The role of the transaction, in past tense", "Searched for file"); - case Client::ActionSearchGroup : + case Enum::RoleSearchGroup : return i18nc("The role of the transaction, in past tense", "Searched groups"); - case Client::ActionSearchName : + case Enum::RoleSearchName : return i18nc("The role of the transaction, in past tense", "Searched for package name"); - case Client::ActionRemovePackages : + case Enum::RoleRemovePackages : return i18nc("The role of the transaction, in past tense", "Removed packages"); - case Client::ActionInstallPackages : + case Enum::RoleInstallPackages : return i18nc("The role of the transaction, in past tense", "Installed packages"); - case Client::ActionInstallFiles : + case Enum::RoleInstallFiles : return i18nc("The role of the transaction, in past tense", "Installed local files"); - case Client::ActionRefreshCache : + case Enum::RoleRefreshCache : return i18nc("The role of the transaction, in past tense", "Refreshed package cache"); - case Client::ActionUpdatePackages : + case Enum::RoleUpdatePackages : return i18nc("The role of the transaction, in past tense", "Updated packages"); - case Client::ActionUpdateSystem : + case Enum::RoleUpdateSystem : return i18nc("The role of the transaction, in past tense", "Updated system"); - case Client::ActionCancel : + case Enum::RoleCancel : return i18nc("The role of the transaction, in past tense", "Canceled"); - case Client::ActionRollback : + case Enum::RoleRollback : return i18nc("The role of the transaction, in past tense", "Rolled back"); - case Client::ActionGetRepoList : + case Enum::RoleGetRepoList : return i18nc("The role of the transaction, in past tense", "Got list of repositories"); - case Client::ActionRepoEnable : + case Enum::RoleRepoEnable : return i18nc("The role of the transaction, in past tense", "Enabled repository"); - case Client::ActionRepoSetData : + case Enum::RoleRepoSetData : return i18nc("The role of the transaction, in past tense", "Set repository data"); - case Client::ActionResolve : + case Enum::RoleResolve : return i18nc("The role of the transaction, in past tense", "Resolved"); - case Client::ActionGetFiles : + case Enum::RoleGetFiles : return i18nc("The role of the transaction, in past tense", "Got file list"); - case Client::ActionWhatProvides : + case Enum::RoleWhatProvides : return i18nc("The role of the transaction, in past tense", "Got what provides"); - case Client::ActionInstallSignature : + case Enum::RoleInstallSignature : return i18nc("The role of the transaction, in past tense", "Installed signature"); - case Client::ActionGetPackages : + case Enum::RoleGetPackages : return i18nc("The role of the transaction, in past tense", "Got package lists"); - case Client::ActionAcceptEula : + case Enum::RoleAcceptEula : return i18nc("The role of the transaction, in past tense", "Accepted EULA"); - case Client::ActionDownloadPackages : + case Enum::RoleDownloadPackages : return i18nc("The role of the transaction, in past tense", "Downloaded packages"); - case Client::ActionGetDistroUpgrades : + case Enum::RoleGetDistroUpgrades : return i18nc("The role of the transaction, in past tense", "Got distribution upgrades"); - case Client::ActionGetCategories : + case Enum::RoleGetCategories : return i18nc("The role of the transaction, in past tense", "Got categories"); - case Client::ActionGetOldTransactions : + case Enum::RoleGetOldTransactions : return i18nc("The role of the transaction, in past tense", "Got old transactions"); - case Client::ActionSimulateInstallFiles : + case Enum::RoleSimulateInstallFiles : return i18nc("The role of the transaction, in past tense", "Simulated the install of files"); - case Client::ActionSimulateInstallPackages : + case Enum::RoleSimulateInstallPackages : return i18nc("The role of the transaction, in past tense", "Simulated the install"); - case Client::ActionSimulateRemovePackages : + case Enum::RoleSimulateRemovePackages : return i18nc("The role of the transaction, in past tense", "Simulated the remove"); - case Client::ActionSimulateUpdatePackages : + case Enum::RoleSimulateUpdatePackages : return i18nc("The role of the transaction, in past tense", "Simulated the update"); } kWarning() << "action unrecognised: " << action; return QString(); } -QString KpkStrings::error(PackageKit::Client::ErrorType error) +QString KpkStrings::error(PackageKit::Enum::Error error) { switch (error) { - case Client::ErrorNoNetwork : + case Enum::ErrorNoNetwork : return i18n("No network connection available"); - case Client::ErrorNoCache : + case Enum::ErrorNoCache : return i18n("No package cache is available"); - case Client::ErrorOom : + case Enum::ErrorOom : return i18n("Out of memory"); - case Client::ErrorCreateThreadFailed : + case Enum::ErrorCreateThreadFailed : return i18n("Failed to create a thread"); - case Client::ErrorNotSupported : + case Enum::ErrorNotSupported : return i18n("Not supported by this backend"); - case Client::ErrorInternalError : + case Enum::ErrorInternalError : return i18n("An internal system error has occurred"); - case Client::ErrorGpgFailure : + case Enum::ErrorGpgFailure : return i18n("A security trust relationship is not present"); - case Client::ErrorPackageNotInstalled : + case Enum::ErrorPackageNotInstalled : return i18n("The package is not installed"); - case Client::ErrorPackageNotFound : + case Enum::ErrorPackageNotFound : return i18n("The package was not found"); - case Client::ErrorPackageAlreadyInstalled : + case Enum::ErrorPackageAlreadyInstalled : return i18n("The package is already installed"); - case Client::ErrorPackageDownloadFailed : + case Enum::ErrorPackageDownloadFailed : return i18n("The package download failed"); - case Client::ErrorGroupNotFound : + case Enum::ErrorGroupNotFound : return i18n("The group was not found"); - case Client::ErrorGroupListInvalid : + case Enum::ErrorGroupListInvalid : return i18n("The group list was invalid"); - case Client::ErrorDepResolutionFailed : + case Enum::ErrorDepResolutionFailed : return i18n("Dependency resolution failed"); - case Client::ErrorFilterInvalid : + case Enum::ErrorFilterInvalid : return i18n("Search filter was invalid"); - case Client::ErrorPackageIdInvalid : + case Enum::ErrorPackageIdInvalid : return i18n("The package identifier was not well formed"); - case Client::ErrorTransactionError : + case Enum::ErrorTransactionError : return i18n("Transaction error"); - case Client::ErrorRepoNotFound : + case Enum::ErrorRepoNotFound : return i18n("Repository name was not found"); - case Client::ErrorCannotRemoveSystemPackage : + case Enum::ErrorCannotRemoveSystemPackage : return i18n("Could not remove a protected system package"); - case Client::ErrorTransactionCancelled : + case Enum::ErrorTransactionCancelled : return i18n("The task was canceled"); - case Client::ErrorProcessKill : + case Enum::ErrorProcessKill : return i18n("The task was forcibly canceled"); - case Client::ErrorFailedConfigParsing : + case Enum::ErrorFailedConfigParsing : return i18n("Reading the config file failed"); - case Client::ErrorCannotCancel : + case Enum::ErrorCannotCancel : return i18n("The task cannot be cancelled"); - case Client::ErrorCannotInstallSourcePackage : + case Enum::ErrorCannotInstallSourcePackage : return i18n("Source packages cannot be installed"); - case Client::ErrorNoLicenseAgreement : + case Enum::ErrorNoLicenseAgreement : return i18n("The license agreement failed"); - case Client::ErrorFileConflicts : + case Enum::ErrorFileConflicts : return i18n("Local file conflict between packages"); - case Client::ErrorPackageConflicts : + case Enum::ErrorPackageConflicts : return i18n("Packages are not compatible"); - case Client::ErrorRepoNotAvailable : + case Enum::ErrorRepoNotAvailable : return i18n("Problem connecting to a software origin"); - case Client::ErrorFailedInitialization : + case Enum::ErrorFailedInitialization : return i18n("Failed to initialize"); - case Client::ErrorFailedFinalise : + case Enum::ErrorFailedFinalise : return i18n("Failed to finalize"); - case Client::ErrorCannotGetLock : + case Enum::ErrorCannotGetLock : return i18n("Cannot get lock"); - case Client::ErrorNoPackagesToUpdate : + case Enum::ErrorNoPackagesToUpdate : return i18n("No packages to update"); - case Client::ErrorCannotWriteRepoConfig : + case Enum::ErrorCannotWriteRepoConfig : return i18n("Cannot write repository configuration"); - case Client::ErrorLocalInstallFailed : + case Enum::ErrorLocalInstallFailed : return i18n("Local install failed"); - case Client::ErrorBadGpgSignature : + case Enum::ErrorBadGpgSignature : return i18n("Bad GPG signature"); - case Client::ErrorMissingGpgSignature : + case Enum::ErrorMissingGpgSignature : return i18n("Missing GPG signature"); - case Client::ErrorRepoConfigurationError : + case Enum::ErrorRepoConfigurationError : return i18n("Repository configuration invalid"); - case Client::ErrorInvalidPackageFile : + case Enum::ErrorInvalidPackageFile : return i18n("Invalid package file"); - case Client::ErrorPackageInstallBlocked : + case Enum::ErrorPackageInstallBlocked : return i18n("Package install blocked"); - case Client::ErrorPackageCorrupt : + case Enum::ErrorPackageCorrupt : return i18n("Package is corrupt"); - case Client::ErrorAllPackagesAlreadyInstalled : + case Enum::ErrorAllPackagesAlreadyInstalled : return i18n("All packages are already installed"); - case Client::ErrorFileNotFound : + case Enum::ErrorFileNotFound : return i18n("The specified file could not be found"); - case Client::ErrorNoMoreMirrorsToTry : + case Enum::ErrorNoMoreMirrorsToTry : return i18n("No more mirrors are available"); - case Client::ErrorNoDistroUpgradeData : + case Enum::ErrorNoDistroUpgradeData : return i18n("No distribution upgrade data is available"); - case Client::ErrorIncompatibleArchitecture : + case Enum::ErrorIncompatibleArchitecture : return i18n("Package is incompatible with this system"); - case Client::ErrorNoSpaceOnDevice : + case Enum::ErrorNoSpaceOnDevice : return i18n("No space is left on the disk"); - case Client::ErrorMediaChangeRequired : + case Enum::ErrorMediaChangeRequired : return i18n("A media change is required"); - case Client::ErrorNotAuthorized : + case Enum::ErrorNotAuthorized : return i18n("Authorization failed"); - case Client::ErrorUpdateNotFound : + case Enum::ErrorUpdateNotFound : return i18n("Update not found"); - case Client::ErrorCannotInstallRepoUnsigned : + case Enum::ErrorCannotInstallRepoUnsigned : return i18n("Cannot install from untrusted origin"); - case Client::ErrorCannotUpdateRepoUnsigned : + case Enum::ErrorCannotUpdateRepoUnsigned : return i18n("Cannot update from untrusted origin"); - case Client::ErrorCannotGetFilelist : + case Enum::ErrorCannotGetFilelist : return i18n("Cannot get the file list"); - case Client::ErrorCannotGetRequires : + case Enum::ErrorCannotGetRequires : return i18n("Cannot get package requires"); - case Client::ErrorCannotDisableRepository : + case Enum::ErrorCannotDisableRepository : return i18n("Cannot disable origin"); - case Client::ErrorRestrictedDownload : + case Enum::ErrorRestrictedDownload : return i18n("The download failed"); - case Client::ErrorPackageFailedToConfigure : + case Enum::ErrorPackageFailedToConfigure : return i18n("Package failed to configure"); - case Client::ErrorPackageFailedToBuild : + case Enum::ErrorPackageFailedToBuild : return i18n("Package failed to build"); - case Client::ErrorPackageFailedToInstall : + case Enum::ErrorPackageFailedToInstall : return i18n("Package failed to install"); - case Client::ErrorPackageFailedToRemove : + case Enum::ErrorPackageFailedToRemove : return i18n("Package failed to be removed"); - case Client::UnknownErrorType : + case Enum::ErrorUpdateFailedDueToRunningProcess : + return i18n("Update failed due to running process"); + case Enum::ErrorPackageDatabaseChanged : + return i18n("The package database was changed"); + case Enum::LastError : + case Enum::UnknownError : return i18n("Unknown error"); } kWarning() << "error unrecognised: " << error; return QString(); } -QString KpkStrings::errorMessage(PackageKit::Client::ErrorType error) +QString KpkStrings::errorMessage(PackageKit::Enum::Error error) { switch (error) { - case Client::ErrorNoNetwork : + case Enum::ErrorNoNetwork : return i18n("There is no network connection available.\n" "Please check your connection settings and try again"); - case Client::ErrorNoCache : + case Enum::ErrorNoCache : return i18n("The package list needs to be rebuilt.\n" "This should have been done by the backend automatically."); - case Client::ErrorOom : + case Enum::ErrorOom : return i18n("The service that is responsible for handling user requests is out of memory.\n" "Please close some programs or restart your computer."); - case Client::ErrorCreateThreadFailed : + case Enum::ErrorCreateThreadFailed : return i18n("A thread could not be created to service the user request."); - case Client::ErrorNotSupported : + case Enum::ErrorNotSupported : return i18n("The action is not supported by this backend.\n" "Please report a bug as this should not have happened."); - case Client::ErrorInternalError : + case Enum::ErrorInternalError : return i18n("A problem that we were not expecting has occurred.\n" "Please report this bug with the error description."); - case Client::ErrorGpgFailure : + case Enum::ErrorGpgFailure : return i18n("A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings."); - case Client::ErrorPackageNotInstalled : + case Enum::ErrorPackageNotInstalled : return i18n("The package that is trying to be removed or updated is not already installed."); - case Client::ErrorPackageNotFound : + case Enum::ErrorPackageNotFound : return i18n("The package that is being modified was not found on your system or in any software origin."); - case Client::ErrorPackageAlreadyInstalled : + case Enum::ErrorPackageAlreadyInstalled : return i18n("The package that is trying to be installed is already installed."); - case Client::ErrorPackageDownloadFailed : + case Enum::ErrorPackageDownloadFailed : return i18n("The package download failed.\n" "Please check your network connectivity."); - case Client::ErrorGroupNotFound : + case Enum::ErrorGroupNotFound : return i18n("The group type was not found.\n" "Please check your group list and try again."); - case Client::ErrorGroupListInvalid : + case Enum::ErrorGroupListInvalid : return i18n("The group list could not be loaded.\n" "Refreshing your cache may help, although this is normally a software " "origin error."); - case Client::ErrorDepResolutionFailed : + case Enum::ErrorDepResolutionFailed : return i18n("A package dependency could not be found.\n" "More information is available in the detailed report."); - case Client::ErrorFilterInvalid : + case Enum::ErrorFilterInvalid : return i18n("The search filter was not correctly formed."); - case Client::ErrorPackageIdInvalid : + case Enum::ErrorPackageIdInvalid : return i18n("The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported."); - case Client::ErrorTransactionError : + case Enum::ErrorTransactionError : return i18n("An error occurred while running the transaction.\n" "More information is available in the detailed report."); - case Client::ErrorRepoNotFound : + case Enum::ErrorRepoNotFound : return i18n("The remote software origin name was not found.\n" "You may need to enable an item in Software Origins."); - case Client::ErrorCannotRemoveSystemPackage : + case Enum::ErrorCannotRemoveSystemPackage : return i18n("Removing a protected system package is not allowed."); - case Client::ErrorTransactionCancelled : + case Enum::ErrorTransactionCancelled : return i18n("The task was canceled successfully and no packages were changed."); - case Client::ErrorProcessKill : + case Enum::ErrorProcessKill : return i18n("The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly."); - case Client::ErrorFailedConfigParsing : + case Enum::ErrorFailedConfigParsing : return i18n("The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid."); - case Client::ErrorCannotCancel : + case Enum::ErrorCannotCancel : return i18n("The task is not safe to be cancelled at this time."); - case Client::ErrorCannotInstallSourcePackage : + case Enum::ErrorCannotInstallSourcePackage : return i18n("Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install."); - case Client::ErrorNoLicenseAgreement : + case Enum::ErrorNoLicenseAgreement : return i18n("The license agreement was not agreed to.\n" "To use this software you have to accept the license."); - case Client::ErrorFileConflicts : + case Enum::ErrorFileConflicts : return i18n("Two packages provide the same file.\n" "This is usually due to mixing packages for different software origins."); - case Client::ErrorPackageConflicts : + case Enum::ErrorPackageConflicts : return i18n("Multiple packages exist that are not compatible with each other.\n" "This is usually due to mixing packages from different software origins."); - case Client::ErrorRepoNotAvailable : + case Enum::ErrorRepoNotAvailable : return i18n("There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details."); - case Client::ErrorFailedInitialization : + case Enum::ErrorFailedInitialization : return i18n("Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously."); - case Client::ErrorFailedFinalise : + case Enum::ErrorFailedFinalise : return i18n("Failed to close down the backend instance.\n" "This error can normally be ignored."); - case Client::ErrorCannotGetLock : + case Enum::ErrorCannotGetLock : return i18n("Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open."); - case Client::ErrorNoPackagesToUpdate : + case Enum::ErrorNoPackagesToUpdate : return i18n("None of the selected packages could be updated."); - case Client::ErrorCannotWriteRepoConfig : + case Enum::ErrorCannotWriteRepoConfig : return i18n("The repository configuration could not be modified."); - case Client::ErrorLocalInstallFailed : + case Enum::ErrorLocalInstallFailed : return i18n("Installing the local file failed.\n" "More information is available in the detailed report."); - case Client::ErrorBadGpgSignature : + case Enum::ErrorBadGpgSignature : return i18n("The package signature could not be verified."); - case Client::ErrorMissingGpgSignature : + case Enum::ErrorMissingGpgSignature : return i18n("The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created."); - case Client::ErrorRepoConfigurationError : + case Enum::ErrorRepoConfigurationError : return i18n("Repository configuration was invalid and could not be read."); - case Client::ErrorInvalidPackageFile : + case Enum::ErrorInvalidPackageFile : return i18n("The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package."); - case Client::ErrorPackageInstallBlocked : + case Enum::ErrorPackageInstallBlocked : return i18n("Installation of this package was prevented by your packaging system's configuration."); - case Client::ErrorPackageCorrupt : + case Enum::ErrorPackageCorrupt : return i18n("The package that was downloaded is corrupt and needs to be downloaded again."); - case Client::ErrorAllPackagesAlreadyInstalled : + case Enum::ErrorAllPackagesAlreadyInstalled : return i18n("All of the packages selected for install are already installed on the system."); - case Client::ErrorFileNotFound : + case Enum::ErrorFileNotFound : return i18n("The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted."); - case Client::ErrorNoMoreMirrorsToTry : + case Enum::ErrorNoMoreMirrorsToTry : return i18n("Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried."); - case Client::ErrorNoDistroUpgradeData : + case Enum::ErrorNoDistroUpgradeData : return i18n("Required upgrade data could not be found in any of the configured software origins.\n" "The list of distribution upgrades will be unavailable."); - case Client::ErrorIncompatibleArchitecture : + case Enum::ErrorIncompatibleArchitecture : return i18n("The package that is trying to be installed is incompatible with this system."); - case Client::ErrorNoSpaceOnDevice : + case Enum::ErrorNoSpaceOnDevice : return i18n("There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation."); - case Client::ErrorMediaChangeRequired : + case Enum::ErrorMediaChangeRequired : return i18n("Additional media is required to complete the transaction."); - case Client::ErrorNotAuthorized : + case Enum::ErrorNotAuthorized : return i18n("You have failed to provide correct authentication.\n" "Please check any passwords or account settings."); - case Client::ErrorUpdateNotFound : + case Enum::ErrorUpdateNotFound : return i18n("The specified update could not be found.\n" "It could have already been installed or no longer available on the remote server."); - case Client::ErrorCannotInstallRepoUnsigned : + case Enum::ErrorCannotInstallRepoUnsigned : return i18n("The package could not be installed from untrusted origin."); - case Client::ErrorCannotUpdateRepoUnsigned : + case Enum::ErrorCannotUpdateRepoUnsigned : return i18n("The package could not be updated from untrusted origin."); - case Client::ErrorCannotGetFilelist : + case Enum::ErrorCannotGetFilelist : return i18n("The file list is not available for this package."); - case Client::ErrorCannotGetRequires : + case Enum::ErrorCannotGetRequires : return i18n("The information about what requires this package could not be obtained."); - case Client::ErrorCannotDisableRepository : + case Enum::ErrorCannotDisableRepository : return i18n("The specified software origin could not be disabled."); - case Client::ErrorRestrictedDownload : + case Enum::ErrorRestrictedDownload : return i18n("The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report."); - case Client::ErrorPackageFailedToConfigure : + case Enum::ErrorPackageFailedToConfigure : return i18n("One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report."); - case Client::ErrorPackageFailedToBuild : + case Enum::ErrorPackageFailedToBuild : return i18n("One of the selected packages failed to build correctly.\n" "More information is available in the detailed report."); - case Client::ErrorPackageFailedToInstall : + case Enum::ErrorPackageFailedToInstall : return i18n("One of the selected packages failed to install correctly.\n" "More information is available in the detailed report."); - case Client::ErrorPackageFailedToRemove : + case Enum::ErrorPackageFailedToRemove : return i18n("One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report."); - case Client::UnknownErrorType : + case Enum::ErrorUpdateFailedDueToRunningProcess : + return i18n("A program is running that has to be closed before the update can proceed.\n" + "More information is available in the detailed report."); + case Enum::ErrorPackageDatabaseChanged : + return i18n("The package database was changed while the request was running."); + case Enum::LastError : + case Enum::UnknownError : return i18n("Unknown error, please report a bug.\n" "More information is available in the detailed report."); } @@ -615,108 +629,109 @@ return QString(); } -QString KpkStrings::groups(Client::Group group) +QString KpkStrings::groups(Enum::Group group) { switch (group) { - case Client::GroupAccessibility : + case Enum::GroupAccessibility : return i18nc("The group type", "Accessibility"); - case Client::GroupAccessories : + case Enum::GroupAccessories : return i18nc("The group type", "Accessories"); - case Client::GroupEducation : + case Enum::GroupEducation : return i18nc("The group type", "Education"); - case Client::GroupGames : + case Enum::GroupGames : return i18nc("The group type", "Games"); - case Client::GroupGraphics : + case Enum::GroupGraphics : return i18nc("The group type", "Graphics"); - case Client::GroupInternet : + case Enum::GroupInternet : return i18nc("The group type", "Internet"); - case Client::GroupOffice : + case Enum::GroupOffice : return i18nc("The group type", "Office"); - case Client::GroupOther : + case Enum::GroupOther : return i18nc("The group type", "Other"); - case Client::GroupProgramming : + case Enum::GroupProgramming : return i18nc("The group type", "Development"); - case Client::GroupMultimedia : + case Enum::GroupMultimedia : return i18nc("The group type", "Multimedia"); - case Client::GroupSystem : + case Enum::GroupSystem : return i18nc("The group type", "System"); - case Client::GroupDesktopGnome : + case Enum::GroupDesktopGnome : return i18nc("The group type", "GNOME desktop"); - case Client::GroupDesktopKde : + case Enum::GroupDesktopKde : return i18nc("The group type", "KDE desktop"); - case Client::GroupDesktopXfce : + case Enum::GroupDesktopXfce : return i18nc("The group type", "XFCE desktop"); - case Client::GroupDesktopOther : + case Enum::GroupDesktopOther : return i18nc("The group type", "Other desktops"); - case Client::GroupPublishing : + case Enum::GroupPublishing : return i18nc("The group type", "Publishing"); - case Client::GroupServers : + case Enum::GroupServers : return i18nc("The group type", "Servers"); - case Client::GroupFonts : + case Enum::GroupFonts : return i18nc("The group type", "Fonts"); - case Client::GroupAdminTools : + case Enum::GroupAdminTools : return i18nc("The group type", "Admin tools"); - case Client::GroupLegacy : + case Enum::GroupLegacy : return i18nc("The group type", "Legacy"); - case Client::GroupLocalization : + case Enum::GroupLocalization : return i18nc("The group type", "Localization"); - case Client::GroupVirtualization : + case Enum::GroupVirtualization : return i18nc("The group type", "Virtualization"); - case Client::GroupSecurity : + case Enum::GroupSecurity : return i18nc("The group type", "Security"); - case Client::GroupPowerManagement : + case Enum::GroupPowerManagement : return i18nc("The group type", "Power management"); - case Client::GroupCommunication : + case Enum::GroupCommunication : return i18nc("The group type", "Communication"); - case Client::GroupNetwork : + case Enum::GroupNetwork : return i18nc("The group type", "Network"); - case Client::GroupMaps : + case Enum::GroupMaps : return i18nc("The group type", "Maps"); - case Client::GroupRepos : + case Enum::GroupRepos : return i18nc("The group type", "Software sources"); - case Client::GroupScience : + case Enum::GroupScience : return i18nc("The group type", "Science"); - case Client::GroupDocumentation : + case Enum::GroupDocumentation : return i18nc("The group type", "Documentation"); - case Client::GroupElectronics : + case Enum::GroupElectronics : return i18nc("The group type", "Electronics"); - case Client::GroupCollections ://TODO check this one + case Enum::GroupCollections ://TODO check this one return i18nc("The group type", "Package collections"); - case Client::GroupVendor : + case Enum::GroupVendor : return i18nc("The group type", "Vendor"); - case Client::GroupNewest : + case Enum::GroupNewest : return i18nc("The group type", "Newest packages"); - case Client::UnknownGroup : + case Enum::LastGroup : + case Enum::UnknownGroup : return i18nc("The group type", "Unknown group"); } kWarning() << "group unrecognised: " << group; return QString(); } -QString KpkStrings::info(Package::State state) +QString KpkStrings::info(Enum::Info state) { switch (state) { - case Package::StateLow : + case Enum::InfoLow : return i18nc("The type of update", "Trivial update"); - case Package::StateNormal : + case Enum::InfoNormal : return i18nc("The type of update", "Normal update"); - case Package::StateImportant : + case Enum::InfoImportant : return i18nc("The type of update", "Important update"); - case Package::StateSecurity : + case Enum::InfoSecurity : return i18nc("The type of update", "Security update"); - case Package::StateBugfix : + case Enum::InfoBugfix : return i18nc("The type of update", "Bug fix update"); - case Package::StateEnhancement : + case Enum::InfoEnhancement : return i18nc("The type of update", "Enhancement update"); - case Package::StateBlocked : + case Enum::InfoBlocked : return i18nc("The type of update", "Blocked update"); - case Package::StateInstalled : - case Package::StateCollectionInstalled : + case Enum::InfoInstalled : + case Enum::InfoCollectionInstalled : return i18nc("The type of update", "Installed"); - case Package::StateAvailable : - case Package::StateCollectionAvailable : + case Enum::InfoAvailable : + case Enum::InfoCollectionAvailable : return i18nc("The type of update", "Available"); - case Package::UnknownState : + case Enum::UnknownInfo : return i18nc("The type of update", "Unknown update"); default : // In this case we don't want to map all enums kWarning() << "info unrecognised: " << state; @@ -724,26 +739,26 @@ } } -QString KpkStrings::infoUpdate(Package::State state, int number) +QString KpkStrings::infoUpdate(Enum::Info state, int number) { switch (state) { - case Package::StateLow : + case Enum::InfoLow : return i18np("1 trivial update", "%1 trivial updates", number); - case Package::StateNormal : + case Enum::InfoNormal : return i18ncp("Type of update, in the case it's just an update", "1 update", "%1 updates", number); - case Package::StateImportant : + case Enum::InfoImportant : return i18np("1 important update", "%1 important updates", number); - case Package::StateSecurity : + case Enum::InfoSecurity : return i18np("1 security update", "%1 security updates", number); - case Package::StateBugfix : + case Enum::InfoBugfix : return i18np("1 bug fix update", "%1 bug fix updates", number); - case Package::StateEnhancement : + case Enum::InfoEnhancement : return i18np("1 enhancement update", "%1 enhancement updates", number); - case Package::StateBlocked : + case Enum::InfoBlocked : return i18np("1 blocked update", "%1 blocked updates", number); - case Package::StateInstalled : + case Enum::InfoInstalled : return i18np("1 installed package", "%1 installed packages", number); - case Package::StateAvailable : + case Enum::InfoAvailable : return i18np("1 available package", "%1 available packages", number); default : // In this case we don't want to map all enums kWarning() << "update info unrecognised: " << state; @@ -751,28 +766,28 @@ } } -QString KpkStrings::infoUpdate(Package::State state, int updates, int selected) +QString KpkStrings::infoUpdate(Enum::Info state, int updates, int selected) { if (updates == selected) { switch (state) { - case Package::StateLow : + case Enum::InfoLow : return i18np("1 trivial update selected", "%1 trivial updates selected", updates); - case Package::StateNormal : + case Enum::InfoNormal : return i18ncp("Type of update, in the case it's just an update", "1 update selected", "%1 updates selected", updates); - case Package::StateImportant : + case Enum::InfoImportant : return i18np("1 important update selected", "%1 important updates selected", updates); - case Package::StateSecurity : + case Enum::InfoSecurity : return i18np("1 security update selected", "%1 security updates selected", updates); - case Package::StateBugfix : + case Enum::InfoBugfix : return i18np("1 bug fix update selected", "%1 bug fix updates selected", updates); - case Package::StateEnhancement : + case Enum::InfoEnhancement : return i18np("1 enhancement update selected", "%1 enhancement updates selected", updates); - case Package::StateInstalled : + case Enum::InfoInstalled : return i18np("1 installed package selected to be removed", "%1 installed packages selected to be removed", updates); - case Package::StateAvailable : + case Enum::InfoAvailable : return i18np("1 available package selected to be installed", "%1 available packages selected to be installed", updates); default : // In this case we don't want to map all enums @@ -783,25 +798,25 @@ return infoUpdate(state, updates); } else { switch (state) { - case Package::StateLow : + case Enum::InfoLow : return i18np("%1 trivial update", "%1 trivial updates, %2 selected", updates, selected); - case Package::StateNormal : + case Enum::InfoNormal : return i18ncp("Type of update, in the case it's just an update", "%1 update", "%1 updates, %2 selected", updates, selected); - case Package::StateImportant : + case Enum::InfoImportant : return i18np("%1 important update", "%1 important updates, %2 selected", updates, selected); - case Package::StateSecurity : + case Enum::InfoSecurity : return i18np("%1 security update", "%1 security updates, %2 selected", updates, selected); - case Package::StateBugfix : + case Enum::InfoBugfix : return i18np("%1 bug fix update", "%1 bug fix updates, %2 selected", updates, selected); - case Package::StateEnhancement : + case Enum::InfoEnhancement : return i18np("%1 enhancement update", "%1 enhancement updates, %2 selected", updates, selected); - case Package::StateBlocked : + case Enum::InfoBlocked : // Blocked updates aren't selectable return i18np("%1 blocked update", "%1 blocked updates", updates); - case Package::StateInstalled : + case Enum::InfoInstalled : return i18np("%1 installed package", "%1 installed packages, %2 selected to be removed", updates, selected); - case Package::StateAvailable : + case Enum::InfoAvailable : return i18np("%1 available package", "%1 available packages, %2 selected to be installed", updates, selected); default : // In this case we don't want to map all enums kWarning() << "update info unrecognised: " << state; @@ -810,118 +825,125 @@ } } -QString KpkStrings::restartTypeFuture(Client::RestartType value) +QString KpkStrings::restartTypeFuture(Enum::Restart value) { switch (value) { - case Client::RestartNone : + case Enum::RestartNone : return i18n("No restart is necessary"); - case Client::RestartApplication : + case Enum::RestartApplication : return i18n("You will be required to restart this application"); - case Client::RestartSession : + case Enum::RestartSession : return i18n("You will be required to log out and back in"); - case Client::RestartSystem : + case Enum::RestartSystem : return i18n("A restart will be required"); - case Client::RestartSecuritySession : + case Enum::RestartSecuritySession : return i18n("You will be required to log out and back in due to a security update."); - case Client::RestartSecuritySystem : + case Enum::RestartSecuritySystem : return i18n("A restart will be required due to a security update."); - case Client::UnknownRestartType : - kWarning() << "restartTypeFuture(Client::UnknownRestartType)"; + case Enum::LastRestart : + case Enum::UnknownRestart : + kWarning() << "restartTypeFuture(Enum::UnknownRestartType)"; return QString(); } kWarning() << "restart unrecognised: " << value; return QString(); } -QString KpkStrings::restartType(Client::RestartType value) +QString KpkStrings::restartType(Enum::Restart value) { switch (value) { - case Client::RestartNone : + case Enum::RestartNone : return i18n("No restart is required"); - case Client::RestartSystem : + case Enum::RestartSystem : return i18n("A restart is required"); - case Client::RestartSession : + case Enum::RestartSession : return i18n("You need to log out and log back in"); - case Client::RestartApplication : + case Enum::RestartApplication : return i18n("You need to restart the application"); - case Client::RestartSecuritySession : + case Enum::RestartSecuritySession : return i18n("You need to log out and log back in to remain secure."); - case Client::RestartSecuritySystem : + case Enum::RestartSecuritySystem : return i18n("A restart is required to remain secure."); - case Client::UnknownRestartType : - kWarning() << "restartType(Client::UnknownRestartType)"; + case Enum::LastRestart : + case Enum::UnknownRestart : + kWarning() << "restartType(Enum::UnknownRestartType)"; return QString(); } kWarning() << "restart unrecognised: " << value; return QString(); } -QString KpkStrings::updateState(Client::UpdateState value) +QString KpkStrings::updateState(Enum::UpdateState value) { switch (value) { - case Client::UpdateStable : + case Enum::UpdateStateStable : return i18n("Stable"); - case Client::UpdateUnstable : + case Enum::UpdateStateUnstable : return i18n("Unstable"); - case Client::UpdateTesting : + case Enum::UpdateStateTesting : return i18n("Testing"); - case Client::UnknownUpdateState : - kWarning() << "updateState(Client::UnknownUpdateState)"; + case Enum::LastUpdateState : + case Enum::UnknownUpdateState : + kWarning() << "updateState(Enum::UnknownUpdateState)"; return QString(); } kWarning() << "value unrecognised: " << value; return QString(); } -QString KpkStrings::mediaMessage(Transaction::MediaType value, const QString &text) +QString KpkStrings::mediaMessage(Enum::MediaType value, const QString &text) { switch (value) { - case Transaction::MediaCd : + case Enum::MediaTypeCd : return i18n("Please insert the CD labeled '%1', and press continue.", text); - case Transaction::MediaDvd : + case Enum::MediaTypeDvd : return i18n("Please insert the DVD labeled '%1', and press continue.", text); - case Transaction::MediaDisc : + case Enum::MediaTypeDisc : return i18n("Please insert the disc labeled '%1', and press continue.", text); - case Transaction::UnknownMediaType : + case Enum::LastMediaType : + case Enum::UnknownMediaType : return i18n("Please insert the medium labeled '%1', and press continue.", text); } kWarning() << "value unrecognised: " << value; return i18n("Please insert the medium labeled '%1', and press continue.", text); } -QString KpkStrings::message(PackageKit::Client::MessageType value) +QString KpkStrings::message(PackageKit::Enum::Message value) { switch (value) { - case Client::MessageBrokenMirror : + case Enum::MessageBrokenMirror : return i18n("A mirror is possibly broken"); - case Client::MessageConnectionRefused : + case Enum::MessageConnectionRefused : return i18n("The connection was refused"); - case Client::MessageParameterInvalid : + case Enum::MessageParameterInvalid : return i18n("The parameter was invalid"); - case Client::MessagePriorityInvalid : + case Enum::MessagePriorityInvalid : return i18n("The priority was invalid"); - case Client::MessageBackendError : + case Enum::MessageBackendError : return i18n("Backend warning"); - case Client::MessageDaemonError : + case Enum::MessageDaemonError : return i18n("Daemon warning"); - case Client::MessageCacheBeingRebuilt : + case Enum::MessageCacheBeingRebuilt : return i18n("The package list cache is being rebuilt"); - case Client::MessageUntrustedPackage : + case Enum::MessageUntrustedPackage : return i18n("An untrusted package was installed"); - case Client::MessageNewerPackageExists : + case Enum::MessageNewerPackageExists : return i18n("A newer package exists"); - case Client::MessageCouldNotFindPackage : + case Enum::MessageCouldNotFindPackage : return i18n("Could not find package"); - case Client::MessageConfigFilesChanged : + case Enum::MessageConfigFilesChanged : return i18n("Configuration files were changed"); - case Client::MessagePackageAlreadyInstalled : + case Enum::MessagePackageAlreadyInstalled : return i18n("Package is already installed"); - case Client::MessageAutoremoveIgnored : + case Enum::MessageAutoremoveIgnored : return i18n("Automatic cleanup is being ignored"); - case Client::MessageRepoMetadataDownloadFailed : + case Enum::MessageRepoMetadataDownloadFailed : return i18n("Software source download failed"); - case Client::UnknownMessageType : - kWarning() << "message(Client::UnknownMessageType)"; + case Enum::MessageRepoForDevelopersOnly : + return i18n("This software source is for developers only"); + case Enum::LastMessage : + case Enum::UnknownMessage : + kWarning() << "message(Enum::UnknownMessageType)"; return QString(); } kWarning() << "value unrecognised: " << value; @@ -951,6 +973,7 @@ return i18n("Could not talk to packagekitd."); case Client::NoError : case Client::ErrorFailed : + case Client::LastDaemonError : case Client::UnkownError : return i18n("An unknown error happened."); } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkStrings.h kpackagekit-0.6.0/libkpackagekit/KpkStrings.h --- kpackagekit-0.5.4/libkpackagekit/KpkStrings.h 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkStrings.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -29,23 +29,23 @@ namespace KpkStrings { - KDE_EXPORT QString finished(PackageKit::Transaction::ExitStatus status); - KDE_EXPORT QString error(PackageKit::Client::ErrorType error); - KDE_EXPORT QString errorMessage(PackageKit::Client::ErrorType error); - KDE_EXPORT QString message(PackageKit::Client::MessageType type); - KDE_EXPORT QString status(PackageKit::Transaction::Status status); - KDE_EXPORT QString statusPast(PackageKit::Transaction::Status status); - KDE_EXPORT QString groups(Client::Group group); - KDE_EXPORT QString info(Package::State state); - KDE_EXPORT QString infoUpdate(Package::State state, int number); - KDE_EXPORT QString infoUpdate(Package::State state, int updates, int selected); - KDE_EXPORT QString updateState(Client::UpdateState value); - KDE_EXPORT QString restartType(Client::RestartType value); - KDE_EXPORT QString restartTypeFuture(Client::RestartType value); - KDE_EXPORT QString action(Client::Action action); - KDE_EXPORT QString actionPast(Client::Action action); - KDE_EXPORT QString mediaMessage(Transaction::MediaType value, const QString &text); - KDE_EXPORT QString daemonError(PackageKit::Client::DaemonError value); + KDE_EXPORT QString finished(Enum::Exit status); + KDE_EXPORT QString error(Enum::Error error); + KDE_EXPORT QString errorMessage(Enum::Error error); + KDE_EXPORT QString message(Enum::Message type); + KDE_EXPORT QString status(Enum::Status status); + KDE_EXPORT QString statusPast(Enum::Status status); + KDE_EXPORT QString groups(Enum::Group group); + KDE_EXPORT QString info(Enum::Info state); + KDE_EXPORT QString infoUpdate(Enum::Info state, int number); + KDE_EXPORT QString infoUpdate(Enum::Info state, int updates, int selected); + KDE_EXPORT QString updateState(Enum::UpdateState value); + KDE_EXPORT QString restartType(Enum::Restart value); + KDE_EXPORT QString restartTypeFuture(Enum::Restart value); + KDE_EXPORT QString action(Enum::Role action); + KDE_EXPORT QString actionPast(Enum::Role action); + KDE_EXPORT QString mediaMessage(Enum::MediaType value, const QString &text); + KDE_EXPORT QString daemonError(Client::DaemonError value); }; #endif diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkTransactionBar.cpp kpackagekit-0.6.0/libkpackagekit/KpkTransactionBar.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkTransactionBar.cpp 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkTransactionBar.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,7 +1,7 @@ /*************************************************************************** * Copyright (C) 2008 by Trever Fischer * * wm161@wm161.net * - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,6 +22,8 @@ #include "KpkTransactionBar.h" +#include + #include #include #include @@ -42,12 +44,12 @@ m_cancel = new KPushButton(i18n("Cancel"), this); m_timer = new QTimer(this); - m_layout = new QHBoxLayout(this); - m_layout->addWidget(m_progress); - m_layout->addWidget(m_cancel); - m_layout->addWidget(m_label); + QHBoxLayout *layout = new QHBoxLayout(this); + layout->addWidget(m_progress); + layout->addWidget(m_cancel); + layout->addWidget(m_label); - setLayout(m_layout); + setLayout(layout); connect(m_timer, SIGNAL(timeout()), this, SLOT(hide())); } @@ -91,18 +93,18 @@ updateUi(); -// if (trans->status() == Transaction::UnknownStatus) { -// statusChanged(Transaction::StatusSetup); +// if (trans->status() == Enum::UnknownStatus) { +// statusChanged(Enum::StatusSetup); // } else { // statusChanged(trans->status()); // } - connect(m_currTrans, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(finished(PackageKit::Transaction::ExitStatus, uint))); + connect(m_currTrans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished(PackageKit::Enum::Exit, uint))); connect(m_currTrans, SIGNAL(changed()), this, SLOT(updateUi())); - connect(m_currTrans, SIGNAL(errorCode(PackageKit::Client::ErrorType, const QString &)), - this, SLOT(errorCode(PackageKit::Client::ErrorType, const QString &)) ); + connect(m_currTrans, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &)) ); connect(m_cancel, SIGNAL(clicked()), m_currTrans, SLOT(cancel())); } @@ -115,18 +117,20 @@ } } -void KpkTransactionBar::finished(Transaction::ExitStatus status, uint runtime) +void KpkTransactionBar::finished(Enum::Exit status, uint runtime) { m_progress->setMaximum(100); m_progress->setValue(100); QPalette colors(palette()); switch (status) { - case Transaction::ExitSuccess: + case Enum::ExitSuccess: KColorScheme::adjustBackground(colors, KColorScheme::PositiveBackground, QPalette::Window, KColorScheme::Window); - m_label->setText(i18n("Finished in %1.", KGlobal::locale()->prettyFormatDuration(runtime))); + m_label->setText(i18nc("The time that the transaction took to complete", + "Finished in %1.", + KGlobal::locale()->prettyFormatDuration(runtime))); break; default: KColorScheme::adjustBackground(colors, @@ -147,10 +151,10 @@ nextTransaction(); } -void KpkTransactionBar::errorCode(Client::ErrorType type, const QString &details) +void KpkTransactionBar::errorCode(Enum::Error error, const QString &details) { Q_UNUSED(details); - m_label->setText( KpkStrings::error(type) ); + m_label->setText(KpkStrings::error(error)); } void KpkTransactionBar::updateUi() diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkTransactionBar.h kpackagekit-0.6.0/libkpackagekit/KpkTransactionBar.h --- kpackagekit-0.5.4/libkpackagekit/KpkTransactionBar.h 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkTransactionBar.h 2010-03-19 21:14:59.000000000 +0000 @@ -1,6 +1,8 @@ /*************************************************************************** * Copyright (C) 2008 by Trever Fischer * * wm161@wm161.net * + * Copyright (C) 2010 by Daniel Nicoletti * + * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -27,7 +29,6 @@ #include #include #include -#include using namespace PackageKit; @@ -54,7 +55,6 @@ AutoHide = 2, HideCancel = 4, }; - Q_DECLARE_FLAGS(Behaviors, BehaviorFlag) /** @@ -73,13 +73,12 @@ QProgressBar *m_progress; KPushButton *m_cancel; QTimer *m_timer; - QHBoxLayout *m_layout; Behaviors m_flags; Transaction *m_currTrans; private slots: - void finished(PackageKit::Transaction::ExitStatus status, uint runtime); - void errorCode(PackageKit::Client::ErrorType error, const QString &details); + void finished(PackageKit::Enum::Exit status, uint runtime); + void errorCode(PackageKit::Enum::Error error, const QString &details); void updateUi(); void nextTransaction(); }; diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkTransaction.cpp kpackagekit-0.6.0/libkpackagekit/KpkTransaction.cpp --- kpackagekit-0.5.4/libkpackagekit/KpkTransaction.cpp 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkTransaction.cpp 2010-03-19 21:14:59.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -48,7 +48,8 @@ bool finished; bool allowDeps; bool onlyTrusted; - QList packages; + Enum::Role role; + QList > packages; }; KpkTransaction::KpkTransaction(Transaction *trans, Behaviors flags, QWidget *parent) @@ -58,14 +59,18 @@ m_showingError(false), m_flags(flags), m_exitStatus(Success), - m_status(Transaction::UnknownStatus), + m_status(Enum::UnknownStatus), d(new KpkTransactionPrivate) { d->ui.setupUi(mainWidget()); + // hide these items here so the window get small + d->ui.packageL->hide(); + d->ui.descriptionL->hide(); d->finished = true; // for sanity we are finished till some transaction is set d->onlyTrusted = true; // for sanity we are trusted till an error is given and the user accepts // Set Cancel and custom button hide + setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Fixed); setButtons(KDialog::Cancel | KDialog::User1 | KDialog::Details); enableButton(KDialog::Details, false); setButtonText(KDialog::User1, i18n("Hide")); @@ -95,8 +100,6 @@ // We need to track when the user close the dialog using the [X] button connect(this, SIGNAL(finished()), SLOT(finishedDialog())); - connect(this, SIGNAL(kTransactionFinished(KpkTransaction::ExitStatus)), - SLOT(setExitStatus(KpkTransaction::ExitStatus))); // after ALL set, lets set the transaction setTransaction(m_trans); @@ -104,6 +107,7 @@ KpkTransaction::~KpkTransaction() { + kDebug(); KConfig config("KPackageKit"); if (isButtonEnabled(KDialog::Details)) { KConfigGroup transactionGroup(&config, "Transaction"); @@ -132,7 +136,12 @@ return d->onlyTrusted; } -QList KpkTransaction::packages() const +Enum::Role KpkTransaction::role() const +{ + return d->role; +} + +QList > KpkTransaction::packages() const { return d->packages; } @@ -142,16 +151,22 @@ d->allowDeps = allowDeps; } -void KpkTransaction::setPackages(QList packages) +void KpkTransaction::setPackages(QList > packages) { d->packages = packages; } void KpkTransaction::setTransaction(Transaction *trans) { + if (!trans) { + // 0 pointer passed + return; + } + m_trans = trans; d->tid = trans->tid(); d->finished = false; + d->role = m_trans->role(); // sets the action icon to be the window icon setWindowIcon(KpkIcons::actionIcon(m_trans->role())); @@ -164,18 +179,11 @@ d->ui.descriptionL->setText(QString()); // Now sets the last package currPackage(m_trans->lastPackage()); - // sets the current progress + // sets ui updateUi(); - // sets the current status - // TODO -// if (m_trans->status() == Transaction::UnknownStatus) { -// statusChanged(Transaction::StatusSetup); -// } else { -// statusChanged(m_trans->status()); -// } - if (m_trans->role() == Client::ActionRefreshCache || - m_trans->role() == Client::ActionWhatProvides) { + if (m_trans->role() == Enum::RoleRefreshCache || + m_trans->role() == Enum::RoleWhatProvides) { d->ui.packageL->hide(); d->ui.descriptionL->hide(); } else { @@ -184,18 +192,18 @@ } // DISCONNECT ALL THESE SIGNALS BEFORE CLOSING - connect(m_trans, SIGNAL(package(PackageKit::Package *)), - this, SLOT(currPackage(PackageKit::Package *))); - connect(m_trans, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(finished(PackageKit::Transaction::ExitStatus, uint))); - connect(m_trans, SIGNAL(errorCode(PackageKit::Client::ErrorType, const QString &)), - this, SLOT(errorCode(PackageKit::Client::ErrorType, const QString &))); + connect(m_trans, SIGNAL(package(QSharedPointer)), + this, SLOT(currPackage(QSharedPointer))); + connect(m_trans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished(PackageKit::Enum::Exit))); + connect(m_trans, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &))); connect(m_trans, SIGNAL(changed()), this, SLOT(updateUi())); connect(m_trans, SIGNAL(eulaRequired(PackageKit::Client::EulaInfo)), this, SLOT(eulaRequired(PackageKit::Client::EulaInfo))); - connect(m_trans, SIGNAL(mediaChangeRequired(PackageKit::Transaction::MediaType, const QString &, const QString &)), - this, SLOT(mediaChangeRequired(PackageKit::Transaction::MediaType, const QString &, const QString &))); + connect(m_trans, SIGNAL(mediaChangeRequired(PackageKit::Enum::MediaType, const QString &, const QString &)), + this, SLOT(mediaChangeRequired(PackageKit::Enum::MediaType, const QString &, const QString &))); connect(m_trans, SIGNAL(repoSignatureRequired(PackageKit::Client::SignatureInfo)), this, SLOT(repoSignatureRequired(PackageKit::Client::SignatureInfo))); // DISCONNECT ALL THESE SIGNALS BEFORE CLOSING @@ -203,19 +211,19 @@ void KpkTransaction::unsetTransaction() { - disconnect(m_trans, SIGNAL(package(PackageKit::Package *)), - this, SLOT(currPackage(PackageKit::Package *))); - disconnect(m_trans, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(finished(PackageKit::Transaction::ExitStatus, uint))); - disconnect(m_trans, SIGNAL(errorCode(PackageKit::Client::ErrorType, const QString &)), - this, SLOT(errorCode(PackageKit::Client::ErrorType, const QString &))); + disconnect(m_trans, SIGNAL(package(QSharedPointer)), + this, SLOT(currPackage(QSharedPointer))); + disconnect(m_trans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished(PackageKit::Enum::Exit, uint))); + disconnect(m_trans, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &))); disconnect(m_trans, SIGNAL(changed()), this, SLOT(updateUi())); disconnect(m_trans, SIGNAL(eulaRequired(PackageKit::Client::EulaInfo)), this, SLOT(eulaRequired(PackageKit::Client::EulaInfo))); - disconnect(m_trans, SIGNAL(mediaChangeRequired(PackageKit::Transaction::MediaType, + disconnect(m_trans, SIGNAL(mediaChangeRequired(PackageKit::Enum::MediaType, const QString &, const QString &)), - this, SLOT(mediaChangeRequired(PackageKit::Transaction::MediaType, const QString &, const QString &))); + this, SLOT(mediaChangeRequired(PackageKit::Enum::MediaType, const QString &, const QString &))); disconnect(m_trans, SIGNAL(repoSignatureRequired(PackageKit::Client::SignatureInfo)), this, SLOT(repoSignatureRequired(PackageKit::Client::SignatureInfo))); } @@ -224,7 +232,7 @@ { uint percentage = m_trans->percentage(); uint subpercentage = m_trans->subpercentage(); - if (percentage && percentage <= 100) { + if (percentage <= 100) { d->ui.progressBar->setMaximum(100); d->ui.progressBar->setValue(percentage); } else if (d->ui.progressBar->maximum() != 0) { @@ -232,7 +240,7 @@ d->ui.progressBar->reset(); } - if (subpercentage && subpercentage <= 100) { + if (subpercentage <= 100) { d->ui.subprogressBar->setMaximum(100); d->ui.subprogressBar->setValue(subpercentage); // Check if we didn't already set the maximum as this @@ -245,7 +253,7 @@ d->ui.progressBar->setRemaining(m_trans->remainingTime()); // Status - Transaction::Status status = m_trans->status(); + Enum::Status status = m_trans->status(); if (m_status != status) { m_status = status; d->ui.currentL->setText(KpkStrings::status(status)); @@ -272,7 +280,7 @@ enableButtonCancel(m_trans->allowCancel()); } -void KpkTransaction::currPackage(Package *p) +void KpkTransaction::currPackage(QSharedPointerp) { if (!p->id().isEmpty()) { QString packageText(p->name()); @@ -302,7 +310,8 @@ "/", "org.kde.KPackageKitSmartIcon", QLatin1String("WatchTransaction")); - message << qVariantFromValue(m_trans->tid()); + // Use our own cached tid to avoid crashes + message << qVariantFromValue(d->tid); QDBusMessage reply = QDBusConnection::sessionBus().call(message); if (reply.type() != QDBusMessage::ReplyMessage) { kWarning() << "Message did not receive a reply"; @@ -310,7 +319,7 @@ // Always disconnect BEFORE emitting finished unsetTransaction(); - emit kTransactionFinished(Success); + setExitStatus(Success); } } @@ -331,7 +340,7 @@ kDebug() << "KDialog::Close"; // Always disconnect BEFORE emitting finished unsetTransaction(); - emit kTransactionFinished(Cancelled); + setExitStatus(Cancelled); done(KDialog::Close); break; case KDialog::Details : @@ -345,25 +354,25 @@ // Return value: if the error code suggests to try with only_trusted %FALSE -static bool untrustedIsNeed(PackageKit::Client::ErrorType error) +static bool untrustedIsNeed(Enum::Error error) { switch (error) { - case Client::ErrorGpgFailure: - case Client::ErrorBadGpgSignature: - case Client::ErrorMissingGpgSignature: - case Client::ErrorCannotInstallRepoUnsigned: - case Client::ErrorCannotUpdateRepoUnsigned: + case Enum::ErrorGpgFailure: + case Enum::ErrorBadGpgSignature: + case Enum::ErrorMissingGpgSignature: + case Enum::ErrorCannotInstallRepoUnsigned: + case Enum::ErrorCannotUpdateRepoUnsigned: return true; default: return false; } } -void KpkTransaction::errorCode(PackageKit::Client::ErrorType error, const QString &details) +void KpkTransaction::errorCode(PackageKit::Enum::Error error, const QString &details) { // kDebug() << "errorCode: " << error << details; // obvious message, don't tell the user - if (error == Client::ErrorTransactionCancelled) { + if (error == Enum::ErrorTransactionCancelled) { return; } @@ -378,20 +387,22 @@ if (ret == KMessageBox::Yes) { // Set only trusted to false, to do as the user asked d->onlyTrusted = false; - emit kTransactionFinished(ReQueue); + emit requeue(); + setExitStatus(ReQueue); kDebug() << "Asking for a re-queue"; } else { - emit kTransactionFinished(Cancelled); - if (m_flags & CloseOnFinish) + setExitStatus(Cancelled); + if (m_flags & CloseOnFinish) { done(QDialog::Rejected); + } } m_handlingActionRequired = false; return; } // check to see if we are already handlying these errors - if (error == Client::ErrorNoLicenseAgreement || - error == Client::ErrorMediaChangeRequired) + if (error == Enum::ErrorNoLicenseAgreement || + error == Enum::ErrorMediaChangeRequired) { if (m_handlingActionRequired) { return; @@ -402,7 +413,7 @@ // if ( error == Client::BadGpgSignature || error Client::MissingGpgSignature) // ignoring these as gpk does - if (error == Client::ErrorTransactionCancelled || error == Client::ErrorProcessKill) { + if (error == Enum::ErrorTransactionCancelled || error == Enum::ErrorProcessKill) { return; } @@ -439,10 +450,11 @@ delete frm; // Well try again, if fail will show the erroCode - emit kTransactionFinished(ReQueue); + emit requeue(); + setExitStatus(ReQueue); } -void KpkTransaction::mediaChangeRequired(PackageKit::Transaction::MediaType type, const QString &id, const QString &text) +void KpkTransaction::mediaChangeRequired(PackageKit::Enum::MediaType type, const QString &id, const QString &text) { Q_UNUSED(id) kDebug() << "mediaChangeRequired: " << id << text; @@ -457,7 +469,8 @@ // if the user clicked continue we got yes if (ret == KMessageBox::Yes) { - emit kTransactionFinished(ReQueue); + emit requeue(); + setExitStatus(ReQueue); } else { // when we receive an error we are done if (m_flags & CloseOnFinish) { @@ -485,41 +498,42 @@ delete frm; // kDebug() << "Requeue!"; - emit kTransactionFinished(ReQueue); + emit requeue(); + setExitStatus(ReQueue); } -void KpkTransaction::finished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkTransaction::finished(PackageKit::Enum::Exit status) { - Q_UNUSED(runtime) + kDebug(); d->finished = true; switch(status) { - case Transaction::ExitSuccess : + case Enum::ExitSuccess : d->ui.progressBar->setMaximum(100); d->ui.progressBar->setValue(100); - emit kTransactionFinished(Success); + setExitStatus(Success); break; - case Transaction::ExitCancelled : + case Enum::ExitCancelled : d->ui.progressBar->setMaximum(100); d->ui.progressBar->setValue(100); - emit kTransactionFinished(Cancelled); + setExitStatus(Cancelled); break; - case Transaction::ExitFailed : + case Enum::ExitFailed : kDebug() << "Failed."; if (!m_handlingActionRequired) { d->ui.progressBar->setMaximum(0); d->ui.progressBar->reset(); kDebug() << "Yep, we failed."; - emit kTransactionFinished(Failed); + setExitStatus(Failed); } break; - case Transaction::ExitKeyRequired : - case Transaction::ExitEulaRequired : - case Transaction::ExitMediaChangeRequired : - case Transaction::ExitNeedUntrusted : + case Enum::ExitKeyRequired : + case Enum::ExitEulaRequired : + case Enum::ExitMediaChangeRequired : + case Enum::ExitNeedUntrusted : kDebug() << "finished KeyRequired or EulaRequired: " << status; - d->ui.currentL->setText(KpkStrings::status(Transaction::StatusSetup)); + d->ui.currentL->setText(KpkStrings::status(Enum::StatusSetup)); if (!m_handlingActionRequired) { - emit kTransactionFinished(Failed); + setExitStatus(Failed); } break; default : @@ -532,6 +546,7 @@ // if we're not showing an error or don't have the // CloseOnFinish flag don't close the dialog if (m_flags & CloseOnFinish && !m_handlingActionRequired && !m_showingError) { + kDebug() << "done"; done(QDialog::Rejected); deleteLater(); } diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkTransaction.h kpackagekit-0.6.0/libkpackagekit/KpkTransaction.h --- kpackagekit-0.5.4/libkpackagekit/KpkTransaction.h 2009-12-07 18:31:41.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkTransaction.h 2010-03-19 21:14:59.000000000 +0000 @@ -50,10 +50,12 @@ QString tid() const; bool allowDeps() const; bool onlyTrusted() const; - QList packages() const; + QList > packages() const; + + Enum::Role role() const; void setAllowDeps(bool allowDeps); - void setPackages(QList packages); + void setPackages(QList > packages); typedef enum { Success, @@ -65,7 +67,7 @@ KpkTransaction::ExitStatus exitStatus() const; signals: - void kTransactionFinished(KpkTransaction::ExitStatus status); + void requeue(); private: void unsetTransaction(); @@ -75,17 +77,17 @@ bool m_showingError; //This might replace the above Behaviors m_flags; ExitStatus m_exitStatus; - Transaction::Status m_status; + Enum::Status m_status; KpkTransactionPrivate *d; private slots: void finishedDialog(); - void finished(PackageKit::Transaction::ExitStatus status, uint runtime); - void errorCode(PackageKit::Client::ErrorType error, const QString &details); - void currPackage(PackageKit::Package *); + void finished(PackageKit::Enum::Exit status); + void errorCode(PackageKit::Enum::Error error, const QString &details); + void currPackage(QSharedPointer); void updateUi(); void eulaRequired(PackageKit::Client::EulaInfo info); - void mediaChangeRequired(PackageKit::Transaction::MediaType type, const QString &id, const QString &text); + void mediaChangeRequired(PackageKit::Enum::MediaType type, const QString &id, const QString &text); void repoSignatureRequired(PackageKit::Client::SignatureInfo info); void setExitStatus(KpkTransaction::ExitStatus status); diff -Nru kpackagekit-0.5.4/libkpackagekit/KpkTransaction.ui kpackagekit-0.6.0/libkpackagekit/KpkTransaction.ui --- kpackagekit-0.5.4/libkpackagekit/KpkTransaction.ui 2009-11-17 12:32:14.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/KpkTransaction.ui 2010-03-19 21:14:59.000000000 +0000 @@ -7,18 +7,24 @@ 0 0 417 - 174 + 140 + + + 0 + 0 + + Transaction - - 0 - - + + + QLayout::SetFixedSize + @@ -32,60 +38,43 @@ - - - - Qt::Vertical - - - - 0 - 0 - - - - - - - - - - 0 - 0 - - - - - 11 - - - - - - - Downloading Packages - - - Qt::AlignCenter - - - - - - - - - - 0 - - - - + + + + 0 + 0 + + + + + 11 + + + + + + + Downloading Packages + + + Qt::AlignCenter + + + + + + + + 0 + + + + @@ -104,11 +93,33 @@ + + + + 0 + 0 + + + + libfoo + + + + + + + 0 + 0 + + Details + + 0 + @@ -122,19 +133,6 @@ - - - - - 0 - 0 - - - - libfoo - - - diff -Nru kpackagekit-0.5.4/libkpackagekit/version.h kpackagekit-0.6.0/libkpackagekit/version.h --- kpackagekit-0.5.4/libkpackagekit/version.h 2010-01-19 10:47:31.000000000 +0000 +++ kpackagekit-0.6.0/libkpackagekit/version.h 2010-03-19 21:14:59.000000000 +0000 @@ -20,5 +20,5 @@ #ifndef KPKVERSION_H #define KPKVERSION_H -#define KPK_VERSION "0.5.4" +#define KPK_VERSION "0.6.0" #endif diff -Nru kpackagekit-0.5.4/po/bg/kpackagekit.po kpackagekit-0.6.0/po/bg/kpackagekit.po --- kpackagekit-0.5.4/po/bg/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/bg/kpackagekit.po 2010-01-30 08:59:23.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-09-17 14:41+0300\n" "Last-Translator: Yasen Pramatarov \n" "Language-Team: Bulgarian \n" @@ -31,11 +31,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Подробности" @@ -99,26 +99,26 @@ "Препоръчително е по време на обновяването да оставите компютъра включен в " "електрическата мрежа." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Обновяването на дистрибуцията завърши." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Обновяването на дистрибуцията завърши с код %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Обновяването на дистрибуцията не може да започне." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "Обновяването на дистрибуцията започна успешно, но възникна проблем." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Обновяването на дистрибуцията се провали. Неизвестна грешка." @@ -198,28 +198,24 @@ msgid "Time since last cache refresh: %1" msgstr "Време от последното обновяване на кеша: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Име на пакет" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Уеб страница" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Лиценз" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Група" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Уеб страница" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Размер" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Не са открити файлове." @@ -231,234 +227,247 @@ msgid "KDE interface for managing software" msgstr "Програма в KDE за управление на софтуер" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Търсене" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Всички пакети" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Списък с промените" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Група:" msgstr[1] "Групи:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Отмяна" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Търсене по &име" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Търсене по име на &файл" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Търсене по &описание" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Преглед на промените" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Колекции" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Само колекции" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Без колекции" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Инсталирани" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Само инсталирани" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Само налични" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Без филтриране" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "За разработчици" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Само за разработчици" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Само потребителски файлове" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Графични" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Само графични" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Само текстови" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Свободни" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Само свободен софтуер" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Само несвободен софтуер" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Архитектури" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Само текущата архитектура" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Само различни от текущата архитектури" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Изходен код" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Само изходен код" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Без изходен код" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Скриване на подпакетите" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Показване само на един пакет, не и на подпакетите" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Само най-новите пакети" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Показване само на най-новите пакети" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Разглеждане по групи" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Показване на пакетите по групи в зависимост от състоянието им" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Следният пакет ще бъде инсталиран:" msgstr[1] "Следните пакети ще бъдат инсталирани:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Инсталиране" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Следният пакет бъде деинсталиран:" msgstr[1] "Следните пакети ще бъдат деинсталирани:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Деинсталиране" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Следният пакет ще бъде деинсталиран и след това инсталиран:" msgstr[1] "Следнитe пакети ще бъдат деинсталирани и след това инсталирани:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Прилагане" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to remove package" +msgid "Failed to simulate package removal" +msgstr "Неуспешно деинсталиране на пакет" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Текущото ядро не позволява деинсталиране на пакети." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Грешка на KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to simulate package install" +msgstr "Неуспешно инсталиране на пакет" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Текущото ядро не позволява инсталиране на пакети." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Неуспешно деинсталиране на пакет" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Неуспешно инсталиране на пакет" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Неуспешно деинсталиране на пакет" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Скриване" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Позволява скриването на основния прозорец без прекъсване на текущата задача." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
Installing unsigned packages can compromise your system, as it is " @@ -473,11 +482,11 @@ "понеже е невъзможно да се провери източника. Сигурни ли сте, че искате да " "продължите?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Инсталиране на неподписан софтуер" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Трябва да смените носителя" @@ -497,7 +506,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Изисква се съгласие с лиценза" @@ -510,13 +519,13 @@ msgid "Version" msgstr "Версия" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Отмяна" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Завърши в %1." @@ -568,379 +577,486 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Изисква се подпис върху софтуера" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Неизвестно състояние" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Изчакване услугата да стартира" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Изчакване на други задачи" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Текуща задача" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Запитване" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Получаване на информация" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Деинсталиране на пакети" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Изтегляне на пакети" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Инсталиране на пакети" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Обновяване на списъка с пакети" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Обновяване на пакети" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Изчистване на пакети" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Обявяване на пакети за остарели" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Изчисляване на зависимостите" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Проверка на подписите" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Връщане" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Проверка на промените" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Подаване на промените" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Запитване за данни" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Завършено" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Отмяна" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Изтегляне на информация за хранилището" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Изтегляне на списъка с пакети" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Изтегляне на списъците с файлове" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Изтегляне на списъците с промени" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Изтегляне на групи" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Изтегляне на информацията за обновленията" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Ново пакетиране на файлове" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Зареждане на кеша" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Претърсване на инсталираните пакети" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Генериране на списъците с пакети" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Изчакване за заключване от управлението на пакетите" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Изчакване на други задачи" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Ново пакетиране на файлове" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Изтеглени" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Обновени" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Инсталирани" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Деинсталирани" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Изчистени" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Остарели" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Неизвестен вид роля" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Получаване на зависимости" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Получаване на допълнителната информация за обновленията" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Получаване на допълнителната информация" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Получаване на изискванията" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Получаване на обновленията" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Търсене в допълнителната информация" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Търсене на файл" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Търсене в групите" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Търсене по име на пакет" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Деинсталиране" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Инсталиране" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Инсталиране на файл" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Обновяване на кеша с пакетите" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Обновяване на пакети" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Обновяване на системата" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Отмяна" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Връщане" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Получаване на списъка с хранилища" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Използване на хранилище" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Задаване на данните на хранилище" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Изчисляване" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Получаване на списъците с файлове" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Получаване на предоставящите" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Инсталиране на подпис" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Получаване на списъците с пакети" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Приемане на ЛСКП (EULA)" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Изтегляне на пакети" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Получаване на информацията за обновяване на дистрибуцията" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Получаване на категории" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Получаване на старите транзакции" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -948,21 +1064,21 @@ msgid "Simulating the install of files" msgstr "Неуспешно инсталиране на файл" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Single file installer" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Инсталатор на отделни файлове" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Деинсталатор на отделен пакет" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -970,162 +1086,162 @@ msgid "Simulating the update" msgstr "1 важно обновление" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Неизвестен вид роля" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Получени са зависимоститe" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Получена е допълнителната информация за обновленията" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Получена е допълнителната информация" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Получени са изискванията" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Получени са обновленията" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Търсено е в допълнителната информация за пакетите" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Търсено е за файл" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Търсено е в групите" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Търсено е по име на пакет" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Деинсталирани са пакети" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Инсталирани са пакети" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Инсталиран e локален файл" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Обновен е кешът с пакетите" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Обновявани са пакети" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Обновена е системата" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Отменена" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Върната" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Получен е списъкът с хранилища" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Включено е хранилище" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Зададени са данните на хранилище" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Изчисляване" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Получен е списък с файлове" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Получени са кои предоставят" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Инсталиран е подпис" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Получени са списъците с пакети" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Прието е ЛСКП (EULA)" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Изтеглени са пакети" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Получени са обновленията на дистрибуцията" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Получени са категориите" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Получени са старите транзакции" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1133,275 +1249,283 @@ msgid "Simulated the install of files" msgstr "Неуспешно инсталиране на файл" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Mime type installer" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Инсталатор на видове MIME" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Деинсталатор на отделен пакет" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Липсва мрежова връзка" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Няма кеш на пакетите" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Паметта свърши" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Неуспех при създаването на нишка" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Не се поддържа от това ядро" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Възникна вътрешна, системна грешка" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Няма доверие относно сигурността" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Пакетът не е инсталиран" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Пакетът не е открит" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Пакетът вече е инсталиран" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Неуспешно изтегляне на пакета" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Групата не бе открита" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Списъкът с групи е невалиден" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Неуспешно изчисляване на зависимости" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Филтърът за търсене е невалиден" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Идентификаторът на пакета е неправилен" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Грешка при прехвърляне" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Името на хранилището не е открито" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Защитените системни пакети не могат да бъдат деинсталирани" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Задачата бе отменена" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Задачата бе отменена принудително" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Файлът с настройките не може да бъде прочетен" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Задачата не може да бъде отменена" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Пакетите с изходен код не могат да бъдат инсталирани" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Приемането на лицензното споразумение беше неуспешно" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Конфликт между пакети" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Пакетите не са съвместими" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +#, fuzzy +#| msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Проблeм при свързване с източника на софтуера" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Неуспешно инсталиране" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Неуспешно завършване" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Невъзможно заключване" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Няма пакети за обновяване" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Настройките на хранилището не могат да бъдат записани" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Неуспешно локално инсталиране" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Лош подпис на GPG" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Липсващ подпис на GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Невалидни настройки на хранилище" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Невалиден файл от пакет" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Инсталирането на пакети е блокирано" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Пакетът е повреден" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Всички пакети вече са инсталирани" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Файлът не може да бъде открит" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Няма други огледала" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Няма по-нова версия на дистрибуцията" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Пакетът не е съвместим със системата" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Мястото на диска свърши" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Обновлението не е открито" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot install from untrusted origin" +msgstr "Пакетът не може да бъде открит в никой източник на софтуер" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot update from untrusted origin" +msgstr "Пакетът не може да бъде открит в никой източник на софтуер" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Грешка при получяване списъка с файлове" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "An additional package is required:" #| msgid_plural "Additional packages are required:" msgid "Cannot get package requires" msgstr "Изисква се допълнителен пакет:" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Неуспешно изтегляне на пакета" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Пакетен файл за инсталиране" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Пакетен файл за инсталиране" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Пакетен файл за инсталиране" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Пакетен файл за инсталиране" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Неизвестна грешка" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1409,7 +1533,7 @@ "Няма връзка с мрежата.\n" "Проверете настройките и пробвайте отново." -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1417,7 +1541,7 @@ "Списъкът с пакети трябва да бъде генериран отново.\n" "Това трябваше да бъде направено от ядрото автоматично." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1427,11 +1551,11 @@ "потребителски заявки.\n" "Затворете част от програмите или рестартирайте компютъра." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Не може да бъде създадена нишка за тази потребителска заявка." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1439,7 +1563,7 @@ "Ядрото не поддържа това действие.\n" "Моля, докладвайте тази грешка, тя не бива да се случва." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1447,39 +1571,39 @@ "Възникна неочакван проблем.\n" "Моля, докладвайте тази грешка." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Няма доверие към източника на софтуера.\n" "Проверете настройките на подписите." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Опитвате се да обновите или деинсталирате неинсталиран пакет." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "Опитвате се да промените несъществуващ пакет." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Опитвате се да инсталирате вече инсталиран пакет." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1487,7 +1611,7 @@ "Неуспешно изтегляне на пакет.\n" "Проверете връзката си с мрежата." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1495,7 +1619,7 @@ "Този вид група не бе открит.\n" "Проверете списъка си с групи и пробвайте отново." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1503,14 +1627,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Списъкът с групи не може да бъде зареден.\n" "Пробвайте да обновите кеша си. Все пак най-честата причина е грешка в " "източника на софтуер." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1518,11 +1642,11 @@ "Някоя зависимост не може да бъде задоволена.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Филтърът за търсене е неправилен." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1530,7 +1654,7 @@ "Неправилен идентификатор бе пратен на системния демон.\n" "Това обикновено означава вътрешна грешка и би трябвало да се докладва." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1538,27 +1662,27 @@ "По време на прехвърлянето възникна грешка.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Името на източника не бе открито.\n" "Пробвайте да го включите в раздела \"Източници на софтуер\"." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Защитените систeмни пакети не могат да бъдат деинсталирани." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Задачата бе отменена и пакетите не са променени." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1566,7 +1690,7 @@ "Задачата бе отменена и никой пакет не е променен.\n" "Ядрото не завърши нормално работата си." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1574,11 +1698,11 @@ "Файлът с настройки на пакетите не може да бъде отворен.\n" "Проверете настройките на системата си." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Отмяната на задачата сега не е безопасно." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1586,7 +1710,7 @@ "Пакетите с изходен код обикновено не се инсталират така.\n" "Проверете разширението на инсталирания файл." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1594,44 +1718,44 @@ "Не сте приели лицензното споразумение.\n" "Трябва да го приемете, за да използвате този софтуер." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Файлът се предоставя от два пакета.\n" "Това обикновено се дължи на смесването на пакети от различни източници." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Има множество пакети, които са взаимно несъвместими.\n" "Това обикновено се дължи на смесването на пакети от различни източници." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software " #| "source.\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Имаше проблем (вероятно временен) при свързването с източника на софтуер\n" "За повече информация погледнете подробния доклад." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1640,7 +1764,7 @@ "Това може да се получи, ако в момента ползвате и други инсталационни " "инструменти." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1648,7 +1772,7 @@ "Неуспешно спиране на стартираното ядро.\n" "Обикновено тази грешка може да бъде пренебрегната." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1656,15 +1780,15 @@ "Пакетното ядро не може да бъде заключено изключително.\n" "Затворете всички други отворени инструменти." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Никой от избраните пакети не може да бъде обновен." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Настройките на хранилището не могат да бъдат променени." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1672,11 +1796,11 @@ "Неуспешно инсталиране на локален файл.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Подписът на пакета не може да бъде променен." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1684,11 +1808,11 @@ "Липсва подпис и пакетът не е сигурен.\n" "Този пакет не е подписан с ключ на GPG при създаването му." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Настройките на хранилището са невалидни и не могат да бъдат прочетени." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1696,23 +1820,23 @@ "Пакетът, който искате да инсталирате, е невалиден.\n" "Може би е повреден или не е подходящия пакет." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "Настройките на системата предотвратиха инсталирането на този пакет." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Пакетът е повреден и трябва да бъде изтеглен отново." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Всички избрани пакети вече са инсталирани." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1720,21 +1844,21 @@ "Файлът не е открит на системата.\n" "Проверете дали все още съществува и дали не е бил изтрит." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Необходимите данни не могат да бъдат открити в никой от източниците на " "софтуер.\n" "Няма повече огледала, които да бъдат проверени." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required upgrade data could not be found in any of the configured " @@ -1742,21 +1866,21 @@ #| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Необходимите данни не могат да бъдат открити в никой от източниците на " "софтуер.\n" "Списъкът с обновления на дистрибуцията няма да бъде наличен." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "В момента се пробва инсталирането на пакет, който не е съвместим с тази " "система." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1764,55 +1888,55 @@ "Върху устройството няма достатъчно свободно място.\n" "Освободете част от системния диск и опитайте отново." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "За да завършите транзакцията, ви трябва друг носител." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "Пакетът не може да бъде открит в никой източник на софтуер" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "Пакетът не може да бъде открит в никой източник на софтуер" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The file could not be found in any packages" #| msgid_plural "The files could not be found in any packages" msgid "The file list is not available for this package." msgstr "Файлът не може да бъде открит в никой пакет" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Файлът не може да бъде открит" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -1824,7 +1948,7 @@ "Някоя зависимост не може да бъде задоволена.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1836,7 +1960,7 @@ "Неуспешно инсталиране на локален файл.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1848,7 +1972,7 @@ "Неуспешно инсталиране на локален файл.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1860,7 +1984,7 @@ "Неуспешно инсталиране на локален файл.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1872,7 +1996,7 @@ "Неуспешно инсталиране на локален файл.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1880,239 +2004,239 @@ "Непозната грешка. Моля, съобщете за тази грешка.\n" "Повече информация ще намерите в подробния доклад." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Достъпност" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Помощни програми" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Образование" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Игри" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Графика" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Интернет" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Офис" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Други" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "За разработчици" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Мултимедия" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Система" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Работна среда GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Работна среда KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Работна среда XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Други работни среди" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Публикуване" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Сървъри" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Шрифтове" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Административни инструменти" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Остарял софтуер" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Локализация" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Виртуализация" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Сигурност" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Управление на захранването" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Комуникации" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Мрежа" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Карти" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Източници на софтуер" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Наука" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Документация" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Електроника" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Колекции от пакети" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Производител" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Само най-новите пакети" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Неизвестна група" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Тривиално обновление" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Нормално обновление" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Важно обновление" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Обновление по сигурността" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Поправка на грешки" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Обновление с подобрения" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Блокирано обновление" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Инсталирани" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Достъпни" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Непознато обновление" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 тривиално обновление" msgstr[1] "%1 тривиални обновления" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2120,70 +2244,70 @@ msgstr[0] "1 обновление" msgstr[1] "%1 обновления" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 важно обновление" msgstr[1] "%1 важни обновления" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 обновление по сигурността" msgstr[1] "%1 обновления по сигурността" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 поправка на грешки" msgstr[1] "%1 поправки на грешки" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 подобряване на функционалността" msgstr[1] "%1 подобрявания на функционалността" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 блокирано обновяване" msgstr[1] "%1 блокирани обновявания" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 инсталиран пакет" msgstr[1] "%1 инсталирани пакети" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 наличен пакет" msgstr[1] "%1 налични пакета" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 неуточнено обновяване" msgstr[1] "%1 неуточнени обновявания" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "Избрано е 1 тривиално обновление" msgstr[1] "Избрани са %1 тривиални обновления" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2191,56 +2315,56 @@ msgstr[0] "Избрано е 1 обновление" msgstr[1] "Избрани са %1 обновления" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "Избрано е 1 важно обновление" msgstr[1] "Избрани са %1 важни обновления" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "Избрано е 1 обновление по сигурността" msgstr[1] "Избрани са %1 обновления по сигурността" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "Избрана е 1 поправка на грешки" msgstr[1] "Избрани са %1 поправки на грешки" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "Избрано е 1 подобряване на функционалността" msgstr[1] "Избрани са %1 подобрявания на функционалността" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "За деинсталиране е избран 1 инсталиран пакет" msgstr[1] "За деинсталиране са избрани %1 инсталирани пакети" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "За инсталиране е избран 1 наличен пакет" msgstr[1] "За инсталиране са избрани %1 налични пакета" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 тривиално обновление" msgstr[1] "%1 тривиални обновления, %2 избрани" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2248,318 +2372,490 @@ msgstr[0] "%1 обновление" msgstr[1] "%1 обновления, %2 избрани" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 важно обновление" msgstr[1] "%1 важни обновления, %2 избрани" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 обновление по сигурността" msgstr[1] "%1 обновления по сигурността, %2 избрани" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 поправка на грешки" msgstr[1] "%1 поправки на грешки, %2 избрани" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 подобряване на функционалността" msgstr[1] "%1 подобрявания на функционалността, %2 избрани" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 блокирано обновяване" msgstr[1] "%1 блокирани обновявания" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 инсталиран пакет" msgstr[1] "%1 инсталирани пакета, %2 избрани за премахване" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 наличен пакет" msgstr[1] "%1 налични пакета, %2 избрани за инсталиране" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 неуточнено обновяване" msgstr[1] "%1 неуточнени обновявания" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Не се изисква рестартиране." -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Ще се изисква да рестартирате програмата" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Ще се изисква да излезете и да влезете в системата" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Ще се изисква да рестартирате" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log out and back in" msgid "You will be required to log out and back in due to a security update." msgstr "Ще се изисква да излезете и да влезете в системата" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "A restart will be required" msgid "A restart will be required due to a security update." msgstr "Ще се изисква да рестартирате" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Не се изисква да рестартирате" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Изисква се да рестартирате" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Трябва да излезете и влезете в системата" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Трябва да рестартирате програмата" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You need to log out and log back in" msgid "You need to log out and log back in to remain secure." msgstr "Трябва да излезете и влезете в системата" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "A restart is required" msgid "A restart is required to remain secure." msgstr "Изисква се да рестартирате" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Стабилна" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Нестабилна" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Тествана" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Поставете CD с етикет \"%1\" и натиснете \"Продължение\"." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Поставете DVD с етикет \"%1\" и натиснете \"Продължение\"." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Поставете диска с етикет \"%1\" и натиснете \"Продължение\"." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Поставете носителя с етикет \"%1\" и натиснете \"Продължение\"." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Изглежда, че огледалният сайт е повреден" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Връзката е отказана" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Невалиден параметър" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Невалиден приоритет" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Предупреждение от ядрото" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Предупреждение от демона" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Кешът на списъкът с пакети се изгражда наново" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Инсталиран бе недоверен пакет" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Съществува по-нов пакет" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Не може да бъде открит пакет" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Файловете с настройки са променени" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Пакетът вече е инсталиран" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Неуспешно изтегляне на пакета" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Нямате права за това действие." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Защитените системни пакети не могат да бъдат деинсталирани" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Подписът на пакета не може да бъде променен." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The priority was invalid" msgid "The query is not valid." msgstr "Невалиден приоритет" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "Файлът не беше инсталиран" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Could not find package" msgid "Could not talk to packagekitd." msgstr "Не може да бъде открит пакет" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Неизвестна грешка" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Пренебрегване" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "Имате %1" +msgid "" +"The following file is required:
  • %2
Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
  • %2
Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, kde-format -msgid "
And another update" -msgid_plural "
And %1 more updates" -msgstr[0] "
И още 1 обновление" -msgstr[1] "
И още %1 обновления" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Програма иска да инсталира файл" +msgstr[1] "Програма иска да инсталира файлове" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 иска да инсталира файл" +msgstr[1] "%1 иска да инсталира файлове" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Инсталиране" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Неуспешно стартиране на транзакция за търсене на файлове" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Пакетът %1 вече предоставя този файл" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Неуспешно инсталиране на файл" +msgstr[1] "Неуспешно инсталиране на файлове" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Следният пакет ще бъде инсталиран" +msgstr[1] "Следните пакети ще бъдат инсталирани" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Файлът не може да бъде открит в никой пакет" +msgstr[1] "Файловете не могат да бъдат открити в никой пакет" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Неуспешно търсене на пакет" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Имате %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
And another update" +msgid_plural "
And %1 more updates" +msgstr[0] "
И още 1 обновление" +msgstr[1] "
И още %1 обновления" + +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Преглед и обновяване" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Не сега" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Да не се пита повече" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Обновленията се инсталират автоматично." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Обновленията по сигурността се инсталират автоматично." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Обновяването на системата беше успешно." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Обновяването на софтуера бе неуспешно." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Изисква се следния файл:" +msgstr[1] "Изискват се следните файлове:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Искате ли да търсите за това?" +msgstr[1] "Искате ли да търсите за тези?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 иска да инсталира файл" +msgstr[1] "%1 иска да инсталира файлове" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Обновяване" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Обновяването на дистрибуцията завърши." +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Неуспешно стартиране на транзакция за изчисление" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Получени са старите транзакции" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Неизвестна грешка" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
  • %2
Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
  • %2
Do you want to search " +"for and install these packages now?" +msgstr[0] "Искате ли този пакет да бъде търсен и инсталиран?" +msgstr[1] "Искате ли тези пакети да бъдат търсени и инсталирани?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Програма иска да инсталира пакет" +msgstr[1] "Програма иска да инсталира пакети" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 иска да инсталира пакет" +msgstr[1] "%1 иска да инсталира пакети" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Инсталиране" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Пакетът вече е инсталиран" +msgstr[1] "Пакетът вече е инсталиран" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Неуспешно инсталиране на пакет" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Пакетът не може да бъде открит в никой източник на софтуер" +msgstr[1] "Пакетите не могат да бъдат открити в никой източник на софтуер" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "%1 не може да бъде открит" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2584,198 +2880,304 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt и други" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
%1
Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"За отварянето на файлове от вида:
%1
е необходима допълнителна " +"програма. Искате ли да се търси такава сега?" +msgstr[1] "" +"За отварянето на файлове от вида:
%1
е необходима допълнителна " +"програма. Искате ли да се търси такава сега?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Програма иска да инсталира файл" +msgstr[1] "Програма иска да инсталира файлове" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 иска да инсталира файл" +msgstr[1] "%1 иска да инсталира файлове" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Търсене" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Неуспешно търсене на предоставяните" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Програма, която отваря този вид файлове" +msgstr[1] "Програми, които отварят този вид файлове" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Не са открити програми, които отварят този вид файлове" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Неуспешно търсене на програма" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Този обект не се поддържа от ядрото или не е файл." +msgstr[1] "Тези обекти не се поддържат от ядрото или не са файлове." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Инсталирането е невъзможно" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Инсталиране" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Искате ли да инсталирате този файл?" +msgstr[1] "Искате ли да инсталирате тези файлове?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Инсталиране?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Файлът не беше инсталиран" +msgstr[1] "Файловете не бяха инсталирани" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Файлът беше инсталиран успешно" +msgstr[1] "Файловете бяха инсталирани успешно" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Възникна грешка." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
  • %2
Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
  • %2
Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Програмата изисква нов вид MIME" +msgstr[1] "Програмата изисква нови видове MIME" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Програмата изисква нов вид MIME" +msgstr[1] "Програмата изисква нови видове MIME" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Програмата изисква нов вид MIME" +msgstr[1] "Програмата изисква нови видове MIME" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Искате ли този пакет да бъде търсен и инсталиран?" +msgstr[1] "Искате ли тези пакети да бъдат търсени и инсталирани?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Пакетът не може да бъде открит в никой източник на софтуер" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Неуспешно търсене на предоставяните" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Пакетът не може да бъде открит в никой източник на софтуер" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Прехвърляния" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Обновяване на списъка с пакети" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Показване на съобщенията" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Скриване на тази икона" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "Пакет: %1" msgstr[1] "Пакети: %1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "1 съобщение от управлението на пакети" msgstr[1] "%1 съобщения от управлението на пакети" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Обновяването на системата завърши" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Рестартиране" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Не сега" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Изход" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Съобщения от управлението на пакети" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Съобщение" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Настройки на KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Ежечасно" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Ежедневно" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Ежеседмично" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Ежемесечно" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Никога" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Само за сигурността" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Всички обновления" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Никои" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Нямате права за това действие." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Неуспех при задаването на данни за произхода" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Изисква се следния файл:" -msgstr[1] "Изискват се следните файлове:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Искате ли да търсите за това?" -msgstr[1] "Искате ли да търсите за тези?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Програма иска да инсталира файл" -msgstr[1] "Програма иска да инсталира файлове" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 иска да инсталира файл" -msgstr[1] "%1 иска да инсталира файлове" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Инсталиране" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Неуспешно стартиране на транзакция за търсене на файлове" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Пакетът %1 вече предоставя този файл" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Следният пакет ще бъде инсталиран" -msgstr[1] "Следните пакети ще бъдат инсталирани" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Файлът не може да бъде открит в никой пакет" -msgstr[1] "Файловете не могат да бъдат открити в никой пакет" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Неуспешно търсене на пакет" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Програма иска да премахне файл" msgstr[1] "Програма иска да премахне файлове" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" msgstr[0] "%1 иска да премахне файл" msgstr[1] "%1 иска да премахне файлове" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Следният файл ще бъдe деинсталиран:" msgstr[1] "Следните файлове ще бъдат деинсталирани:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2788,28 +3190,176 @@ "Искате ли да се търсят пакети, които съдържат тези файлове и които да бъдат " "деинсталирани?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Търсене" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "Следният пакет ще бъдe деинсталиран" -msgstr[1] "Следните пакети ще бъдат деинсталирани" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Следният пакет ще бъдe деинсталиран" +msgstr[1] "Следните пакети ще бъдат деинсталирани" + +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "Файлът не може да бъде открит в нито един инсталиран пакет" +msgstr[1] "Файловете не могат да бъдат открити в нито един инсталиран пакет" + +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
%1
Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
  • %1
  • Do you want to search for a program to open this file type now?" +msgstr "" +"За отварянето на файлове от вида:
    %1
    е необходима допълнителна " +"програма. Искате ли да се търси такава сега?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Програмата изисква нов вид MIME" +msgstr[1] "Програмата изисква нови видове MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 изисква нов вид MIME" +msgstr[1] "%1 изисква нови видове MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Търсене" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Не са открити програми, които отварят този вид файлове" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Неуспешно търсене на програма" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

    Do you want to install this catalog?

    • %2
    " +msgid_plural "" +"

    Do you want to install these catalogs?

    • %2
    " +msgstr[0] "Искате ли да инсталирате този файл?" +msgstr[1] "Искате ли да инсталирате тези файлове?" + +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Инсталиране" +msgstr[1] "Инсталиране" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Инсталиране" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Текущото ядро не позволява инсталиране на пакети." + +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "Поддържани" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Пакетен файл за инсталиране" +msgstr[1] "Пакетен файл за инсталиране" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Неуспешно завършване" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Пакетите с изходен код не могат да бъдат инсталирани" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Неуспешно стартиране на транзакция за изчисление" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Настройки на KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Ежечасно" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Ежедневно" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Ежеседмично" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Ежемесечно" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Никога" + +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Само за сигурността" + +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "Всички обновления" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "Файлът не може да бъде открит в нито един инсталиран пакет" -msgstr[1] "Файловете не могат да бъдат открити в нито един инсталиран пакет" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Никои" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "%1 не може да бъде открит" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Неуспех при задаването на данни за произхода" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2847,138 +3397,6 @@ msgid "Package file to install" msgstr "Пакетен файл за инсталиране" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Този обект не се поддържа от ядрото или не е файл." -msgstr[1] "Тези обекти не се поддържат от ядрото или не са файлове." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Инсталирането е невъзможно" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Инсталиране" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Искате ли да инсталирате този файл?" -msgstr[1] "Искате ли да инсталирате тези файлове?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Инсталиране?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Файлът не беше инсталиран" -msgstr[1] "Файловете не бяха инсталирани" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Неуспешно инсталиране на файл" -msgstr[1] "Неуспешно инсталиране на файлове" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Файлът беше инсталиран успешно" -msgstr[1] "Файловете бяха инсталирани успешно" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Възникна грешка." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Изисква се допълнителен пакет:" -msgstr[1] "Изискват се допълнителни пакети:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Искате ли този пакет да бъде търсен и инсталиран?" -msgstr[1] "Искате ли тези пакети да бъдат търсени и инсталирани?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Програма иска да инсталира пакет" -msgstr[1] "Програма иска да инсталира пакети" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 иска да инсталира пакет" -msgstr[1] "%1 иска да инсталира пакети" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Инсталиране" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Неуспешно стартиране на транзакция за изчисление" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Пакетът не може да бъде открит в никой източник на софтуер" -msgstr[1] "Пакетите не могат да бъдат открити в никой източник на софтуер" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
    %1
    Do " -"you want to search for a program to open this file type now?" -msgstr "" -"За отварянето на файлове от вида:
    %1
    е необходима допълнителна " -"програма. Искате ли да се търси такава сега?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Програмата изисква нов вид MIME" -msgstr[1] "Програмата изисква нови видове MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 изисква нов вид MIME" -msgstr[1] "%1 изисква нови видове MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Търсене" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Неуспешно търсене на предоставяните" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Програма, която отваря този вид файлове" -msgstr[1] "Програми, които отварят този вид файлове" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Не са открити програми, които отварят този вид файлове" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Неуспешно търсене на програма" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2989,19 +3407,19 @@ msgid "Your emails" msgstr "Адресите на е-пощата ви" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Избиране на всички обновления" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Обновяване" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3039,59 +3457,71 @@ msgid "Required by" msgstr "Изисква се от" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Инсталиране и деинсталиране на софтуер" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Търсене на пакети" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Филтри" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Всички пакети" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - транзакция" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Прехвърляния" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Действие" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Изтегляне на пакети" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Библиотека за foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "Текстов етикет" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 #, fuzzy #| msgid "Additional media is required to complete the transaction." msgid "Additional changes are required to complete the task" @@ -3099,341 +3529,402 @@ #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Действие" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "Текстов етикет" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Име на хранилище:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Адрес на подпис:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Идентификатор на подписващия:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Идентификатор на подписа:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Разпознавате ли потребителя и имате ли доверие в този ключ?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Имате ли доверие на източника на пакетите?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Прочетете следната важна информация преди да продължите:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Настройки" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Настройки на KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Проверка за обновления:" +#, fuzzy +#| msgid "Show settings" +msgid "Update settings" +msgstr "Показване на настройките" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Автоматично инсталиране:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Проверка за обновления:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Икона в системния панел" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Автоматично инсталиране:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Уведомяване, когато има обновления" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Уведомяване при приключването на големите задачи" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Произход на пакетите" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "" "&Показване произхода на пакетите за разработчици и изчистване на грешки" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Относно ядрото" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Име на ядро:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "име на ядро" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Автор на ядрото:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "Търсене по &описание" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "автор на ядрото" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "име на ядро" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Пакетът е видим" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Най-нови" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "ГПИ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Свободен софтуер" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Поддържани" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Методи" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Получаване на обновления" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Обновяване на пакет" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Получаване на списък с хранилищетата" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Обновяване на кеша" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Инсталиране на пакет" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Включване на хранилище" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Обновяване на системата" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Деинсталиране на пакет" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Включване на хранилище" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Търсене по име" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Получаване на зависимостите" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "Кое предоставя" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Търсене в допълнителната информация" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Получаване на изискванията" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Получаване на пакети" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Търсене в групите" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Получаване на допълнителната информация за обновленията" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Търсене на файл" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Получаване на описание" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Получаване на файлове" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Изчисляване" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Инсталиране на файл" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "InstallFIle" msgid "SimulateInstallFiles" msgstr "Инсталиране на файл" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "InstallPackage" msgid "SimulateInstallPackages" msgstr "Инсталиране на пакет" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "RemovePackage" msgid "SimulateRemovePackages" msgstr "Деинсталиране на пакет" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "UpdatePackage" msgid "SimulateUpdatePackages" msgstr "Обновяване на пакет" + +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Получени са старите транзакции" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "Този обект не се поддържа от ядрото или не е файл." +#~ msgstr[1] "Тези обекти не се поддържат от ядрото или не са файлове." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Изисква се допълнителен пакет:" +#~ msgstr[1] "Изискват се допълнителни пакети:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Искате ли този пакет да бъде търсен и инсталиран?" +#~ msgstr[1] "Искате ли тези пакети да бъдат търсени и инсталирани?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
    %1
    Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "За отварянето на файлове от вида:
    %1
    е необходима допълнителна " +#~ "програма. Искате ли да се търси такава сега?" + +#~ msgid "All packages" +#~ msgstr "Всички пакети" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Нямате права за това действие." + +#~ msgid "Package Name" +#~ msgstr "Име на пакет" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Настройки на KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Икона в системния панел" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Уведомяване при приключването на големите задачи" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - транзакция" + +#~ msgid "A library to do foo" +#~ msgstr "Библиотека за foo" diff -Nru kpackagekit-0.5.4/po/ca/kpackagekit.po kpackagekit-0.6.0/po/ca/kpackagekit.po --- kpackagekit-0.5.4/po/ca/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/ca/kpackagekit.po 2010-01-30 08:59:42.000000000 +0000 @@ -8,15 +8,15 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-06-19 16:57+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-30 17:45+0100\n" "Last-Translator: Joan Maspons \n" -"Language-Team: Catalan \n" +"Language-Team: Català \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 0.3\n" +"X-Generator: Lokalize 1.0\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -29,11 +29,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detalls" @@ -95,20 +95,20 @@ "És recomanable que mantingueu l'ordinador endollat mentre es du a terme " "l'actualització." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "S'ha completat l'actualització de la distribució." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "L'actualització de la distribució ha sortit amb el codi %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "El procés d'actualització de la distribució no ha pogut començar." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -116,7 +116,7 @@ "El procés d'actualització de la distribució ha fallat després de començar " "correctament. " -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" "El procés d'actualització de la distribució ha fallat donant un error " @@ -198,28 +198,24 @@ msgid "Time since last cache refresh: %1" msgstr "Temps des de l'últim refresc de la memòria cau: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nom del paquet" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Pàgina inicial" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Llicència" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grup" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Pàgina inicial" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Mida" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "No s'ha trobat cap fitxer." @@ -231,254 +227,259 @@ msgid "KDE interface for managing software" msgstr "Interfície del KDE per gestionar el programari" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Cerca" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Tots els paquets" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Cerca de text" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Llista de canvis" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Grup:" msgstr[1] "Grups:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cancel·la" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Cerca per &nom" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Cerca per nom de f&itxer" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Cerca per &descripció" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Revisa els canvis" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Col·leccions" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Només col·leccions" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Exclou col·leccions" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Instal·lat" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Només instal·lat" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Només disponible" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Cap filtre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Desenvolupament" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Només desenvolupament" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Només fitxers de l'usuari final" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Gràfics" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Només gràfics" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Només text" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Lliure" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Només programari lliure" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Només programari no lliure" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arquitectures" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Només arquitectures natives" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Només arquitectures no natives" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Codi font" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Només codi font" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Només no codi font" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Oculta els subpaquets" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Mostra només un paquet, no els subpaquets" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Només els paquets més nous" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Mostra només el paquet disponible més nou" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Visualitza en grups" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Mostra els paquets agrupats segons el seu estat" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "S'instal·larà el paquet següent:" msgstr[1] "S'instal·laran els paquets següents:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instal·la ara" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "S'eliminarà el paquet següent:" msgstr[1] "S'eliminaran els paquets següents:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Elimina ara" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "S'eliminarà i s'instal·larà el paquet següent:" msgstr[1] "S'eliminaran i s'instal·laran els paquets següents:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Aplica-ho ara" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "No s'ha pogut simular l'eliminació de paquets" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "El dorsal actual no implementa l'eliminació de paquets" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Error del KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "No s'ha pogut simular l'instal·lació de paquets" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "El dorsal actual no implementa l'instal·lació de paquets" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "No s'ha pogut eliminar el paquet" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "No s'ha pogut instal·lar el paquet" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "No s'ha pogut eliminar el paquet" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Oculta" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Permet ocultar la finestra mentre manté les tasques de transacció executant-" "se." -#: libkpackagekit/KpkTransaction.cpp:330 -#, fuzzy -#| msgid "" -#| "
    Installing unsigned packages can compromise your system, as it is " -#| "impossible to verify if the software came from a trusted source. Are you " -#| "sure you want to continue installation?" +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -"
    La instal·lació de paquets no signats pot comprometre el vostre " +"Esteu a punt d'instal·lar paquets no signats que poden comprometre el vostre " "sistema ja que és impossible de verificar si el programari ve d'una font de " -"confiança. Segur que voleu continuar amb la instal·lació?" +"confiança.\n" +" Segur que voleu continuar amb la instal·lació?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "S'està instal·lant programari no signat" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Cal canviar el suport" @@ -489,10 +490,8 @@ #: libkpackagekit/KpkPackageModel.cpp:142 #: libkpackagekit/KpkSimulateModel.cpp:122 -#, fuzzy -#| msgid "KPackageKit" msgid "Package" -msgstr "KPackageKit" +msgstr "Paquet" #: libkpackagekit/KpkLicenseAgreement.cpp:34 msgid "Accept Agreement" @@ -500,7 +499,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Es requereix acceptar l'acord de la llicència" @@ -510,917 +509,874 @@ msgstr "Es requereix llicència per %1 de %2" #: libkpackagekit/KpkSimulateModel.cpp:124 -#, fuzzy -#| msgid "New version" msgid "Version" -msgstr "Nova versió" +msgstr "Versió" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cancel·la" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Acabat en %1" #: libkpackagekit/KpkRequirements.cpp:219 -#, fuzzy -#| msgid "List of changes" msgid "Additional changes" -msgstr "Llista de canvis" +msgstr "Canvis addicionals" #: libkpackagekit/KpkRequirements.cpp:221 msgid "Continue" -msgstr "" +msgstr "Continua" #: libkpackagekit/KpkRequirements.cpp:252 -#, fuzzy, kde-format -#| msgid "Single package remover" +#, kde-format msgid "1 package to remove" msgid_plural "%1 packages to remove" -msgstr[0] "Eliminador de paquets solts" -msgstr[1] "Eliminador de paquets solts" +msgstr[0] "1 paquet a eliminar" +msgstr[1] "%1 paquets a eliminar" #: libkpackagekit/KpkRequirements.cpp:261 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to downgrade" msgid_plural "%1 packages to downgrade" -msgstr[0] "No hi ha cap paquet per actualitzar" -msgstr[1] "No hi ha cap paquet per actualitzar" +msgstr[0] "1 paquet a desactualitzar" +msgstr[1] "%1 paquets a desactualitzar" #: libkpackagekit/KpkRequirements.cpp:272 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to reinstall" msgid_plural "%1 packages to reinstall" -msgstr[0] "Fitxer de paquet a instal·lar" -msgstr[1] "Fitxer de paquet a instal·lar" +msgstr[0] "1 paquet a reinstal·lar" +msgstr[1] "%1 paquets a reinstal·lar" #: libkpackagekit/KpkRequirements.cpp:283 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to install" msgid_plural "%1 packages to install" -msgstr[0] "Fitxer de paquet a instal·lar" -msgstr[1] "Fitxer de paquet a instal·lar" +msgstr[0] "1 paquet a instal·lar" +msgstr[1] "%1 paquets a instal·lar" #: libkpackagekit/KpkRequirements.cpp:294 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to update" msgid_plural "%1 packages to update" -msgstr[0] "No hi ha cap paquet per actualitzar" -msgstr[1] "No hi ha cap paquet per actualitzar" +msgstr[0] "1 paquet a actualitzar" +msgstr[1] "%1 paquets a actualitzar" #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Es requereix la signatura del programari" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Estat desconegut" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "S'està esperant que comenci el servei" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "S'estan esperant altres tasques" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Tasca en execució" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "S'està consultant" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "S'està obtenint la informació" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "S'estan eliminant paquets" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "S'estan descarregant els paquets" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "S'estan instal·lant paquets" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "S'està refrescant la llista de programari" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "S'estan actualitzant els paquets" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "S'estan netejant els paquets" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" -msgstr "S'estan deixant obsolets els paquets" +msgstr "S'estan deixant els paquets obsolets" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "S'estan resolent les dependències" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "S'estan comprovant les signatures" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "S'està desfent" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "S'estan comprovant els canvis" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" -msgstr "S'estan validant els canvis" +msgstr "S'estan aplicant els canvis" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "S'estan demanant dades" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Finalitzat" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "S'està cancel·lant" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "S'està descarregant la informació del repositori" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "S'està descarregant la llista de paquets" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "S'està descarregant la llista de fitxers" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" -msgstr "S'està descarregant la llista de paquets" +msgstr "S'estan descarregant les llistes de canvis" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "S'estan descarregant els grups" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "S'està descarregant la informació de l'actualització" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "S'estan re-empaquetant els fitxers" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "S'està carregant la memòria cau" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "S'està escanejant les aplicacions instal·lades" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "S'està generant la llista de paquets" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "S'està esperant el tancament del gestor de paquets" -#: libkpackagekit/KpkStrings.cpp:95 -#, fuzzy -#| msgctxt "The transaction state" -#| msgid "Waiting for other tasks" -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" -msgstr "S'estan esperant altres tasques" +msgstr "S'està esperant l'autenticació" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" -msgstr "" +msgstr "S'està actualitzant la llista de les aplicacions en execució" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" -msgstr "" +msgstr "S'estan comprovant les aplicacions que s'usen actualment" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" -msgstr "" +msgstr "S'estan comprovant les biblioteques que s'usen actualment" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "S'estan copiant els fitxers" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Descarregat" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Actualitzat" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Instal·lat" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Eliminat" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Netejat" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Obsolet" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Tipus de rol desconegut" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "S'està accedint a les dependències" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "S'està accedint als detalls de l'actualització" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "S'està accedint als detalls" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "S'està accedint als requeriments" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "S'està accedint a les actualitzacions" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "S'estan cercant els detalls" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "S'està cercant un fitxer" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "S'estan cercant grups" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "S'està cercant per nom de paquet" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "S'està eliminant" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "S'està instal·lant" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "S'està instal·lant un fitxer" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "S'està refrescant la memòria cau dels paquets" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "S'estan actualitzant els paquets" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "S'està actualitzant el sistema" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "S'està cancel·lant" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "S'està desfent" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "S'està accedint a la llista de repositoris" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "S'està activant el repositori" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "S'està assignant les dades del repositori" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "S'està resolent" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "S'està obtenint la llista de fitxers" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "S'està accedint al què proporciona" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "S'està instal·lant la signatura" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "S'està accedint a les llistes del paquet" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "S'està acceptant el CLUF" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "S'estan descarregant els paquets" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "S'està obtenint la informació de l'actualització de la distribució" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "S'està accedint a les categories" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "S'estan obtenint les transaccions antigues" -#: libkpackagekit/KpkStrings.cpp:194 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" -msgstr "No s'ha pogut instal·lar el fitxer" +msgstr "S'està simulant la instal·lació de fitxer" -#: libkpackagekit/KpkStrings.cpp:196 -#, fuzzy -#| msgid "Single file installer" +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" -msgstr "Instal·lador de fitxers solts" +msgstr "S'està simulant la instal·lació" -#: libkpackagekit/KpkStrings.cpp:198 -#, fuzzy -#| msgid "Single package remover" +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" -msgstr "Eliminador de paquets solts" +msgstr "S'està simulant l'eliminació" -#: libkpackagekit/KpkStrings.cpp:200 -#, fuzzy -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" -msgstr "1 actualització important" +msgstr "S'està simulant l'actualització" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Tipus de rol desconegut" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "S'han obtingut les dependències" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "S'han obtingut els detalls de l'actualització" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "S'han obtingut els detalls" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "S'han obtingut els requeriments" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "S'han obtingut les actualitzacions" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "S'ha cercat per detalls del paquet" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "S'ha cercat per fitxer" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "S'han cercat grups" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "S'ha cercat pel nom de paquet" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "S'han eliminat els paquets" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "S'han instal·lat els paquets" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "S'han instal·lat els fitxers locals" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "S'ha refrescat la memòria cau del paquet" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "S'han actualitzat els paquets" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "S'ha actualitzat el sistema" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "S'ha cancel·lat" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "S'ha desfet" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "S'ha obtingut la llista de repositoris" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "S'ha habilitat el repositori" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "S'han especificat les dades del repositori" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "S'ha resolt" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "S'ha obtingut la llista de fitxers" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "S'ha obtingut el què proporciona" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "S'ha instal·lat la signatura" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "S'han obtingut les llistes de paquets" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "S'ha acceptat el CLUF" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "S'han descarregat els paquets" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "S'han obtingut les actualitzacions de la distribució" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "S'han obtingut les categories" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Aconsegueix les transaccions antigues" -#: libkpackagekit/KpkStrings.cpp:272 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" -msgstr "No s'ha pogut instal·lar el fitxer" +msgstr "S'ha simulat l'instal·lació de fitxer" -#: libkpackagekit/KpkStrings.cpp:274 -#, fuzzy -#| msgid "Mime type installer" +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" -msgstr "Instal·lador de tipus MIME" +msgstr "S'ha simulat l'instal·lació" -#: libkpackagekit/KpkStrings.cpp:276 -#, fuzzy -#| msgid "Single package remover" +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" -msgstr "Eliminador de paquets solts" +msgstr "S'ha simulat l'eliminació" -#: libkpackagekit/KpkStrings.cpp:278 -#, fuzzy -#| msgid "Failed to update system" +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" -msgstr "No s'ha pogut actualitzar el sistema" +msgstr "S'ha simulat l'actualització" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "La connexió de xarxa no està disponible" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "No hi ha disponible cap memòria cau de paquet" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Memòria esgotada" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "No s'ha pogut crear un fil" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "En aquest dorsal no està implementat." -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "S'ha produït un error intern del sistema" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "No hi ha una relació de confiança de seguretat" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "El paquet no està instal·lat" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "No s'ha trobat el paquet" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "El paquet ja està instal·lat" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "La descàrrega del paquet ha fallat" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "No s'ha trobat el grup" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "La llista del grup no era vàlida" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "No s'han pogut resoldre les dependències" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "El filtre de cerca no era vàlid" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "L'identificador del paquet no estava ben format" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Error de transacció" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "No s'ha trobat el nom del repositori" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "No s'ha pogut eliminar el paquet protegit del sistema" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "S'ha cancel·lat la tasca" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "La tasca s'ha cancel·lat forçosament" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "No s'ha pogut llegir el fitxer de configuració" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "La tasca no es pot cancel·lar" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "No es poden instal·lar els paquets de codi font" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "L'acceptació de la llicència ha fallat" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Conflicte entre paquets en algun fitxer local" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Els paquets no són compatibles" -#: libkpackagekit/KpkStrings.cpp:342 -#, fuzzy -#| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "Hi ha un problema a l'hora de connectar a una font de programari" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "No s'ha pogut inicialitzar" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "No s'ha pogut finalitzar" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "No es pot bloquejar" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "No hi ha cap paquet per actualitzar" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "No es pot escriure la configuració del repositori" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "La instal·lació local ha fallat" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "La signatura GPG no és correcte" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Falta la signatura GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Configuració del repositori no vàlida" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "El fitxer de paquet no és vàlid" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Instal·lació del paquet bloquejada" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "El paquet és corrupte" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Ja estan instal·lats tots els paquets" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "No es pot trobar el fitxer especificat" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "No hi ha més rèpliques disponibles" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "No hi ha dades disponibles d'actualitzacions de la distribució" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "El paquet és incompatible amb aquest sistema" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "No queda espai al disc" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" -msgstr "" +msgstr "L'autorització ha fallat" -#: libkpackagekit/KpkStrings.cpp:384 -#, fuzzy -#| msgid "The package was not found" +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" -msgstr "No s'ha trobat el paquet" +msgstr "No s'ha trobat l'actualització" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "No es pot instal·lar des d'una font no fiable" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "No es pot actualitzar des d'una font no fiable" -#: libkpackagekit/KpkStrings.cpp:390 -#, fuzzy -#| msgctxt "The role of the transaction, in past tense" -#| msgid "Got file list" +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" -msgstr "S'ha obtingut la llista de fitxers" +msgstr "No s'ha pogut obtenir la llista de fitxers" -#: libkpackagekit/KpkStrings.cpp:392 -#, fuzzy -#| msgid "An additional package is required:" -#| msgid_plural "Additional packages are required:" +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" -msgstr "Cal un paquet addicional:" +msgstr "No es poden obtenir els requeriments del paquet" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "No es pot deshabilitar la font" -#: libkpackagekit/KpkStrings.cpp:396 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" -msgstr "La descàrrega del paquet ha fallat" +msgstr "La descàrrega ha fallat" -#: libkpackagekit/KpkStrings.cpp:398 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" -msgstr "Fitxer de paquet a instal·lar" +msgstr "No s'ha pogut configurar el paquet" -#: libkpackagekit/KpkStrings.cpp:400 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" -msgstr "Fitxer de paquet a instal·lar" +msgstr "No s'ha pogut construir el paquet" -#: libkpackagekit/KpkStrings.cpp:402 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" -msgstr "Fitxer de paquet a instal·lar" +msgstr "No s'ha pogut instal·lar el paquet" -#: libkpackagekit/KpkStrings.cpp:404 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" -msgstr "Fitxer de paquet a instal·lar" +msgstr "No s'ha pogut eliminar el paquet" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Error desconegut" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1428,7 +1384,7 @@ "La connexió a la xarxa no està disponible.\n" "Si us plau, comproveu la configuració de la xarxa i torneu-ho a provar" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1436,7 +1392,7 @@ "Cal refer la llista de paquets.\n" "Això hauria de ser fet automàticament pel dorsal." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1446,11 +1402,11 @@ "memòria.\n" "Si us plau, tanqueu alguns programes o reinicieu l'ordinador." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "No s'ha pogut crear un fil que serveixi la petició de l'usuari." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1458,7 +1414,7 @@ "L'acció no està implementada per aquest dorsal.\n" "Si us plau, informeu de l'error si això no hauria de passar." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1466,44 +1422,35 @@ "S'ha produït un problema no esperat.\n" "Si us plau, informeu d'aquest problema amb la descripció de l'error." -#: libkpackagekit/KpkStrings.cpp:433 -#, fuzzy -#| msgid "" -#| "A security trust relationship could not be made with the software " -#| "source.\n" -#| "Please check your software signature settings." +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -"No es pot establir una relació de confiança de seguretat amb aquesta font de " +"No es pot establir una relació de confiança de seguretat amb aquest font de " "programari.\n" "Si us plau, comproveu la configuració de les signatures de programari." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "El paquet que s'està intentant eliminar o actualitzar encara no està " "instal·lat." -#: libkpackagekit/KpkStrings.cpp:438 -#, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "El paquet que està sent modificat no s'ha trobat en el vostre sistema o en " "cap font de programari." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "El paquet que s'està intentant instal·lar ja està instal·lat." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1511,7 +1458,7 @@ "La descàrrega del paquet ha fallat.\n" "Si us plau, comproveu la connexió a la xarxa." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1519,22 +1466,17 @@ "No s'ha trobat el tipus de grup.\n" "Si us plau comproveu la vostre llista de grups i torneu-ho a provar." -#: libkpackagekit/KpkStrings.cpp:448 -#, fuzzy -#| msgid "" -#| "The group list could not be loaded.\n" -#| "Refreshing your cache may help, although this is normally a software " -#| "source error." +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "La llista del grup no es pot carregar.\n" "Refrescar la vostre memòria cau pot ajudar, encara que normalment això és un " "error de les fonts de programari." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1542,11 +1484,11 @@ "No es pot trobar alguna dependència d'un paquet.\n" "Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "El filtre de cerca no estava format correctament." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1555,7 +1497,7 @@ "del sistema.\n" "Normalment això indica un error intern i s'hauria d'informar." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1563,27 +1505,23 @@ "Hi ha hagut un error mentre s'executava la transacció.\n" "Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:463 -#, fuzzy -#| msgid "" -#| "The remote software source name was not found.\n" -#| "You may need to enable an item in Software Sources." +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "No s'ha trobat el nom de la font remota de programari.\n" -"Caldria d'activar un ítem a Fonts de programari." +"Caldria activar un ítem a Fonts de programari." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "No és permès eliminar un paquet protegit del sistema." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "La tasca s'ha cancel·lat correctament i no s'ha canviat cap paquet." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1591,7 +1529,7 @@ "La tasca s'ha cancel·lat correctament i no s'ha canviat cap paquet.\n" "El dorsal no ha sortit netament." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1599,11 +1537,11 @@ "El fitxer de configuració natiu del paquet no es pot obrir.\n" "Si us plau, assegureu-vos que la configuració del vostre sistema és vàlida." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "En aquests moments cancel·lar la tasca no és segur." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1611,7 +1549,7 @@ "Els paquets font normalment no s'instal·len d'aquesta manera.\n" "Comproveu l'extensió del fitxer que esteu intentant instal·lar." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1619,45 +1557,32 @@ "La acord de llicència no ha estat acceptat.\n" "Per utilitzar aquest programa cal que accepteu la llicència." -#: libkpackagekit/KpkStrings.cpp:484 -#, fuzzy -#| msgid "" -#| "Two packages provide the same file.\n" -#| "This is usually due to mixing packages for different software sources." +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Dos paquets proveeixen el mateix fitxer.\n" "Normalment això és degut a la barreja de diferents fonts de programari." -#: libkpackagekit/KpkStrings.cpp:487 -#, fuzzy -#| msgid "" -#| "Multiple packages exist that are not compatible with each other.\n" -#| "This is usually due to mixing packages from different software sources." +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Existeixen múltiples paquets que no són compatibles amb els altres.\n" "Normalment això és degut a la barreja de diferents fonts de programari." -#: libkpackagekit/KpkStrings.cpp:490 -#, fuzzy -#| msgid "" -#| "There was a (possibly temporary) problem connecting to a software " -#| "source.\n" -#| "Please check the detailed error for further details." +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Hi ha un problema (probablement temporal) en connectar a una font de " "programari.\n" "Si us plau, per més detalls comproveu l'error detallat." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1666,7 +1591,7 @@ "Això pot passar perquè altres eines de gestió de paquets estan sent usades " "simultàniament." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1674,7 +1599,7 @@ "No s'ha pogut tancar la instància del dorsal.\n" "Normalment aquest error es pot ignorar." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1683,27 +1608,27 @@ "Si us plau, tanqueu totes les eines de gestió de paquets que puguin estar " "executant-se." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Cap dels paquets seleccionats pot ser actualitzat." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "No es pot modificar la configuració del repositori." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." msgstr "" "La instal·lació del fitxer local ha fallat.\n" -"Hi ha més informació disponible en l'informe detallat." +"Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "No es pot verificar la signatura del paquet." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1711,11 +1636,11 @@ "Falta la signatura del paquet i no és fiable.\n" "Quan va ser creat aquest paquet no va ser signat amb una clau GPG." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "La configuració del repositori no és vàlida i no es pot llegir." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1723,7 +1648,7 @@ "El paquet que esteu intentant instal·lar no és vàlid.\n" "El fitxer del paquet podria ser corrupte o no ser un paquet correcte." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1731,19 +1656,19 @@ "La configuració del vostre sistema de paquets no permet instal·lar aquest " "paquet." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "El paquet que s'ha descarregat és corrupte i cal descarregar-lo de nou." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Tots els paquets seleccionats per instal·lar ja estan instal·lats al sistema." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1751,42 +1676,32 @@ "El fitxer especificat no es pot trobar al sistema.\n" "Comproveu que el fitxer encara existeix i que no ha estat esborrat." -#: libkpackagekit/KpkStrings.cpp:528 -#, fuzzy -#| msgid "" -#| "Required data could not be found on any of the configured software " -#| "sources.\n" -#| "There were no more download mirrors that could be tried." +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "La dada requerida no es pot trobar a cap de les fonts de programari " "configurades.\n" -"No hi ha més rèpliques de servidors de descàrregues per poder provar." +"No hi havia més rèpliques de servidors de descàrregues per poder provar." -#: libkpackagekit/KpkStrings.cpp:531 -#, fuzzy -#| msgid "" -#| "Required upgrade data could not be found in any of the configured " -#| "software sources.\n" -#| "The list of distribution upgrades will be unavailable." +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "La dada d'actualització requerida no es pot trobar a cap de les fonts de " "programari configurades.\n" "La llista de actualitzacions de la distribució no serà disponible." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "El paquet que s'està intentant instal·lar és incompatible amb aquest sistema." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1795,115 +1710,93 @@ "Per dur a terme aquesta operació cal que allibereu una mica d'espai del disc " "del sistema." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Cal un suport addicional per completar la transacció." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" +"No us heu autenticat correctament.\n" +"Comproveu les contrasenyes o arranjaments del compte." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" +"No es pot trobar l'actualització especificada.\n" +"Potser ja està instal·lada o ja no està disponible al servidor remot." -#: libkpackagekit/KpkStrings.cpp:547 -#, fuzzy -#| msgid "The package could not be found in any software source" -#| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." -msgstr "El paquet no s'ha pogut trobar en cap font de programari" +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "" +"El paquet no s'ha pogut instal·lar perquè és d'una font de programari no " +"fiable." -#: libkpackagekit/KpkStrings.cpp:549 -#, fuzzy -#| msgid "The package could not be found in any software source" -#| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." -msgstr "El paquet no s'ha pogut trobar en cap font de programari" +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." +msgstr "" +"El paquet no s'ha pogut actualitzar perquè és d'una font de programari no " +"fiable." -#: libkpackagekit/KpkStrings.cpp:551 -#, fuzzy -#| msgid "The file could not be found in any packages" -#| msgid_plural "The files could not be found in any packages" +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." -msgstr "El fitxer no es pot trobar a cap paquet" +msgstr "La llista de fitxers d'aquest paquet no està disponible." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" +"No es pot obtenir la informació sobre els requeriments d'aquest paquet." -#: libkpackagekit/KpkStrings.cpp:555 -#, fuzzy -#| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." -msgstr "No es pot trobar el fitxer especificat" +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "No s'ha pogut deshabilitar la font de programari especificada." -#: libkpackagekit/KpkStrings.cpp:557 -#, fuzzy -#| msgid "" -#| "A package dependency could not be found.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -"No es pot trobar alguna dependència d'un paquet.\n" +"La descàrrega no es pot fer automàticament i s'hauria de fer manualment.\n" "Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:560 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -"La instal·lació del fitxer local ha fallat.\n" -"Hi ha més informació disponible en l'informe detallat." +"No s'ha pogut configurar correctament un dels paquets seleccionats.\n" +"Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:563 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -"La instal·lació del fitxer local ha fallat.\n" -"Hi ha més informació disponible en l'informe detallat." +"Un dels paquets seleccionats no s'ha pogut construir correctament.\n" +"Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:566 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -"La instal·lació del fitxer local ha fallat.\n" -"Hi ha més informació disponible en l'informe detallat." +"Un dels paquets seleccionats no s'ha pogut instal·lar correctament.\n" +"Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:569 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -"La instal·lació del fitxer local ha fallat.\n" -"Hi ha més informació disponible en l'informe detallat." +"Un dels paquets seleccionats no s'ha pogut eliminar correctament.\n" +"Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1911,239 +1804,239 @@ "Error desconegut. Si us plau, informeu del problema.\n" "Hi ha més informació disponible a l'informe detallat." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Accessibilitat" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Accessoris" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Educació" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Jocs" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Gràfics" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Oficina" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Altres" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Desenvolupament" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimèdia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistema" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Escriptori GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Escriptori KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Escriptori XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Altres escriptoris" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publicació" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servidors" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Tipus de lletra" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Eines d'administració" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Herència" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Localització" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualització" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Seguretat" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Gestió d'energia" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Comunicació" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Xarxa" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapes" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Codis font del programari" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Ciència" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentació" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Electrònica" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Col·leccions de paquets" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Productor" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Els paquets més nous" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Grup desconegut" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Actualització trivial" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Actualització normal" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Actualització important" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Actualització de seguretat" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Actualització per solucionar errors" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Actualització amb millores" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Actualització bloquejada" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Instal·lat" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Disponible" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Actualització desconeguda" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 actualització trivial" msgstr[1] "%1 actualitzacions trivials" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2151,70 +2044,70 @@ msgstr[0] "1 actualització" msgstr[1] "%1 actualitzacions" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 actualització important" msgstr[1] "%1 actualitzacions importants" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 actualització de seguretat" msgstr[1] "%1 actualitzacions de seguretat" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 actualització per solucionar errors" msgstr[1] "%1 actualitzacions per solucionar errors" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 actualització amb millores" msgstr[1] "%1 actualitzacions amb millores" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 actualització bloquejada" msgstr[1] "%1 actualitzacions bloquejades" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 paquet instal·lat" msgstr[1] "%1 paquets instal·lats" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 paquet disponible" msgstr[1] "%1 paquets disponibles" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 actualització desconeguda" msgstr[1] "%1 actualitzacions desconegudes" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "S'ha seleccionat 1 actualització trivial" msgstr[1] "S'han seleccionat %1 actualitzacions trivials" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2222,56 +2115,56 @@ msgstr[0] "S'ha seleccionat 1 actualització" msgstr[1] "S'han seleccionat %1 actualitzacions" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "S'ha seleccionat 1 actualització important" msgstr[1] "S'han seleccionat %1 actualitzacions importants" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "S'ha seleccionat 1 actualització de seguretat" msgstr[1] "S'han seleccionat %1 actualitzacions de seguretat" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "S'ha seleccionat 1 actualització per solucionar errors" msgstr[1] "S'han seleccionat %1 actualitzacions per solucionar errors" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "S'ha seleccionat 1 actualització amb millores" msgstr[1] "S'han seleccionat %1 actualitzacions amb millores" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "S'ha seleccionat per eliminar 1 paquet instal·lat" msgstr[1] "S'han seleccionat per eliminar %1 paquets instal·lats" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "S'ha seleccionat per instal·lar 1 paquet disponible" msgstr[1] "S'han seleccionat per instal·lar %1 paquets disponibles" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 actualització trivial" msgstr[1] "%1 actualitzacions trivials, %2 seleccionades" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2279,320 +2172,461 @@ msgstr[0] "%1 actualització" msgstr[1] "%1 actualitzacions, %2 seleccionades" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 actualització important" msgstr[1] "%1 actualitzacions importants, %2 seleccionades" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 actualització de seguretat" msgstr[1] "%1 actualitzacions de seguretat, %2 seleccionades" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 actualització per solucionar errors" msgstr[1] "%1 actualitzacions per solucionar errors, %2 seleccionades" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 actualització amb millores" msgstr[1] "%1 actualitzacions amb millores, %2 seleccionades" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 actualització bloquejada" msgstr[1] "%1 actualitzacions bloquejades" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 paquet instal·lat" msgstr[1] "%1 paquets instal·lats, %2 seleccionats per eliminar" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 paquet disponible" msgstr[1] "%1 paquets disponibles, %2 seleccionats per instal·lar" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 actualització desconeguda" msgstr[1] "%1 actualitzacions desconegudes" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "No cal reiniciar res" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Se us demanarà que reinicieu aquesta aplicació" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Se us demanarà que sortiu de la sessió i torneu a entrar" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Caldrà reiniciar" -#: libkpackagekit/KpkStrings.cpp:786 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" -"Després d'aquesta actualització se us demanarà que sortiu de la sessió i " -"torneu a entrar" +"Degut a una actualització de seguretat se us demanarà que sortiu de la " +"sessió i torneu a entrar." -#: libkpackagekit/KpkStrings.cpp:788 -#, fuzzy -#| msgid "A restart will be required" +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." -msgstr "Caldrà reiniciar" +msgstr "Caldrà reiniciar degut a una actualització de seguretat." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "No cal reiniciar res" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Cal reiniciar" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Cal que sortiu de la sessió i torneu a entrar" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Cal que reinicieu l'aplicació" -#: libkpackagekit/KpkStrings.cpp:809 -#, fuzzy -#| msgid "You need to log out and log back in" +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." -msgstr "Cal que sortiu de la sessió i torneu a entrar" +msgstr "Per mantenir-vos segurs cal que sortiu de la sessió i torneu a entrar." -#: libkpackagekit/KpkStrings.cpp:811 -#, fuzzy -#| msgid "A restart is required" +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." -msgstr "Cal reiniciar" +msgstr "Per mantenir-vos segurs cal reiniciar." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Estable" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Inestable" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "En proves" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Si us plau, introduïu el CD amb l'etiqueta '%1' i premeu continua." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Si us plau, introduïu el DVD amb l'etiqueta '%1' i premeu continua." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Si us plau, introduïu el disc amb l'etiqueta '%1' i premeu continua." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Si us plau, introduïu el suport amb l'etiqueta '%1' i premeu continua." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Possiblement una rèplica estigui trencada" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "S'ha rebutjat la connexió" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "El paràmetre no era vàlid" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "La prioritat no era vàlida" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Alerta del dorsal" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Alerta del dimoni" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "S'està reconstruint la memòria cau de la llista de paquets" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "S'ha instal·lat un paquet no fiable" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Existeix un paquet més nou" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "No s'ha pogut trobar el paquet" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "S'han canviat els fitxers de configuració" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "El paquet ja està instal·lat" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" -msgstr "" +msgstr "S'està ignorant la neteja automàtica" -#: libkpackagekit/KpkStrings.cpp:883 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "La descàrrega del paquet ha fallat" +msgstr "La descàrrega del del codi font del programari ha fallat" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "No teniu els privilegis necessaris per dur a terme aquesta acció." -#: libkpackagekit/KpkStrings.cpp:898 -#, fuzzy -#| msgid "Could not remove a protected system package" +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." -msgstr "No s'ha pogut eliminar el paquet protegit del sistema" +msgstr "" +"No s'ha pogut obtenir un identificador de la transacció del packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." -msgstr "" +msgstr "No es pot connectar a aquest identificador de transacció." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." -msgstr "" +msgstr "Aquesta acció és desconeguda." -#: libkpackagekit/KpkStrings.cpp:904 -#, fuzzy -#| msgid "The package signature could not be verified." +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." -msgstr "No es pot verificar la signatura del paquet." +msgstr "No es pot iniciar el servei packagekitd." -#: libkpackagekit/KpkStrings.cpp:906 -#, fuzzy -#| msgid "The priority was invalid" +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." -msgstr "La prioritat no era vàlida" +msgstr "La consulta no és vàlida." -#: libkpackagekit/KpkStrings.cpp:908 -#, fuzzy -#| msgid "The file was not installed" -#| msgid_plural "The files were not installed" +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." -msgstr "El fitxer no estava instal·lat" +msgstr "El fitxer no és vàlid." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." -msgstr "" +msgstr "Aquesta funció encara no està implementada." -#: libkpackagekit/KpkStrings.cpp:912 -#, fuzzy -#| msgid "Could not find package" +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." -msgstr "No s'ha pogut trobar el paquet" +msgstr "No s'ha pogut comunicar amb el packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 -#, fuzzy -#| msgid "Unknown error" +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." -msgstr "Error desconegut" +msgstr "Hi ha hagut un error desconegut." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignora" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
    • %2
    Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
    • %2
    Do you want to search " +"for these now?" +msgstr[0] "Cal el següent fitxer:
    • %2
    Voleu cercar-lo ara?" +msgstr[1] "" +"Calen els següents fitxers:
    • %2
    Voleu cercar-los ara?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Un programa vol instal·lar un fitxer" +msgstr[1] "Un programa vol instal·lar fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 vol instal·lar un fitxer" +msgstr[1] "%2 vol instal·lar fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "No s'ha pogut començar la transacció de cerca de fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "no està d'acord a cercar" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "El paquet %1 ja proveeix aquest fitxer" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "No s'ha pogut instal·lar el fitxer" +msgstr[1] "No s'han pogut instal·lar els fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "S'instal·larà el paquet següent" +msgstr[1] "S'instal·laran els paquets següents" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "El fitxer no es pot trobar a cap paquet" +msgstr[1] "Els fitxers no es poden trobar a cap paquet" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "No s'ha pogut trobar el paquet" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Teniu %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
    And another update" msgid_plural "
    And %1 more updates" msgstr[0] "
    I una altra actualització" msgstr[1] "
    I %1 actualitzacions més" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Revisa i actualitza" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Ara no" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "No ho tornis a preguntar" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Les actualitzacions s'estan instal·lant automàticament." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Les actualitzacions de seguretat s'estan instal·lant automàticament." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "S'ha actualitzat el sistema correctament." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "L'actualització del programari ha fallat." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Es requereix el fitxer següent:" +msgstr[1] "Es requereixen els fitxers següents:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Voleu buscar-lo ara?" +msgstr[1] "Voleu buscar-los ara?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 vol instal·lar un fitxer" +msgstr[1] "%1 vol instal·lar fitxers" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Comença l'actualització ara" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "S'ha completat l'actualització de la distribució. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "No s'ha pogut començar la transacció de resolució" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "L'usuari ha cancel·lat la transacció" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Hi ha hagut un error desconegut" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
    • %2
    Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
    • %2
    Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Es requereix un paquet addicional:
    • %2
    Voleu cercar i " +"instal·lar-lo ara?" +msgstr[1] "" +"Es requereixen paquets addicionals:
    • %2
    Voleu cercar i " +"instal·lar-los ara?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Un programa vol instal·lar un paquet" +msgstr[1] "Un programa vol instal·lar paquets" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 vol instal·lar un paquet" +msgstr[1] "%2 vol instal·lar paquets" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "El paquet %2 ja està instal·lat" +msgstr[1] "Els paquets %2 ja estan instal·lats" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "No s'han pogut instal·lar els paquets" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "La transacció no ha finalitzat amb èxit" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "El paquet no s'ha pogut trobar en cap font de programari" +msgstr[1] "Els paquets no s'han pogut trobar en cap font de programari" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "No s'ha pogut trobar %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2617,230 +2651,423 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt i altres coses" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Cal un tipus de lletra addicional per veure correctament aquest document. " +"Voleu cercar ara el paquet adequat?" +msgstr[1] "" +"Calen tipus de lletra addicionals per veure correctament aquest document. " +"Voleu cercar ara els paquets adequats?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Un programa vol instal·lar un tipus de lletra" +msgstr[1] "Un programa vol instal·lar tipus de lletra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 vol instal·lar un tipus de lletra" +msgstr[1] "%2 vol instal·lar tipus de lletra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Cerca" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "No s'ha pogut cercar proveïdors" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplicació que pot obrir aquest tipus de fitxer" +msgstr[1] "Aplicacions que poden obrir aquest tipus de fitxer" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "No es poden trobar nous tipus de lletra per aquest document" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "No s'ha pogut trobar el tipus de lletra" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Aquest element no està implementat pel vostre dorsal, o no és un fitxer. " +msgstr[1] "" +"Aquests elements no estan implementats pel vostre dorsal o no són fitxers." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Impossible d'instal·lar" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Voleu instal·lar aquest fitxer?" +msgstr[1] "Voleu instal·lar aquests fitxers?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Ho instal·lo?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "El fitxer no estava instal·lat" +msgstr[1] "Els fitxers no estaven instal·lats" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "El fitxer s'ha instal·lat correctament" +msgstr[1] "Els fitxers s'han instal·lat correctament" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Hi ha hagut un error." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
    • %2
    Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
    • %2
    Do you want to " +"search for these now?" +msgstr[0] "Cal el següent connector:
    • %2
    Voleu cercar-lo ara?" +msgstr[1] "" +"Calen els següents connectors:
    • %2
    Voleu cercar-los ara?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Un programa necessita un connector addicional per descodificar aquest fitxer" +msgstr[1] "" +"Un programa necessita connectors addicionals per descodificar aquest fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Un programa necessita un connector addicional per codificar aquest fitxer" +msgstr[1] "" +"Un programa necessita connectors addicionals per codificar aquest fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Un programa necessita un connector addicional per aquesta operació" +msgstr[1] "Un programa necessita connectors addicionals per aquesta operació" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 necessita un connector addicional per descodificar aquest fitxer" +msgstr[1] "%2 necessita connectors addicionals per descodificar aquest fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 necessita un connector addicional per codificar aquest fitxer" +msgstr[1] "%2 necessita connectors addicionals per codificar aquest fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 necessita un connector addicional per aquesta operació" +msgstr[1] "%2 necessita connectors addicionals per aquesta operació" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Voleu instal·lar ara aquest paquet?" +msgstr[1] "Voleu instal·lar ara aquests paquets?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "El connector no s'ha pogut trobar en cap font de programari" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "No s'ha pogut cercar el connector" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "El nom de fitxer no s'ha pogut trobar en cap font de programari" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transaccions" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Refresca la llista de paquets" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Mostra els missatges" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Amaga aquesta icona" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Paquet: %1" -msgstr[1] "Paquets: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paquet: %2" +msgstr[1] "Paquets: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Un missatge del gestor de paquets" msgstr[1] "%1 missatges del gestor de paquets" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "S'ha completat l'actualització del sistema" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Reinicia" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ara no" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Surt" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Missatges del gestor de paquets" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Missatge" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Arranjaments del KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Cada hora" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Un programa vol eliminar un fitxer" +msgstr[1] "Un programa vol eliminar fitxers" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Diàriament" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, kde-format +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 vol eliminar un fitxer" +msgstr[1] "%2 vol eliminar fitxers" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Setmanalment" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "S'eliminarà el fitxer següent:" +msgstr[1] "S'eliminaran els fitxers següents:" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Mensualment" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "" +"Voleu cercar paquets que continguin aquest fitxer i eliminar-los ara?" +msgstr[1] "" +"Voleu cercar paquets que continguin aquests fitxers i eliminar-los ara?" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Mai" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Cerca" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Només seguretat" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "S'eliminarà el paquet següent" +msgstr[1] "S'eliminaran els paquets següents" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Totes les actualitzacions" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "El fitxer no es pot trobar en cap dels paquets instal·lats" +msgstr[1] "Els fitxers no es poden trobar en cap dels paquets instal·lats" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Cap" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
    • %1
    • Do you want to search for a program to open this file type now?" +msgstr "" +"Cal un programa addicional per obrir aquest tipus de fitxer:
      • %1
      • Voleu cercar ara algun programa que pugui obrir aquest tipus de fitxer?" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "No teniu els privilegis necessaris per dur a terme aquesta acció." +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Un programa necessita un nou tipus MIME" +msgstr[1] "Un programa necessita nous tipus MIME" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "No s'ha pogut especificar la dada d'origen" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 necessita un nou tipus MIME" +msgstr[1] "%2 necessita nous tipus MIME" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Es requereix el fitxer següent:" -msgstr[1] "Es requereixen els fitxers següents:" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Cerca" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Voleu buscar-lo ara?" -msgstr[1] "Voleu buscar-los ara?" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" +"No s'han trobat noves aplicacions que puguin manejar aquest tipus de fitxer" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Un programa vol instal·lar un fitxer" -msgstr[1] "Un programa vol instal·lar fitxers" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "No s'ha pogut trobar cap programa" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/PkInstallCatalogs.cpp:51 #, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 vol instal·lar un fitxer" -msgstr[1] "%1 vol instal·lar fitxers" +msgid "

        Do you want to install this catalog?

        • %2
        " +msgid_plural "" +"

        Do you want to install these catalogs?

        • %2
        " +msgstr[0] "

        Voleu instal·lar aquest catàleg?

        • %2
        " +msgstr[1] "

        Voleu instal·lar aquests catàlegs?

        • %2
        " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instal·la el catàleg" +msgstr[1] "Instal·la els catàlegs" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "Instal·la" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "No s'ha pogut començar la transacció de cerca de fitxers" +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"El dorsal no implementa cap dels mètodes necessaris per instal·lar catàlegs" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "No està implementat" -#: KPackageKit/KpkInstallProvideFile.cpp:101 +#: SmartIcon/PkInstallCatalogs.cpp:144 #, kde-format -msgid "The %1 package already provides this file" -msgstr "El paquet %1 ja proveeix aquest fitxer" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Ha fallat en obrir el catàleg %2 " +msgstr[1] "Ha fallat en obrir els catàlegs %2" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "S'instal·larà el paquet següent" -msgstr[1] "S'instal·laran els paquets següents" +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "No es pot obrir" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "El fitxer no es pot trobar a cap paquet" -msgstr[1] "Els fitxers no es poden trobar a cap paquet" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "No s'ha trobat cap paquet a instal·lar" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "No s'ha pogut trobar el paquet" +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "No s'ha pogut començar a la transacció de configuració" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "Un programa vol eliminar un fitxer" -msgstr[1] "Un programa vol eliminar fitxers" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Arranjaments del KPackageKit" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 vol eliminar un fitxer" -msgstr[1] "%1 vol eliminar fitxers" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Cada hora" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "S'eliminarà el fitxer següent:" -msgstr[1] "S'eliminaran els fitxers següents:" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Diàriament" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "" -"Voleu cercar paquets que continguin aquest fitxer i eliminar-los ara?" -msgstr[1] "" -"Voleu cercar paquets que continguin aquests fitxers i eliminar-los ara?" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Setmanalment" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "Cerca" +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Mensualment" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Mai" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Només seguretat" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "S'eliminarà el paquet següent" -msgstr[1] "S'eliminaran els paquets següents" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Totes les actualitzacions" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "El fitxer no es pot trobar en cap dels paquets instal·lats" -msgstr[1] "Els fitxers no es poden trobar en cap dels paquets instal·lats" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Cap" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "No s'ha pogut trobar %1" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "No s'ha pogut especificar la dada d'origen" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2878,141 +3105,6 @@ msgid "Package file to install" msgstr "Fitxer de paquet a instal·lar" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Aquest ítem no està implementat pel vostre dorsal, o no és un fitxer." -msgstr[1] "" -"Aquests ítems no estan implementats pel vostre dorsal o no són fitxers" - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Impossible d'instal·lar" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instal·la" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Voleu instal·lar aquest fitxer?" -msgstr[1] "Voleu instal·lar aquests fitxers?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Ho instal·lo?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "El fitxer no estava instal·lat" -msgstr[1] "Els fitxers no estaven instal·lats" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "No s'ha pogut instal·lar el fitxer" -msgstr[1] "No s'han pogut instal·lar els fitxers" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "El fitxer s'ha instal·lat correctament" -msgstr[1] "Els fitxers s'han instal·lat correctament" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Hi ha hagut un error." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Cal un paquet addicional:" -msgstr[1] "Calen paquets addicionals:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Voleu cercar i instal·lar ara aquest paquet?" -msgstr[1] "Voleu cercar i instal·lar ara aquests paquets?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Un programa vol instal·lar un paquet" -msgstr[1] "Un programa vol instal·lar paquets" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 vol instal·lar un paquet" -msgstr[1] "%1 vol instal·lar paquets" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instal·la" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "No s'ha pogut començar a resoldre la transacció" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "El paquet no s'ha pogut trobar en cap font de programari" -msgstr[1] "Els paquets no s'han pogut trobar en cap font de programari" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
        %1
        Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Cal un programa addicional per obrir aquest tipus de fitxer:
        %1
        Voleu cercar ara algun programa que pugui obrir aquest tipus de fitxer?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Un programa necessita un nou tipus MIME" -msgstr[1] "Un programa necessita nous tipus MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 necessita un nou tipus MIME" -msgstr[1] "%1 necessita nous tipus MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Cerca" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "No s'ha pogut cercar proveïdors" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplicació que pot obrir aquest tipus de fitxer" -msgstr[1] "Aplicacions que poden obrir aquest tipus de fitxer" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" -"No s'han trobat noves aplicacions que puguin manejar aquest tipus de fitxer" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "No s'ha pogut trobar cap programa" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -3023,19 +3115,19 @@ msgid "Your emails" msgstr "joanmaspons@gmail.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Selecciona totes les actualitzacions" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Refresca" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3073,408 +3165,451 @@ msgid "Required by" msgstr "Requerit per" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Afegeix i elimina programes" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Cerca paquets" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtres" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Tots els paquets" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transacció" +msgid "Transaction" +msgstr "Transacció" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "icona" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "S'estan descarregant els paquets" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Una biblioteca per fer foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "EtiquetaDeText" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 -#, fuzzy -#| msgid "Additional media is required to complete the transaction." +#: rc.cpp:77 msgid "Additional changes are required to complete the task" -msgstr "Cal un suport addicional per completar la transacció." +msgstr "Calen canvis addicionals per completar la tasca" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Acció" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:80 -msgid "TextLabel" -msgstr "EtiquetaDeText" +msgid "Actions" +msgstr "Accions" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nom del repositori:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL de la signatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Signatura de l'identificador d'usuari:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificador de la signatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Reconeixeu aquest usuari i confieu en aquesta clau?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Confieu en l'origen dels paquets?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" "Si us plau, avanç de continuar llegiu la següent informació important:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Opcions" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Opcions del KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Comprova si hi ha actualitzacions" +msgid "Update settings" +msgstr "Actualitza l'arranjament" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Instal·la automàticament:" +msgid "Check for updates:" +msgstr "Comprova si hi ha actualitzacions:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Icona intel·ligent de la safata del sistema" +msgid "Automatically install:" +msgstr "Instal·la automàticament:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Comunica quan hi hagi actualitzacions disponibles" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Comunica quan tasques llargues s'hagin acabat" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "Origen dels paquets" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Mostra l'origen dels paquets de depuració d'errors i desenvolupament" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Quant al dorsal" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Nom del dorsal:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "Aquí, nom del dorsal" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Autor del dorsal:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Descripció del dorsal:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" -msgstr "Aquí, nom de l'autor del dorsal" +msgstr "aquí, nom de l'autor del dorsal" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "aquí, descripció del dorsal" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "El paquet és visible" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "El més nou" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "IGU" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Programari lliure" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Suportat" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Mètodes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Obtén actualitzacions" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Actualitza paquet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Obtén la llista de repositoris" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Refresca la memòria cau" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Instal·la paquet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 -#, fuzzy -#| msgid "Repository name:" +#: rc.cpp:197 msgid "RepositoryEnable" -msgstr "Nom del repositori:" +msgstr "Repositori habilitat" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Actualitza sistema" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Elimina paquet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 -#, fuzzy -#| msgid "Repository name:" +#: rc.cpp:206 msgid "RepositorySetEnable" -msgstr "Nom del repositori:" +msgstr "Conjunt de repositoris habilitats" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Cerca nom" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Obtén dependències" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "El què proporciona" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Cerca detalls" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Obtén requeriments" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Obtén paquets" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Cerca grup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Obtén detalls de l'actualització" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Cerca fitxer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Obtén descripció" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Obtén fitxers" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resol" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Instal·la fitxer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 -#, fuzzy -#| msgid "InstallFIle" +#: rc.cpp:251 msgid "SimulateInstallFiles" -msgstr "Instal·la fitxer" +msgstr "Simula l'instal·lació de fitxer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 -#, fuzzy -#| msgid "InstallPackage" +#: rc.cpp:254 msgid "SimulateInstallPackages" -msgstr "Instal·la paquet" +msgstr "Simula l'instal·lació de paquets" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 -#, fuzzy -#| msgid "RemovePackage" +#: rc.cpp:257 msgid "SimulateRemovePackages" -msgstr "Elimina paquet" +msgstr "Simula l'eliminació de paquets" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 -#, fuzzy -#| msgid "UpdatePackage" +#: rc.cpp:260 msgid "SimulateUpdatePackages" -msgstr "Actualitza paquet" +msgstr "Simula l'actualització de paquets" + +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Aconsegueix les transaccions antigues" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Aquest ítem no està implementat pel vostre dorsal, o no és un fitxer." +#~ msgstr[1] "" +#~ "Aquests ítems no estan implementats pel vostre dorsal o no són fitxers" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Cal un paquet addicional:" +#~ msgstr[1] "Calen paquets addicionals:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Voleu cercar i instal·lar ara aquest paquet?" +#~ msgstr[1] "Voleu cercar i instal·lar ara aquests paquets?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
        %1
        Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Cal un programa addicional per obrir aquest tipus de fitxer:
        %1
        Voleu cercar ara algun programa que pugui obrir aquest tipus de fitxer?" + +#~ msgid "All packages" +#~ msgstr "Tots els paquets" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "No teniu els privilegis necessaris per dur a terme aquesta acció." + +#~ msgid "Package Name" +#~ msgstr "Nom del paquet" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Opcions del KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Icona intel·ligent de la safata del sistema" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Comunica quan tasques llargues s'hagin acabat" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Transacció" + +#~ msgid "A library to do foo" +#~ msgstr "Una biblioteca per fer foo" #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "També s'instal·laran els paquets següents com a dependències" @@ -3488,9 +3623,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Els paquets següents també han de ser eliminats/instal·lats:" -#~ msgid "Failed to update package lists" -#~ msgstr "No s'ha pogut actualitzar la llista de paquets" - #~ msgid "Failed to refresh package lists" #~ msgstr "No s'ha pogut recollir la llista de paquets" @@ -3559,9 +3691,6 @@ #~ msgid "Downloading" #~ msgstr "S'està descarregant" -#~ msgid "Updating" -#~ msgstr "S'està actualitzant" - #~ msgid "Cleaning Up" #~ msgstr "S'està netejant" diff -Nru kpackagekit-0.5.4/po/ca@valencia/CMakeLists.txt kpackagekit-0.6.0/po/ca@valencia/CMakeLists.txt --- kpackagekit-0.5.4/po/ca@valencia/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/po/ca@valencia/CMakeLists.txt 2010-01-30 08:59:47.000000000 +0000 @@ -0,0 +1,2 @@ +file(GLOB _po_files *.po) +GETTEXT_PROCESS_PO_FILES( ca@valencia ALL INSTALL_DESTINATION ${LOCALE_INSTALL_DIR} ${_po_files} ) diff -Nru kpackagekit-0.5.4/po/ca@valencia/kpackagekit.po kpackagekit-0.6.0/po/ca@valencia/kpackagekit.po --- kpackagekit-0.5.4/po/ca@valencia/kpackagekit.po 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/po/ca@valencia/kpackagekit.po 2010-01-30 08:59:47.000000000 +0000 @@ -0,0 +1,3701 @@ +# Translation of kpackagekit.po to Catalan +# Copyright (C) 2009 This_file_is_part_of_KDE +# This file is distributed under the license LGPL version 2 or later +# +# +# Joan Maspons , 2009. +msgid "" +msgstr "" +"Project-Id-Version: kpackagekit\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-30 17:45+0100\n" +"Last-Translator: Joan Maspons \n" +"Language-Team: Català \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Lokalize 1.0\n" + +#: Updater/KpkSimpleTransactionModel.cpp:46 +msgid "Date" +msgstr "Data" + +#: Updater/KpkSimpleTransactionModel.cpp:47 +#: libkpackagekit/KpkPackageModel.cpp:144 +msgid "Action" +msgstr "Acció" + +#. i18n: file: Updater/KpkUpdateDetails.ui:20 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 +#. i18n: ectx: property (title), widget (QGroupBox, detailGroup) +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 +msgid "Details" +msgstr "Detalls" + +#: Updater/KpkSimpleTransactionModel.cpp:49 +msgctxt "Machine user who issued the transaction" +msgid "Username" +msgstr "Nom d'usuari" + +#: Updater/KpkSimpleTransactionModel.cpp:50 +msgid "Application" +msgstr "Aplicació" + +#: Updater/KcmKpkUpdate.cpp:37 +msgid "Software update" +msgstr "Actualitzacions de programari" + +#: Updater/KcmKpkUpdate.cpp:39 +msgid "KDE interface for updating software" +msgstr "Interfície del KDE per actualitzar el programari" + +#: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 +#: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 +msgid "(C) 2008-2009 Daniel Nicoletti" +msgstr "(C) 2008-2009 Daniel Nicoletti" + +#: Updater/KpkDistroUpgrade.cpp:45 SmartIcon/KpkDistroUpgrade.cpp:62 +msgid "Distribution upgrade available" +msgstr "Hi ha disponible una actualització de la distribució" + +#: Updater/KpkDistroUpgrade.cpp:55 Updater/KpkDistroUpgrade.cpp:56 +#, kde-format +msgid "Upgrade to %1" +msgstr "Actualitza a %1" + +#: Updater/KpkDistroUpgrade.cpp:57 +#, kde-format +msgid "Click to upgrade to %1" +msgstr "Cliqueu per actualitzar a %1" + +#: Updater/KpkDistroUpgrade.cpp:71 +msgid "" +"You are about to upgrade your distribution to the latest version. This is " +"usually a very lengthy process and takes a lot longer than simply upgrading " +"your packages." +msgstr "" +"Esteu a punt d'actualitzar la distribució a l'última versió. Normalment això " +"és un procés llarg i tarda molt més que una simple actualització dels " +"paquets." + +#: Updater/KpkDistroUpgrade.cpp:76 +msgid "It is recommended to plug in your computer before proceeding." +msgstr "És recomanable endollar el vostre ordinador avanç de procedir." + +#: Updater/KpkDistroUpgrade.cpp:78 +msgid "" +"It is recommended that you keep your computer plugged in while the upgrade " +"is being performed." +msgstr "" +"És recomanable que mantingueu l'ordinador endollat mentre es du a terme " +"l'actualització." + +#: Updater/KpkDistroUpgrade.cpp:105 +msgid "Distribution upgrade complete." +msgstr "S'ha completat l'actualització de la distribució." + +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 +#, kde-format +msgid "Distribution upgrade process exited with code %1." +msgstr "L'actualització de la distribució ha eixit amb el codi %1." + +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 +msgid "The distribution upgrade process failed to start." +msgstr "El procés d'actualització de la distribució no ha pogut començar." + +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 +msgid "" +"The distribution upgrade process crashed some time after starting " +"successfully." +msgstr "" +"El procés d'actualització de la distribució ha fallat després de començar " +"correctament. " + +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 +msgid "The distribution upgrade process failed with an unknown error." +msgstr "" +"El procés d'actualització de la distribució ha fallat donant un error " +"desconegut." + +#: Updater/KpkUpdateDetails.cpp:61 +msgid "Type" +msgstr "Tipus" + +#: Updater/KpkUpdateDetails.cpp:67 +msgctxt "State of the upgrade (ie testing, unstable..)" +msgid "State" +msgstr "Estat" + +#: Updater/KpkUpdateDetails.cpp:74 +msgid "Issued" +msgstr "Emés" + +#: Updater/KpkUpdateDetails.cpp:81 +msgid "Updated" +msgstr "Actualitzat" + +#: Updater/KpkUpdateDetails.cpp:87 +msgid "New version" +msgstr "Nova versió" + +#: Updater/KpkUpdateDetails.cpp:95 +msgid "Updates" +msgstr "Actualitzacions" + +#: Updater/KpkUpdateDetails.cpp:104 +msgid "Obsoletes" +msgstr "Obsoletes" + +#: Updater/KpkUpdateDetails.cpp:110 +msgid "Repository" +msgstr "Repositori" + +#. i18n: file: AddRm/KpkPackageDetails.ui:50 +#. i18n: ectx: property (text), widget (QToolButton, descriptionTB) +#: Updater/KpkUpdateDetails.cpp:116 rc.cpp:26 +msgid "Description" +msgstr "Descripció" + +#: Updater/KpkUpdateDetails.cpp:123 +msgid "Changes" +msgstr "Canvis" + +#: Updater/KpkUpdateDetails.cpp:131 +msgid "Vendor" +msgstr "Productor" + +#: Updater/KpkUpdateDetails.cpp:137 +msgid "Bugzilla" +msgstr "Bugzilla" + +#: Updater/KpkUpdateDetails.cpp:143 +msgid "CVE" +msgstr "CVE" + +#: Updater/KpkUpdateDetails.cpp:149 +msgid "Notice" +msgstr "Avís" + +#: Updater/KpkUpdateDetails.cpp:185 +msgid "No update description was found." +msgstr "No s'ha trobat cap descripció de l'actualització." + +#: Updater/KpkHistory.cpp:47 +msgid "Rollback" +msgstr "Desfer" + +#: Updater/KpkHistory.cpp:52 +msgid "Refresh transactions list" +msgstr "Refresca la llista de transaccions" + +#: Updater/KpkHistory.cpp:100 +#, kde-format +msgid "Time since last cache refresh: %1" +msgstr "Temps des de l'últim refresc de la memòria cau: %1" + +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Pàgina inicial" + +#: AddRm/KpkPackageDetails.cpp:134 +msgid "License" +msgstr "Llicència" + +#: AddRm/KpkPackageDetails.cpp:139 +msgctxt "Group of the package" +msgid "Group" +msgstr "Grup" + +#: AddRm/KpkPackageDetails.cpp:145 +msgid "Size" +msgstr "Mida" + +#: AddRm/KpkPackageDetails.cpp:198 +msgid "No files were found." +msgstr "No s'ha trobat cap fitxer." + +#: AddRm/KcmKpkAddRm.cpp:37 +msgid "Add and remove software" +msgstr "Afig i elimina programes" + +#: AddRm/KcmKpkAddRm.cpp:39 +msgid "KDE interface for managing software" +msgstr "Interfície del KDE per gestionar el programari" + +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 +msgid "Find" +msgstr "Cerca" + +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Cerca de text" + +#: AddRm/KpkAddRm.cpp:125 +msgid "List of changes" +msgstr "Llista de canvis" + +#: AddRm/KpkAddRm.cpp:134 +msgctxt "Groups of packages" +msgid "Group:" +msgid_plural "Groups:" +msgstr[0] "Grup:" +msgstr[1] "Grups:" + +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 +msgid "&Cancel" +msgstr "&Cancel·la" + +#. i18n: file: AddRm/KpkAddRm.ui:150 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 +msgid "Find by &name" +msgstr "Cerca per &nom" + +#. i18n: file: AddRm/KpkAddRm.ui:160 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 +msgid "Find by f&ile name" +msgstr "Cerca per nom de f&itxer" + +#. i18n: file: AddRm/KpkAddRm.ui:155 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 +msgid "Find by &description" +msgstr "Cerca per &descripció" + +#: AddRm/KpkAddRm.cpp:420 +msgid "Review Changes" +msgstr "Revisa els canvis" + +#: AddRm/KpkAddRm.cpp:457 +msgid "Collections" +msgstr "Col·leccions" + +#: AddRm/KpkAddRm.cpp:462 +msgid "Only collections" +msgstr "Només col·leccions" + +#: AddRm/KpkAddRm.cpp:469 +msgid "Exclude collections" +msgstr "Exclou col·leccions" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 +#. i18n: ectx: property (text), widget (QCheckBox, installedCB) +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 +msgid "Installed" +msgstr "Instal·lat" + +#: AddRm/KpkAddRm.cpp:484 +msgid "Only installed" +msgstr "Només instal·lat" + +#: AddRm/KpkAddRm.cpp:493 +msgid "Only available" +msgstr "Només disponible" + +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 +msgid "No filter" +msgstr "Cap filtre" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 +#. i18n: ectx: property (text), widget (QCheckBox, developmentCB) +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 +msgid "Development" +msgstr "Desenvolupament" + +#: AddRm/KpkAddRm.cpp:516 +msgid "Only development" +msgstr "Només desenvolupament" + +#: AddRm/KpkAddRm.cpp:525 +msgid "Only end user files" +msgstr "Només fitxers de l'usuari final" + +#: AddRm/KpkAddRm.cpp:542 +msgid "Graphical" +msgstr "Gràfics" + +#: AddRm/KpkAddRm.cpp:548 +msgid "Only graphical" +msgstr "Només gràfics" + +#: AddRm/KpkAddRm.cpp:557 +msgid "Only text" +msgstr "Només text" + +#: AddRm/KpkAddRm.cpp:574 +msgctxt "Filter for free packages" +msgid "Free" +msgstr "Lliure" + +#: AddRm/KpkAddRm.cpp:580 +msgid "Only free software" +msgstr "Només programari lliure" + +#: AddRm/KpkAddRm.cpp:589 +msgid "Only non-free software" +msgstr "Només programari no lliure" + +#: AddRm/KpkAddRm.cpp:606 +msgid "Architectures" +msgstr "Arquitectures" + +#: AddRm/KpkAddRm.cpp:612 +msgid "Only native architectures" +msgstr "Només arquitectures natives" + +#: AddRm/KpkAddRm.cpp:621 +msgid "Only non-native architectures" +msgstr "Només arquitectures no natives" + +#: AddRm/KpkAddRm.cpp:638 +msgctxt "Filter for source packages" +msgid "Source" +msgstr "Codi font" + +#: AddRm/KpkAddRm.cpp:644 +msgid "Only sourcecode" +msgstr "Només codi font" + +#: AddRm/KpkAddRm.cpp:653 +msgid "Only non-sourcecode" +msgstr "Només no codi font" + +#: AddRm/KpkAddRm.cpp:670 +msgid "Hide subpackages" +msgstr "Oculta els subpaquets" + +#: AddRm/KpkAddRm.cpp:672 +msgid "Only show one package, not subpackages" +msgstr "Mostra només un paquet, no els subpaquets" + +#: AddRm/KpkAddRm.cpp:680 +msgid "Only newest packages" +msgstr "Només els paquets més nous" + +#: AddRm/KpkAddRm.cpp:683 +msgid "Only show the newest available package" +msgstr "Mostra només el paquet disponible més nou" + +#: AddRm/KpkAddRm.cpp:692 +msgid "View in groups" +msgstr "Visualitza en grups" + +#: AddRm/KpkAddRm.cpp:695 +msgid "Display packages in groups according to status" +msgstr "Mostra els paquets agrupats segons el seu estat" + +#: libkpackagekit/KpkReviewChanges.cpp:75 +msgid "The following package will be installed:" +msgid_plural "The following packages will be installed:" +msgstr[0] "S'instal·larà el paquet següent:" +msgstr[1] "S'instal·laran els paquets següents:" + +#: libkpackagekit/KpkReviewChanges.cpp:77 +msgid "Install Now" +msgstr "Instal·la ara" + +#: libkpackagekit/KpkReviewChanges.cpp:79 +msgid "The following package will be removed:" +msgid_plural "The following packages will be removed:" +msgstr[0] "S'eliminarà el paquet següent:" +msgstr[1] "S'eliminaran els paquets següents:" + +#: libkpackagekit/KpkReviewChanges.cpp:81 +msgid "Remove Now" +msgstr "Elimina ara" + +#: libkpackagekit/KpkReviewChanges.cpp:83 +msgid "The following package will be removed and installed:" +msgid_plural "The following packages will be removed and installed:" +msgstr[0] "S'eliminarà i s'instal·larà el paquet següent:" +msgstr[1] "S'eliminaran i s'instal·laran els paquets següents:" + +#: libkpackagekit/KpkReviewChanges.cpp:85 +msgid "Apply Now" +msgstr "Aplica-ho ara" + +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "No s'ha pogut simular l'eliminació de paquets" + +#: libkpackagekit/KpkReviewChanges.cpp:187 +msgid "The current backend does not support removing packages." +msgstr "El dorsal actual no implementa l'eliminació de paquets" + +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 +msgid "KPackageKit Error" +msgstr "Error del KPackageKit" + +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "No s'ha pogut simular l'instal·lació de paquets" + +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." +msgstr "El dorsal actual no implementa l'instal·lació de paquets" + +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 +msgid "Failed to install package" +msgstr "No s'ha pogut instal·lar el paquet" + +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "No s'ha pogut eliminar el paquet" + +#: libkpackagekit/KpkTransaction.cpp:71 +msgid "Hide" +msgstr "Oculta" + +#: libkpackagekit/KpkTransaction.cpp:72 +msgid "" +"Allows you to hide the window whilst keeping the transaction task running." +msgstr "" +"Permet ocultar la finestra mentre manté les tasques de transacció executant-" +"se." + +#: libkpackagekit/KpkTransaction.cpp:374 +msgid "" +"You are about to install unsigned packages can compromise your system, as it " +"is impossible to verify if the software came from a trusted source.\n" +" Are you sure you want to continue installation?" +msgstr "" +"Esteu a punt d'instal·lar paquets no signats que poden comprometre el vostre " +"sistema ja que és impossible de verificar si el programari ve d'una font de " +"confiança.\n" +" Segur que voleu continuar amb la instal·lació?" + +#: libkpackagekit/KpkTransaction.cpp:377 +msgid "Installing unsigned software" +msgstr "S'està instal·lant programari no signat" + +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 +msgid "A media change is required" +msgstr "Cal canviar el suport" + +#: libkpackagekit/KpkProgressBar.cpp:38 +#, kde-format +msgid "%1 remaining" +msgstr "resta %1" + +#: libkpackagekit/KpkPackageModel.cpp:142 +#: libkpackagekit/KpkSimulateModel.cpp:122 +msgid "Package" +msgstr "Paquet" + +#: libkpackagekit/KpkLicenseAgreement.cpp:34 +msgid "Accept Agreement" +msgstr "Accepta l'acord" + +#. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 +msgid "License Agreement Required" +msgstr "Es requereix acceptar l'acord de la llicència" + +#: libkpackagekit/KpkLicenseAgreement.cpp:36 +#, kde-format +msgid "License required for %1 by %2" +msgstr "Es requereix llicència per %1 de %2" + +#: libkpackagekit/KpkSimulateModel.cpp:124 +msgid "Version" +msgstr "Versió" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 +#. i18n: ectx: property (text), widget (QCheckBox, cancelCB) +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 +msgid "Cancel" +msgstr "Cancel·la" + +#: libkpackagekit/KpkTransactionBar.cpp:129 +#, kde-format +msgid "Finished in %1." +msgstr "Acabat en %1" + +#: libkpackagekit/KpkRequirements.cpp:219 +msgid "Additional changes" +msgstr "Canvis addicionals" + +#: libkpackagekit/KpkRequirements.cpp:221 +msgid "Continue" +msgstr "Continua" + +#: libkpackagekit/KpkRequirements.cpp:252 +#, kde-format +msgid "1 package to remove" +msgid_plural "%1 packages to remove" +msgstr[0] "1 paquet a eliminar" +msgstr[1] "%1 paquets a eliminar" + +#: libkpackagekit/KpkRequirements.cpp:261 +#, kde-format +msgid "1 package to downgrade" +msgid_plural "%1 packages to downgrade" +msgstr[0] "1 paquet a desactualitzar" +msgstr[1] "%1 paquets a desactualitzar" + +#: libkpackagekit/KpkRequirements.cpp:272 +#, kde-format +msgid "1 package to reinstall" +msgid_plural "%1 packages to reinstall" +msgstr[0] "1 paquet a reinstal·lar" +msgstr[1] "%1 paquets a reinstal·lar" + +#: libkpackagekit/KpkRequirements.cpp:283 +#, kde-format +msgid "1 package to install" +msgid_plural "%1 packages to install" +msgstr[0] "1 paquet a instal·lar" +msgstr[1] "%1 paquets a instal·lar" + +#: libkpackagekit/KpkRequirements.cpp:294 +#, kde-format +msgid "1 package to update" +msgid_plural "%1 packages to update" +msgstr[0] "1 paquet a actualitzar" +msgstr[1] "%1 paquets a actualitzar" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:25 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 +msgid "Software signature is required" +msgstr "Es requereix la signatura del programari" + +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" +msgid "Unknown state" +msgstr "Estat desconegut" + +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" +msgid "Waiting for service to start" +msgstr "S'està esperant que comence el servei" + +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" +msgid "Waiting for other tasks" +msgstr "S'estan esperant altres tasques" + +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" +msgid "Running task" +msgstr "Tasca en execució" + +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" +msgid "Querying" +msgstr "S'està consultant" + +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" +msgid "Getting information" +msgstr "S'està obtenint la informació" + +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" +msgid "Removing packages" +msgstr "S'estan eliminant paquets" + +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" +msgid "Downloading packages" +msgstr "S'estan descarregant els paquets" + +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" +msgid "Installing packages" +msgstr "S'estan instal·lant paquets" + +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" +msgid "Refreshing software list" +msgstr "S'està refrescant la llista de programari" + +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" +msgid "Updating packages" +msgstr "S'estan actualitzant els paquets" + +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" +msgid "Cleaning up packages" +msgstr "S'estan netejant els paquets" + +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" +msgid "Obsoleting packages" +msgstr "S'estan deixant els paquets obsolets" + +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" +msgid "Resolving dependencies" +msgstr "S'estan resolent les dependències" + +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" +msgid "Checking signatures" +msgstr "S'estan comprovant les signatures" + +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" +msgid "Rolling back" +msgstr "S'està desfent" + +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" +msgid "Testing changes" +msgstr "S'estan comprovant els canvis" + +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" +msgid "Committing changes" +msgstr "S'estan aplicant els canvis" + +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" +msgid "Requesting data" +msgstr "S'estan demanant dades" + +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" +msgid "Finished" +msgstr "Finalitzat" + +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" +msgid "Cancelling" +msgstr "S'està cancel·lant" + +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" +msgid "Downloading repository information" +msgstr "S'està descarregant la informació del repositori" + +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" +msgid "Downloading list of packages" +msgstr "S'està descarregant la llista de paquets" + +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" +msgid "Downloading file lists" +msgstr "S'està descarregant la llista de fitxers" + +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" +msgid "Downloading lists of changes" +msgstr "S'estan descarregant les llistes de canvis" + +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" +msgid "Downloading groups" +msgstr "S'estan descarregant els grups" + +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" +msgid "Downloading update information" +msgstr "S'està descarregant la informació de l'actualització" + +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" +msgid "Repackaging files" +msgstr "S'estan re-empaquetant els fitxers" + +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" +msgid "Loading cache" +msgstr "S'està carregant la memòria cau" + +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" +msgid "Scanning installed applications" +msgstr "S'està escanejant les aplicacions instal·lades" + +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" +msgid "Generating package lists" +msgstr "S'està generant la llista de paquets" + +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" +msgid "Waiting for package manager lock" +msgstr "S'està esperant el tancament del gestor de paquets" + +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" +msgid "Waiting for authentication" +msgstr "S'està esperant l'autenticació" + +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" +msgid "Updating the list of running applications" +msgstr "S'està actualitzant la llista de les aplicacions en execució" + +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" +msgid "Checking for applications currently in use" +msgstr "S'estan comprovant les aplicacions que s'usen actualment" + +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" +msgid "Checking for libraries currently in use" +msgstr "S'estan comprovant les biblioteques que s'usen actualment" + +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "S'estan copiant els fitxers" + +#: libkpackagekit/KpkStrings.cpp:150 +msgctxt "The action of the package, in past tense" +msgid "Downloaded" +msgstr "Descarregat" + +#: libkpackagekit/KpkStrings.cpp:152 +msgctxt "The action of the package, in past tense" +msgid "Updated" +msgstr "Actualitzat" + +#: libkpackagekit/KpkStrings.cpp:154 +msgctxt "The action of the package, in past tense" +msgid "Installed" +msgstr "Instal·lat" + +#: libkpackagekit/KpkStrings.cpp:156 +msgctxt "The action of the package, in past tense" +msgid "Removed" +msgstr "Eliminat" + +#: libkpackagekit/KpkStrings.cpp:158 +msgctxt "The action of the package, in past tense" +msgid "Cleaned Up" +msgstr "Netejat" + +#: libkpackagekit/KpkStrings.cpp:160 +msgctxt "The action of the package, in past tense" +msgid "Obsoleted" +msgstr "Obsolet" + +#: libkpackagekit/KpkStrings.cpp:171 +msgctxt "The role of the transaction, in present tense" +msgid "Unknown role type" +msgstr "Tipus de rol desconegut" + +#: libkpackagekit/KpkStrings.cpp:173 +msgctxt "The role of the transaction, in present tense" +msgid "Getting dependencies" +msgstr "S'està accedint a les dependències" + +#: libkpackagekit/KpkStrings.cpp:175 +msgctxt "The role of the transaction, in present tense" +msgid "Getting update detail" +msgstr "S'està accedint als detalls de l'actualització" + +#: libkpackagekit/KpkStrings.cpp:177 +msgctxt "The role of the transaction, in present tense" +msgid "Getting details" +msgstr "S'està accedint als detalls" + +#: libkpackagekit/KpkStrings.cpp:179 +msgctxt "The role of the transaction, in present tense" +msgid "Getting requires" +msgstr "S'està accedint als requeriments" + +#: libkpackagekit/KpkStrings.cpp:181 +msgctxt "The role of the transaction, in present tense" +msgid "Getting updates" +msgstr "S'està accedint a les actualitzacions" + +#: libkpackagekit/KpkStrings.cpp:183 +msgctxt "The role of the transaction, in present tense" +msgid "Searching details" +msgstr "S'estan cercant els detalls" + +#: libkpackagekit/KpkStrings.cpp:185 +msgctxt "The role of the transaction, in present tense" +msgid "Searching for file" +msgstr "S'està cercant un fitxer" + +#: libkpackagekit/KpkStrings.cpp:187 +msgctxt "The role of the transaction, in present tense" +msgid "Searching groups" +msgstr "S'estan cercant grups" + +#: libkpackagekit/KpkStrings.cpp:189 +msgctxt "The role of the transaction, in present tense" +msgid "Searching by package name" +msgstr "S'està cercant per nom de paquet" + +#: libkpackagekit/KpkStrings.cpp:191 +msgctxt "The role of the transaction, in present tense" +msgid "Removing" +msgstr "S'està eliminant" + +#: libkpackagekit/KpkStrings.cpp:193 +msgctxt "The role of the transaction, in present tense" +msgid "Installing" +msgstr "S'està instal·lant" + +#: libkpackagekit/KpkStrings.cpp:195 +msgctxt "The role of the transaction, in present tense" +msgid "Installing file" +msgstr "S'està instal·lant un fitxer" + +#: libkpackagekit/KpkStrings.cpp:197 +msgctxt "The role of the transaction, in present tense" +msgid "Refreshing package cache" +msgstr "S'està refrescant la memòria cau dels paquets" + +#: libkpackagekit/KpkStrings.cpp:199 +msgctxt "The role of the transaction, in present tense" +msgid "Updating packages" +msgstr "S'estan actualitzant els paquets" + +#: libkpackagekit/KpkStrings.cpp:201 +msgctxt "The role of the transaction, in present tense" +msgid "Updating system" +msgstr "S'està actualitzant el sistema" + +#: libkpackagekit/KpkStrings.cpp:203 +msgctxt "The role of the transaction, in present tense" +msgid "Canceling" +msgstr "S'està cancel·lant" + +#: libkpackagekit/KpkStrings.cpp:205 +msgctxt "The role of the transaction, in present tense" +msgid "Rolling back" +msgstr "S'està desfent" + +#: libkpackagekit/KpkStrings.cpp:207 +msgctxt "The role of the transaction, in present tense" +msgid "Getting list of repositories" +msgstr "S'està accedint a la llista de repositoris" + +#: libkpackagekit/KpkStrings.cpp:209 +msgctxt "The role of the transaction, in present tense" +msgid "Enabling repository" +msgstr "S'està activant el repositori" + +#: libkpackagekit/KpkStrings.cpp:211 +msgctxt "The role of the transaction, in present tense" +msgid "Setting repository data" +msgstr "S'està assignant les dades del repositori" + +#: libkpackagekit/KpkStrings.cpp:213 +msgctxt "The role of the transaction, in present tense" +msgid "Resolving" +msgstr "S'està resolent" + +#: libkpackagekit/KpkStrings.cpp:215 +msgctxt "The role of the transaction, in present tense" +msgid "Getting file list" +msgstr "S'està obtenint la llista de fitxers" + +#: libkpackagekit/KpkStrings.cpp:217 +msgctxt "The role of the transaction, in present tense" +msgid "Getting what provides" +msgstr "S'està accedint al què proporciona" + +#: libkpackagekit/KpkStrings.cpp:219 +msgctxt "The role of the transaction, in present tense" +msgid "Installing signature" +msgstr "S'està instal·lant la signatura" + +#: libkpackagekit/KpkStrings.cpp:221 +msgctxt "The role of the transaction, in present tense" +msgid "Getting package lists" +msgstr "S'està accedint a les llistes del paquet" + +#: libkpackagekit/KpkStrings.cpp:223 +msgctxt "The role of the transaction, in present tense" +msgid "Accepting EULA" +msgstr "S'està acceptant el CLUF" + +#: libkpackagekit/KpkStrings.cpp:225 +msgctxt "The role of the transaction, in present tense" +msgid "Downloading packages" +msgstr "S'estan descarregant els paquets" + +#: libkpackagekit/KpkStrings.cpp:227 +msgctxt "The role of the transaction, in present tense" +msgid "Getting distribution upgrade information" +msgstr "S'està obtenint la informació de l'actualització de la distribució" + +#: libkpackagekit/KpkStrings.cpp:229 +msgctxt "The role of the transaction, in present tense" +msgid "Getting categories" +msgstr "S'està accedint a les categories" + +#: libkpackagekit/KpkStrings.cpp:231 +msgctxt "The role of the transaction, in present tense" +msgid "Getting old transactions" +msgstr "S'estan obtenint les transaccions antigues" + +#: libkpackagekit/KpkStrings.cpp:233 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install of files" +msgstr "S'està simulant la instal·lació de fitxer" + +#: libkpackagekit/KpkStrings.cpp:235 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install" +msgstr "S'està simulant la instal·lació" + +#: libkpackagekit/KpkStrings.cpp:237 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the remove" +msgstr "S'està simulant l'eliminació" + +#: libkpackagekit/KpkStrings.cpp:239 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the update" +msgstr "S'està simulant l'actualització" + +#: libkpackagekit/KpkStrings.cpp:249 +msgctxt "The role of the transaction, in past tense" +msgid "Unknown role type" +msgstr "Tipus de rol desconegut" + +#: libkpackagekit/KpkStrings.cpp:251 +msgctxt "The role of the transaction, in past tense" +msgid "Got dependencies" +msgstr "S'han obtingut les dependències" + +#: libkpackagekit/KpkStrings.cpp:253 +msgctxt "The role of the transaction, in past tense" +msgid "Got update detail" +msgstr "S'han obtingut els detalls de l'actualització" + +#: libkpackagekit/KpkStrings.cpp:255 +msgctxt "The role of the transaction, in past tense" +msgid "Got details" +msgstr "S'han obtingut els detalls" + +#: libkpackagekit/KpkStrings.cpp:257 +msgctxt "The role of the transaction, in past tense" +msgid "Got requires" +msgstr "S'han obtingut els requeriments" + +#: libkpackagekit/KpkStrings.cpp:259 +msgctxt "The role of the transaction, in past tense" +msgid "Got updates" +msgstr "S'han obtingut les actualitzacions" + +#: libkpackagekit/KpkStrings.cpp:261 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for package details" +msgstr "S'ha cercat per detalls del paquet" + +#: libkpackagekit/KpkStrings.cpp:263 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for file" +msgstr "S'ha cercat per fitxer" + +#: libkpackagekit/KpkStrings.cpp:265 +msgctxt "The role of the transaction, in past tense" +msgid "Searched groups" +msgstr "S'han cercat grups" + +#: libkpackagekit/KpkStrings.cpp:267 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for package name" +msgstr "S'ha cercat pel nom de paquet" + +#: libkpackagekit/KpkStrings.cpp:269 +msgctxt "The role of the transaction, in past tense" +msgid "Removed packages" +msgstr "S'han eliminat els paquets" + +#: libkpackagekit/KpkStrings.cpp:271 +msgctxt "The role of the transaction, in past tense" +msgid "Installed packages" +msgstr "S'han instal·lat els paquets" + +#: libkpackagekit/KpkStrings.cpp:273 +msgctxt "The role of the transaction, in past tense" +msgid "Installed local files" +msgstr "S'han instal·lat els fitxers locals" + +#: libkpackagekit/KpkStrings.cpp:275 +msgctxt "The role of the transaction, in past tense" +msgid "Refreshed package cache" +msgstr "S'ha refrescat la memòria cau del paquet" + +#: libkpackagekit/KpkStrings.cpp:277 +msgctxt "The role of the transaction, in past tense" +msgid "Updated packages" +msgstr "S'han actualitzat els paquets" + +#: libkpackagekit/KpkStrings.cpp:279 +msgctxt "The role of the transaction, in past tense" +msgid "Updated system" +msgstr "S'ha actualitzat el sistema" + +#: libkpackagekit/KpkStrings.cpp:281 +msgctxt "The role of the transaction, in past tense" +msgid "Canceled" +msgstr "S'ha cancel·lat" + +#: libkpackagekit/KpkStrings.cpp:283 +msgctxt "The role of the transaction, in past tense" +msgid "Rolled back" +msgstr "S'ha desfet" + +#: libkpackagekit/KpkStrings.cpp:285 +msgctxt "The role of the transaction, in past tense" +msgid "Got list of repositories" +msgstr "S'ha obtingut la llista de repositoris" + +#: libkpackagekit/KpkStrings.cpp:287 +msgctxt "The role of the transaction, in past tense" +msgid "Enabled repository" +msgstr "S'ha habilitat el repositori" + +#: libkpackagekit/KpkStrings.cpp:289 +msgctxt "The role of the transaction, in past tense" +msgid "Set repository data" +msgstr "S'han especificat les dades del repositori" + +#: libkpackagekit/KpkStrings.cpp:291 +msgctxt "The role of the transaction, in past tense" +msgid "Resolved" +msgstr "S'ha resolt" + +#: libkpackagekit/KpkStrings.cpp:293 +msgctxt "The role of the transaction, in past tense" +msgid "Got file list" +msgstr "S'ha obtingut la llista de fitxers" + +#: libkpackagekit/KpkStrings.cpp:295 +msgctxt "The role of the transaction, in past tense" +msgid "Got what provides" +msgstr "S'ha obtingut el què proporciona" + +#: libkpackagekit/KpkStrings.cpp:297 +msgctxt "The role of the transaction, in past tense" +msgid "Installed signature" +msgstr "S'ha instal·lat la signatura" + +#: libkpackagekit/KpkStrings.cpp:299 +msgctxt "The role of the transaction, in past tense" +msgid "Got package lists" +msgstr "S'han obtingut les llistes de paquets" + +#: libkpackagekit/KpkStrings.cpp:301 +msgctxt "The role of the transaction, in past tense" +msgid "Accepted EULA" +msgstr "S'ha acceptat el CLUF" + +#: libkpackagekit/KpkStrings.cpp:303 +msgctxt "The role of the transaction, in past tense" +msgid "Downloaded packages" +msgstr "S'han descarregat els paquets" + +#: libkpackagekit/KpkStrings.cpp:305 +msgctxt "The role of the transaction, in past tense" +msgid "Got distribution upgrades" +msgstr "S'han obtingut les actualitzacions de la distribució" + +#: libkpackagekit/KpkStrings.cpp:307 +msgctxt "The role of the transaction, in past tense" +msgid "Got categories" +msgstr "S'han obtingut les categories" + +#: libkpackagekit/KpkStrings.cpp:309 +msgctxt "The role of the transaction, in past tense" +msgid "Got old transactions" +msgstr "Aconsegueix les transaccions antigues" + +#: libkpackagekit/KpkStrings.cpp:311 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install of files" +msgstr "S'ha simulat l'instal·lació de fitxer" + +#: libkpackagekit/KpkStrings.cpp:313 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install" +msgstr "S'ha simulat l'instal·lació" + +#: libkpackagekit/KpkStrings.cpp:315 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the remove" +msgstr "S'ha simulat l'eliminació" + +#: libkpackagekit/KpkStrings.cpp:317 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the update" +msgstr "S'ha simulat l'actualització" + +#: libkpackagekit/KpkStrings.cpp:327 +msgid "No network connection available" +msgstr "La connexió de xarxa no està disponible" + +#: libkpackagekit/KpkStrings.cpp:329 +msgid "No package cache is available" +msgstr "No hi ha disponible cap memòria cau de paquet" + +#: libkpackagekit/KpkStrings.cpp:331 +msgid "Out of memory" +msgstr "Memòria esgotada" + +#: libkpackagekit/KpkStrings.cpp:333 +msgid "Failed to create a thread" +msgstr "No s'ha pogut crear un fil" + +#: libkpackagekit/KpkStrings.cpp:335 +msgid "Not supported by this backend" +msgstr "En este dorsal no està implementat." + +#: libkpackagekit/KpkStrings.cpp:337 +msgid "An internal system error has occurred" +msgstr "S'ha produït un error intern del sistema" + +#: libkpackagekit/KpkStrings.cpp:339 +msgid "A security trust relationship is not present" +msgstr "No hi ha una relació de confiança de seguretat" + +#: libkpackagekit/KpkStrings.cpp:341 +msgid "The package is not installed" +msgstr "El paquet no està instal·lat" + +#: libkpackagekit/KpkStrings.cpp:343 +msgid "The package was not found" +msgstr "No s'ha trobat el paquet" + +#: libkpackagekit/KpkStrings.cpp:345 +msgid "The package is already installed" +msgstr "El paquet ja està instal·lat" + +#: libkpackagekit/KpkStrings.cpp:347 +msgid "The package download failed" +msgstr "La descàrrega del paquet ha fallat" + +#: libkpackagekit/KpkStrings.cpp:349 +msgid "The group was not found" +msgstr "No s'ha trobat el grup" + +#: libkpackagekit/KpkStrings.cpp:351 +msgid "The group list was invalid" +msgstr "La llista del grup no era vàlida" + +#: libkpackagekit/KpkStrings.cpp:353 +msgid "Dependency resolution failed" +msgstr "No s'han pogut resoldre les dependències" + +#: libkpackagekit/KpkStrings.cpp:355 +msgid "Search filter was invalid" +msgstr "El filtre de cerca no era vàlid" + +#: libkpackagekit/KpkStrings.cpp:357 +msgid "The package identifier was not well formed" +msgstr "L'identificador del paquet no estava ben format" + +#: libkpackagekit/KpkStrings.cpp:359 +msgid "Transaction error" +msgstr "Error de transacció" + +#: libkpackagekit/KpkStrings.cpp:361 +msgid "Repository name was not found" +msgstr "No s'ha trobat el nom del repositori" + +#: libkpackagekit/KpkStrings.cpp:363 +msgid "Could not remove a protected system package" +msgstr "No s'ha pogut eliminar el paquet protegit del sistema" + +#: libkpackagekit/KpkStrings.cpp:365 +msgid "The task was canceled" +msgstr "S'ha cancel·lat la tasca" + +#: libkpackagekit/KpkStrings.cpp:367 +msgid "The task was forcibly canceled" +msgstr "La tasca s'ha cancel·lat forçosament" + +#: libkpackagekit/KpkStrings.cpp:369 +msgid "Reading the config file failed" +msgstr "No s'ha pogut llegir el fitxer de configuració" + +#: libkpackagekit/KpkStrings.cpp:371 +msgid "The task cannot be cancelled" +msgstr "La tasca no es pot cancel·lar" + +#: libkpackagekit/KpkStrings.cpp:373 +msgid "Source packages cannot be installed" +msgstr "No es poden instal·lar els paquets de codi font" + +#: libkpackagekit/KpkStrings.cpp:375 +msgid "The license agreement failed" +msgstr "L'acceptació de la llicència ha fallat" + +#: libkpackagekit/KpkStrings.cpp:377 +msgid "Local file conflict between packages" +msgstr "Conflicte entre paquets en algun fitxer local" + +#: libkpackagekit/KpkStrings.cpp:379 +msgid "Packages are not compatible" +msgstr "Els paquets no són compatibles" + +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "Hi ha un problema a l'hora de connectar a una font de programari" + +#: libkpackagekit/KpkStrings.cpp:383 +msgid "Failed to initialize" +msgstr "No s'ha pogut inicialitzar" + +#: libkpackagekit/KpkStrings.cpp:385 +msgid "Failed to finalize" +msgstr "No s'ha pogut finalitzar" + +#: libkpackagekit/KpkStrings.cpp:387 +msgid "Cannot get lock" +msgstr "No es pot bloquejar" + +#: libkpackagekit/KpkStrings.cpp:389 +msgid "No packages to update" +msgstr "No hi ha cap paquet per actualitzar" + +#: libkpackagekit/KpkStrings.cpp:391 +msgid "Cannot write repository configuration" +msgstr "No es pot escriure la configuració del repositori" + +#: libkpackagekit/KpkStrings.cpp:393 +msgid "Local install failed" +msgstr "La instal·lació local ha fallat" + +#: libkpackagekit/KpkStrings.cpp:395 +msgid "Bad GPG signature" +msgstr "La signatura GPG no és correcte" + +#: libkpackagekit/KpkStrings.cpp:397 +msgid "Missing GPG signature" +msgstr "Falta la signatura GPG" + +#: libkpackagekit/KpkStrings.cpp:399 +msgid "Repository configuration invalid" +msgstr "Configuració del repositori no vàlida" + +#: libkpackagekit/KpkStrings.cpp:401 +msgid "Invalid package file" +msgstr "El fitxer de paquet no és vàlid" + +#: libkpackagekit/KpkStrings.cpp:403 +msgid "Package install blocked" +msgstr "Instal·lació del paquet bloquejada" + +#: libkpackagekit/KpkStrings.cpp:405 +msgid "Package is corrupt" +msgstr "El paquet és corrupte" + +#: libkpackagekit/KpkStrings.cpp:407 +msgid "All packages are already installed" +msgstr "Ja estan instal·lats tots els paquets" + +#: libkpackagekit/KpkStrings.cpp:409 +msgid "The specified file could not be found" +msgstr "No es pot trobar el fitxer especificat" + +#: libkpackagekit/KpkStrings.cpp:411 +msgid "No more mirrors are available" +msgstr "No hi ha més rèpliques disponibles" + +#: libkpackagekit/KpkStrings.cpp:413 +msgid "No distribution upgrade data is available" +msgstr "No hi ha dades disponibles d'actualitzacions de la distribució" + +#: libkpackagekit/KpkStrings.cpp:415 +msgid "Package is incompatible with this system" +msgstr "El paquet és incompatible amb este sistema" + +#: libkpackagekit/KpkStrings.cpp:417 +msgid "No space is left on the disk" +msgstr "No queda espai al disc" + +#: libkpackagekit/KpkStrings.cpp:421 +msgid "Authorization failed" +msgstr "L'autorització ha fallat" + +#: libkpackagekit/KpkStrings.cpp:423 +msgid "Update not found" +msgstr "No s'ha trobat l'actualització" + +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "No es pot instal·lar des d'una font no fiable" + +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "No es pot actualitzar des d'una font no fiable" + +#: libkpackagekit/KpkStrings.cpp:429 +msgid "Cannot get the file list" +msgstr "No s'ha pogut obtindre la llista de fitxers" + +#: libkpackagekit/KpkStrings.cpp:431 +msgid "Cannot get package requires" +msgstr "No es poden obtindre els requeriments del paquet" + +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "No es pot deshabilitar la font" + +#: libkpackagekit/KpkStrings.cpp:435 +msgid "The download failed" +msgstr "La descàrrega ha fallat" + +#: libkpackagekit/KpkStrings.cpp:437 +msgid "Package failed to configure" +msgstr "No s'ha pogut configurar el paquet" + +#: libkpackagekit/KpkStrings.cpp:439 +msgid "Package failed to build" +msgstr "No s'ha pogut construir el paquet" + +#: libkpackagekit/KpkStrings.cpp:441 +msgid "Package failed to install" +msgstr "No s'ha pogut instal·lar el paquet" + +#: libkpackagekit/KpkStrings.cpp:443 +msgid "Package failed to be removed" +msgstr "No s'ha pogut eliminar el paquet" + +#: libkpackagekit/KpkStrings.cpp:445 +msgid "Unknown error" +msgstr "Error desconegut" + +#: libkpackagekit/KpkStrings.cpp:455 +msgid "" +"There is no network connection available.\n" +"Please check your connection settings and try again" +msgstr "" +"La connexió a la xarxa no està disponible.\n" +"Per favor, comproveu la configuració de la xarxa i torneu-ho a provar" + +#: libkpackagekit/KpkStrings.cpp:458 +msgid "" +"The package list needs to be rebuilt.\n" +"This should have been done by the backend automatically." +msgstr "" +"Cal refer la llista de paquets.\n" +"Això hauria de ser fet automàticament pel dorsal." + +#: libkpackagekit/KpkStrings.cpp:461 +msgid "" +"The service that is responsible for handling user requests is out of " +"memory.\n" +"Please close some programs or restart your computer." +msgstr "" +"El servei responsable de manejar les peticions de l'usuari no té prou " +"memòria.\n" +"Per favor, tanqueu alguns programes o reinicieu l'ordinador." + +#: libkpackagekit/KpkStrings.cpp:464 +msgid "A thread could not be created to service the user request." +msgstr "No s'ha pogut crear un fil que servisca la petició de l'usuari." + +#: libkpackagekit/KpkStrings.cpp:466 +msgid "" +"The action is not supported by this backend.\n" +"Please report a bug as this should not have happened." +msgstr "" +"L'acció no està implementada per este dorsal.\n" +"Per favor, informeu de l'error si això no hauria de passar." + +#: libkpackagekit/KpkStrings.cpp:469 +msgid "" +"A problem that we were not expecting has occurred.\n" +"Please report this bug with the error description." +msgstr "" +"S'ha produït un problema no esperat.\n" +"Per favor, informeu d'este problema amb la descripció de l'error." + +#: libkpackagekit/KpkStrings.cpp:472 +msgid "" +"A security trust relationship could not be made with the software origin.\n" +"Please check your software signature settings." +msgstr "" +"No es pot establir una relació de confiança de seguretat amb este font de " +"programari.\n" +"Per favor, comproveu la configuració de les signatures de programari." + +#: libkpackagekit/KpkStrings.cpp:475 +msgid "" +"The package that is trying to be removed or updated is not already installed." +msgstr "" +"El paquet que s'està intentant eliminar o actualitzar encara no està " +"instal·lat." + +#: libkpackagekit/KpkStrings.cpp:477 +msgid "" +"The package that is being modified was not found on your system or in any " +"software origin." +msgstr "" +"El paquet que està sent modificat no s'ha trobat en el vostre sistema o en " +"cap font de programari." + +#: libkpackagekit/KpkStrings.cpp:479 +msgid "The package that is trying to be installed is already installed." +msgstr "El paquet que s'està intentant instal·lar ja està instal·lat." + +#: libkpackagekit/KpkStrings.cpp:481 +msgid "" +"The package download failed.\n" +"Please check your network connectivity." +msgstr "" +"La descàrrega del paquet ha fallat.\n" +"Per favor, comproveu la connexió a la xarxa." + +#: libkpackagekit/KpkStrings.cpp:484 +msgid "" +"The group type was not found.\n" +"Please check your group list and try again." +msgstr "" +"No s'ha trobat el tipus de grup.\n" +"Per favor comproveu la vostre llista de grups i torneu-ho a provar." + +#: libkpackagekit/KpkStrings.cpp:487 +msgid "" +"The group list could not be loaded.\n" +"Refreshing your cache may help, although this is normally a software origin " +"error." +msgstr "" +"La llista del grup no es pot carregar.\n" +"Refrescar la vostre memòria cau pot ajudar, encara que normalment això és un " +"error de les fonts de programari." + +#: libkpackagekit/KpkStrings.cpp:491 +msgid "" +"A package dependency could not be found.\n" +"More information is available in the detailed report." +msgstr "" +"No es pot trobar alguna dependència d'un paquet.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:494 +msgid "The search filter was not correctly formed." +msgstr "El filtre de cerca no estava format correctament." + +#: libkpackagekit/KpkStrings.cpp:496 +msgid "" +"The package identifier was not well formed when sent to the system daemon.\n" +"This normally indicates an internal bug and should be reported." +msgstr "" +"L'identificador del paquet no estava ben format quan s'ha enviat al dimoni " +"del sistema.\n" +"Normalment això indica un error intern i s'hauria d'informar." + +#: libkpackagekit/KpkStrings.cpp:499 +msgid "" +"An error occurred while running the transaction.\n" +"More information is available in the detailed report." +msgstr "" +"Hi ha hagut un error mentre s'executava la transacció.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:502 +msgid "" +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." +msgstr "" +"No s'ha trobat el nom de la font remota de programari.\n" +"Caldria activar un ítem a Fonts de programari." + +#: libkpackagekit/KpkStrings.cpp:505 +msgid "Removing a protected system package is not allowed." +msgstr "No és permés eliminar un paquet protegit del sistema." + +#: libkpackagekit/KpkStrings.cpp:507 +msgid "The task was canceled successfully and no packages were changed." +msgstr "La tasca s'ha cancel·lat correctament i no s'ha canviat cap paquet." + +#: libkpackagekit/KpkStrings.cpp:509 +msgid "" +"The task was canceled successfully and no packages were changed.\n" +"The backend did not exit cleanly." +msgstr "" +"La tasca s'ha cancel·lat correctament i no s'ha canviat cap paquet.\n" +"El dorsal no ha eixit netament." + +#: libkpackagekit/KpkStrings.cpp:512 +msgid "" +"The native package configuration file could not be opened.\n" +"Please make sure your system's configuration is valid." +msgstr "" +"El fitxer de configuració natiu del paquet no es pot obrir.\n" +"Per favor, assegureu-vos que la configuració del vostre sistema és vàlida." + +#: libkpackagekit/KpkStrings.cpp:515 +msgid "The task is not safe to be cancelled at this time." +msgstr "En estos moments cancel·lar la tasca no és segur." + +#: libkpackagekit/KpkStrings.cpp:517 +msgid "" +"Source packages are not normally installed this way.\n" +"Check the extension of the file you are trying to install." +msgstr "" +"Els paquets font normalment no s'instal·len d'esta manera.\n" +"Comproveu l'extensió del fitxer que esteu intentant instal·lar." + +#: libkpackagekit/KpkStrings.cpp:520 +msgid "" +"The license agreement was not agreed to.\n" +"To use this software you have to accept the license." +msgstr "" +"La acord de llicència no ha estat acceptat.\n" +"Per utilitzar este programa cal que accepteu la llicència." + +#: libkpackagekit/KpkStrings.cpp:523 +msgid "" +"Two packages provide the same file.\n" +"This is usually due to mixing packages for different software origins." +msgstr "" +"Dos paquets proveeixen el mateix fitxer.\n" +"Normalment això és degut a la barreja de diferents fonts de programari." + +#: libkpackagekit/KpkStrings.cpp:526 +msgid "" +"Multiple packages exist that are not compatible with each other.\n" +"This is usually due to mixing packages from different software origins." +msgstr "" +"Existeixen múltiples paquets que no són compatibles amb els altres.\n" +"Normalment això és degut a la barreja de diferents fonts de programari." + +#: libkpackagekit/KpkStrings.cpp:529 +msgid "" +"There was a (possibly temporary) problem connecting to a software origins.\n" +"Please check the detailed error for further details." +msgstr "" +"Hi ha un problema (probablement temporal) en connectar a una font de " +"programari.\n" +"Per favor, per més detalls comproveu l'error detallat." + +#: libkpackagekit/KpkStrings.cpp:532 +msgid "" +"Failed to initialize packaging backend.\n" +"This may occur if other packaging tools are being used simultaneously." +msgstr "" +"No s'ha pogut inicialitzar el gestor de paquets.\n" +"Això pot passar perquè altres eines de gestió de paquets estan sent usades " +"simultàniament." + +#: libkpackagekit/KpkStrings.cpp:535 +msgid "" +"Failed to close down the backend instance.\n" +"This error can normally be ignored." +msgstr "" +"No s'ha pogut tancar la instància del dorsal.\n" +"Normalment este error es pot ignorar." + +#: libkpackagekit/KpkStrings.cpp:538 +msgid "" +"Cannot get the exclusive lock on the packaging backend.\n" +"Please close any other legacy packaging tools that may be open." +msgstr "" +"No es pot obtindre el bloqueig exclusiu sobre el gestor de paquets.\n" +"Per favor, tanqueu totes les eines de gestió de paquets que puguen estar " +"executant-se." + +#: libkpackagekit/KpkStrings.cpp:541 +msgid "None of the selected packages could be updated." +msgstr "Cap dels paquets seleccionats pot ser actualitzat." + +#: libkpackagekit/KpkStrings.cpp:543 +msgid "The repository configuration could not be modified." +msgstr "No es pot modificar la configuració del repositori." + +#: libkpackagekit/KpkStrings.cpp:545 +msgid "" +"Installing the local file failed.\n" +"More information is available in the detailed report." +msgstr "" +"La instal·lació del fitxer local ha fallat.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:548 +msgid "The package signature could not be verified." +msgstr "No es pot verificar la signatura del paquet." + +#: libkpackagekit/KpkStrings.cpp:550 +msgid "" +"The package signature was missing and this package is untrusted.\n" +"This package was not signed with a GPG key when created." +msgstr "" +"Falta la signatura del paquet i no és fiable.\n" +"Quan va ser creat este paquet no va ser signat amb una clau GPG." + +#: libkpackagekit/KpkStrings.cpp:553 +msgid "Repository configuration was invalid and could not be read." +msgstr "La configuració del repositori no és vàlida i no es pot llegir." + +#: libkpackagekit/KpkStrings.cpp:555 +msgid "" +"The package you are attempting to install is not valid.\n" +"The package file could be corrupt, or not a proper package." +msgstr "" +"El paquet que esteu intentant instal·lar no és vàlid.\n" +"El fitxer del paquet podria ser corrupte o no ser un paquet correcte." + +#: libkpackagekit/KpkStrings.cpp:558 +msgid "" +"Installation of this package was prevented by your packaging system's " +"configuration." +msgstr "" +"La configuració del vostre sistema de paquets no permet instal·lar este " +"paquet." + +#: libkpackagekit/KpkStrings.cpp:560 +msgid "" +"The package that was downloaded is corrupt and needs to be downloaded again." +msgstr "" +"El paquet que s'ha descarregat és corrupte i cal descarregar-lo de nou." + +#: libkpackagekit/KpkStrings.cpp:562 +msgid "" +"All of the packages selected for install are already installed on the system." +msgstr "" +"Tots els paquets seleccionats per instal·lar ja estan instal·lats al sistema." + +#: libkpackagekit/KpkStrings.cpp:564 +msgid "" +"The specified file could not be found on the system.\n" +"Check that the file still exists and has not been deleted." +msgstr "" +"El fitxer especificat no es pot trobar al sistema.\n" +"Comproveu que el fitxer encara existeix i que no ha estat esborrat." + +#: libkpackagekit/KpkStrings.cpp:567 +msgid "" +"Required data could not be found on any of the configured software origins.\n" +"There were no more download mirrors that could be tried." +msgstr "" +"La dada requerida no es pot trobar a cap de les fonts de programari " +"configurades.\n" +"No hi havia més rèpliques de servidors de descàrregues per poder provar." + +#: libkpackagekit/KpkStrings.cpp:570 +msgid "" +"Required upgrade data could not be found in any of the configured software " +"origins.\n" +"The list of distribution upgrades will be unavailable." +msgstr "" +"La dada d'actualització requerida no es pot trobar a cap de les fonts de " +"programari configurades.\n" +"La llista d'actualitzacions de la distribució no serà disponible." + +#: libkpackagekit/KpkStrings.cpp:573 +msgid "" +"The package that is trying to be installed is incompatible with this system." +msgstr "" +"El paquet que s'està intentant instal·lar és incompatible amb este sistema." + +#: libkpackagekit/KpkStrings.cpp:575 +msgid "" +"There is insufficient space on the device.\n" +"Free some space on the system disk to perform this operation." +msgstr "" +"No hi ha suficient espai al dispositiu.\n" +"Per dur a terme esta operació cal que allibereu una mica d'espai del disc " +"del sistema." + +#: libkpackagekit/KpkStrings.cpp:578 +msgid "Additional media is required to complete the transaction." +msgstr "Cal un suport addicional per completar la transacció." + +#: libkpackagekit/KpkStrings.cpp:580 +msgid "" +"You have failed to provide correct authentication.\n" +"Please check any passwords or account settings." +msgstr "" +"No vos heu autenticat correctament.\n" +"Comproveu les contrasenyes o arranjaments del compte." + +#: libkpackagekit/KpkStrings.cpp:583 +msgid "" +"The specified update could not be found.\n" +"It could have already been installed or no longer available on the remote " +"server." +msgstr "" +"No es pot trobar l'actualització especificada.\n" +"Potser ja està instal·lada o ja no està disponible al servidor remot." + +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "" +"El paquet no s'ha pogut instal·lar perquè és d'una font de programari no " +"fiable." + +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." +msgstr "" +"El paquet no s'ha pogut actualitzar perquè és d'una font de programari no " +"fiable." + +#: libkpackagekit/KpkStrings.cpp:590 +msgid "The file list is not available for this package." +msgstr "La llista de fitxers d'este paquet no està disponible." + +#: libkpackagekit/KpkStrings.cpp:592 +msgid "The information about what requires this package could not be obtained." +msgstr "" +"No es pot obtindre la informació sobre els requeriments d'este paquet." + +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "No s'ha pogut deshabilitar la font de programari especificada." + +#: libkpackagekit/KpkStrings.cpp:596 +msgid "" +"The download could not be done automatically and should be done manually.\n" +"More information is available in the detailed report." +msgstr "" +"La descàrrega no es pot fer automàticament i s'hauria de fer manualment.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:599 +msgid "" +"One of the selected packages failed to configure correctly.\n" +"More information is available in the detailed report." +msgstr "" +"No s'ha pogut configurar correctament un dels paquets seleccionats.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:602 +msgid "" +"One of the selected packages failed to build correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Un dels paquets seleccionats no s'ha pogut construir correctament.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:605 +msgid "" +"One of the selected packages failed to install correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Un dels paquets seleccionats no s'ha pogut instal·lar correctament.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:608 +msgid "" +"One of the selected packages failed to be removed correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Un dels paquets seleccionats no s'ha pogut eliminar correctament.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:611 +msgid "" +"Unknown error, please report a bug.\n" +"More information is available in the detailed report." +msgstr "" +"Error desconegut. Per favor, informeu del problema.\n" +"Hi ha més informació disponible a l'informe detallat." + +#: libkpackagekit/KpkStrings.cpp:622 +msgctxt "The group type" +msgid "Accessibility" +msgstr "Accessibilitat" + +#: libkpackagekit/KpkStrings.cpp:624 +msgctxt "The group type" +msgid "Accessories" +msgstr "Accessoris" + +#: libkpackagekit/KpkStrings.cpp:626 +msgctxt "The group type" +msgid "Education" +msgstr "Educació" + +#: libkpackagekit/KpkStrings.cpp:628 +msgctxt "The group type" +msgid "Games" +msgstr "Jocs" + +#: libkpackagekit/KpkStrings.cpp:630 +msgctxt "The group type" +msgid "Graphics" +msgstr "Gràfics" + +#: libkpackagekit/KpkStrings.cpp:632 +msgctxt "The group type" +msgid "Internet" +msgstr "Internet" + +#: libkpackagekit/KpkStrings.cpp:634 +msgctxt "The group type" +msgid "Office" +msgstr "Oficina" + +#: libkpackagekit/KpkStrings.cpp:636 +msgctxt "The group type" +msgid "Other" +msgstr "Altres" + +#: libkpackagekit/KpkStrings.cpp:638 +msgctxt "The group type" +msgid "Development" +msgstr "Desenvolupament" + +#: libkpackagekit/KpkStrings.cpp:640 +msgctxt "The group type" +msgid "Multimedia" +msgstr "Multimèdia" + +#: libkpackagekit/KpkStrings.cpp:642 +msgctxt "The group type" +msgid "System" +msgstr "Sistema" + +#: libkpackagekit/KpkStrings.cpp:644 +msgctxt "The group type" +msgid "GNOME desktop" +msgstr "Escriptori GNOME" + +#: libkpackagekit/KpkStrings.cpp:646 +msgctxt "The group type" +msgid "KDE desktop" +msgstr "Escriptori KDE" + +#: libkpackagekit/KpkStrings.cpp:648 +msgctxt "The group type" +msgid "XFCE desktop" +msgstr "Escriptori XFCE" + +#: libkpackagekit/KpkStrings.cpp:650 +msgctxt "The group type" +msgid "Other desktops" +msgstr "Altres escriptoris" + +#: libkpackagekit/KpkStrings.cpp:652 +msgctxt "The group type" +msgid "Publishing" +msgstr "Publicació" + +#: libkpackagekit/KpkStrings.cpp:654 +msgctxt "The group type" +msgid "Servers" +msgstr "Servidors" + +#: libkpackagekit/KpkStrings.cpp:656 +msgctxt "The group type" +msgid "Fonts" +msgstr "Tipus de lletra" + +#: libkpackagekit/KpkStrings.cpp:658 +msgctxt "The group type" +msgid "Admin tools" +msgstr "Eines d'administració" + +#: libkpackagekit/KpkStrings.cpp:660 +msgctxt "The group type" +msgid "Legacy" +msgstr "Herència" + +#: libkpackagekit/KpkStrings.cpp:662 +msgctxt "The group type" +msgid "Localization" +msgstr "Localització" + +#: libkpackagekit/KpkStrings.cpp:664 +msgctxt "The group type" +msgid "Virtualization" +msgstr "Virtualització" + +#: libkpackagekit/KpkStrings.cpp:666 +msgctxt "The group type" +msgid "Security" +msgstr "Seguretat" + +#: libkpackagekit/KpkStrings.cpp:668 +msgctxt "The group type" +msgid "Power management" +msgstr "Gestió d'energia" + +#: libkpackagekit/KpkStrings.cpp:670 +msgctxt "The group type" +msgid "Communication" +msgstr "Comunicació" + +#: libkpackagekit/KpkStrings.cpp:672 +msgctxt "The group type" +msgid "Network" +msgstr "Xarxa" + +#: libkpackagekit/KpkStrings.cpp:674 +msgctxt "The group type" +msgid "Maps" +msgstr "Mapes" + +#: libkpackagekit/KpkStrings.cpp:676 +msgctxt "The group type" +msgid "Software sources" +msgstr "Codis font del programari" + +#: libkpackagekit/KpkStrings.cpp:678 +msgctxt "The group type" +msgid "Science" +msgstr "Ciència" + +#: libkpackagekit/KpkStrings.cpp:680 +msgctxt "The group type" +msgid "Documentation" +msgstr "Documentació" + +#: libkpackagekit/KpkStrings.cpp:682 +msgctxt "The group type" +msgid "Electronics" +msgstr "Electrònica" + +#: libkpackagekit/KpkStrings.cpp:684 +msgctxt "The group type" +msgid "Package collections" +msgstr "Col·leccions de paquets" + +#: libkpackagekit/KpkStrings.cpp:686 +msgctxt "The group type" +msgid "Vendor" +msgstr "Productor" + +#: libkpackagekit/KpkStrings.cpp:688 +msgctxt "The group type" +msgid "Newest packages" +msgstr "Els paquets més nous" + +#: libkpackagekit/KpkStrings.cpp:690 +msgctxt "The group type" +msgid "Unknown group" +msgstr "Grup desconegut" + +#: libkpackagekit/KpkStrings.cpp:700 +msgctxt "The type of update" +msgid "Trivial update" +msgstr "Actualització trivial" + +#: libkpackagekit/KpkStrings.cpp:702 +msgctxt "The type of update" +msgid "Normal update" +msgstr "Actualització normal" + +#: libkpackagekit/KpkStrings.cpp:704 +msgctxt "The type of update" +msgid "Important update" +msgstr "Actualització important" + +#: libkpackagekit/KpkStrings.cpp:706 +msgctxt "The type of update" +msgid "Security update" +msgstr "Actualització de seguretat" + +#: libkpackagekit/KpkStrings.cpp:708 +msgctxt "The type of update" +msgid "Bug fix update" +msgstr "Actualització per solucionar errors" + +#: libkpackagekit/KpkStrings.cpp:710 +msgctxt "The type of update" +msgid "Enhancement update" +msgstr "Actualització amb millores" + +#: libkpackagekit/KpkStrings.cpp:712 +msgctxt "The type of update" +msgid "Blocked update" +msgstr "Actualització bloquejada" + +#: libkpackagekit/KpkStrings.cpp:715 +msgctxt "The type of update" +msgid "Installed" +msgstr "Instal·lat" + +#: libkpackagekit/KpkStrings.cpp:718 +msgctxt "The type of update" +msgid "Available" +msgstr "Disponible" + +#: libkpackagekit/KpkStrings.cpp:720 +msgctxt "The type of update" +msgid "Unknown update" +msgstr "Actualització desconeguda" + +#: libkpackagekit/KpkStrings.cpp:731 +#, kde-format +msgid "1 trivial update" +msgid_plural "%1 trivial updates" +msgstr[0] "1 actualització trivial" +msgstr[1] "%1 actualitzacions trivials" + +#: libkpackagekit/KpkStrings.cpp:733 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "1 update" +msgid_plural "%1 updates" +msgstr[0] "1 actualització" +msgstr[1] "%1 actualitzacions" + +#: libkpackagekit/KpkStrings.cpp:735 +#, kde-format +msgid "1 important update" +msgid_plural "%1 important updates" +msgstr[0] "1 actualització important" +msgstr[1] "%1 actualitzacions importants" + +#: libkpackagekit/KpkStrings.cpp:737 +#, kde-format +msgid "1 security update" +msgid_plural "%1 security updates" +msgstr[0] "1 actualització de seguretat" +msgstr[1] "%1 actualitzacions de seguretat" + +#: libkpackagekit/KpkStrings.cpp:739 +#, kde-format +msgid "1 bug fix update" +msgid_plural "%1 bug fix updates" +msgstr[0] "1 actualització per solucionar errors" +msgstr[1] "%1 actualitzacions per solucionar errors" + +#: libkpackagekit/KpkStrings.cpp:741 +#, kde-format +msgid "1 enhancement update" +msgid_plural "%1 enhancement updates" +msgstr[0] "1 actualització amb millores" +msgstr[1] "%1 actualitzacions amb millores" + +#: libkpackagekit/KpkStrings.cpp:743 +#, kde-format +msgid "1 blocked update" +msgid_plural "%1 blocked updates" +msgstr[0] "1 actualització bloquejada" +msgstr[1] "%1 actualitzacions bloquejades" + +#: libkpackagekit/KpkStrings.cpp:745 +#, kde-format +msgid "1 installed package" +msgid_plural "%1 installed packages" +msgstr[0] "1 paquet instal·lat" +msgstr[1] "%1 paquets instal·lats" + +#: libkpackagekit/KpkStrings.cpp:747 +#, kde-format +msgid "1 available package" +msgid_plural "%1 available packages" +msgstr[0] "1 paquet disponible" +msgstr[1] "%1 paquets disponibles" + +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 +#, kde-format +msgid "1 unknown update" +msgid_plural "%1 unknown updates" +msgstr[0] "1 actualització desconeguda" +msgstr[1] "%1 actualitzacions desconegudes" + +#: libkpackagekit/KpkStrings.cpp:759 +#, kde-format +msgid "1 trivial update selected" +msgid_plural "%1 trivial updates selected" +msgstr[0] "S'ha seleccionat 1 actualització trivial" +msgstr[1] "S'han seleccionat %1 actualitzacions trivials" + +#: libkpackagekit/KpkStrings.cpp:762 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "1 update selected" +msgid_plural "%1 updates selected" +msgstr[0] "S'ha seleccionat 1 actualització" +msgstr[1] "S'han seleccionat %1 actualitzacions" + +#: libkpackagekit/KpkStrings.cpp:765 +#, kde-format +msgid "1 important update selected" +msgid_plural "%1 important updates selected" +msgstr[0] "S'ha seleccionat 1 actualització important" +msgstr[1] "S'han seleccionat %1 actualitzacions importants" + +#: libkpackagekit/KpkStrings.cpp:767 +#, kde-format +msgid "1 security update selected" +msgid_plural "%1 security updates selected" +msgstr[0] "S'ha seleccionat 1 actualització de seguretat" +msgstr[1] "S'han seleccionat %1 actualitzacions de seguretat" + +#: libkpackagekit/KpkStrings.cpp:769 +#, kde-format +msgid "1 bug fix update selected" +msgid_plural "%1 bug fix updates selected" +msgstr[0] "S'ha seleccionat 1 actualització per solucionar errors" +msgstr[1] "S'han seleccionat %1 actualitzacions per solucionar errors" + +#: libkpackagekit/KpkStrings.cpp:771 +#, kde-format +msgid "1 enhancement update selected" +msgid_plural "%1 enhancement updates selected" +msgstr[0] "S'ha seleccionat 1 actualització amb millores" +msgstr[1] "S'han seleccionat %1 actualitzacions amb millores" + +#: libkpackagekit/KpkStrings.cpp:773 +#, kde-format +msgid "1 installed package selected to be removed" +msgid_plural "%1 installed packages selected to be removed" +msgstr[0] "S'ha seleccionat per eliminar 1 paquet instal·lat" +msgstr[1] "S'han seleccionat per eliminar %1 paquets instal·lats" + +#: libkpackagekit/KpkStrings.cpp:776 +#, kde-format +msgid "1 available package selected to be installed" +msgid_plural "%1 available packages selected to be installed" +msgstr[0] "S'ha seleccionat per instal·lar 1 paquet disponible" +msgstr[1] "S'han seleccionat per instal·lar %1 paquets disponibles" + +#: libkpackagekit/KpkStrings.cpp:787 +#, kde-format +msgid "%1 trivial update" +msgid_plural "%1 trivial updates, %2 selected" +msgstr[0] "%1 actualització trivial" +msgstr[1] "%1 actualitzacions trivials, %2 seleccionades" + +#: libkpackagekit/KpkStrings.cpp:790 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "%1 update" +msgid_plural "%1 updates, %2 selected" +msgstr[0] "%1 actualització" +msgstr[1] "%1 actualitzacions, %2 seleccionades" + +#: libkpackagekit/KpkStrings.cpp:792 +#, kde-format +msgid "%1 important update" +msgid_plural "%1 important updates, %2 selected" +msgstr[0] "%1 actualització important" +msgstr[1] "%1 actualitzacions importants, %2 seleccionades" + +#: libkpackagekit/KpkStrings.cpp:794 +#, kde-format +msgid "%1 security update" +msgid_plural "%1 security updates, %2 selected" +msgstr[0] "%1 actualització de seguretat" +msgstr[1] "%1 actualitzacions de seguretat, %2 seleccionades" + +#: libkpackagekit/KpkStrings.cpp:796 +#, kde-format +msgid "%1 bug fix update" +msgid_plural "%1 bug fix updates, %2 selected" +msgstr[0] "%1 actualització per solucionar errors" +msgstr[1] "%1 actualitzacions per solucionar errors, %2 seleccionades" + +#: libkpackagekit/KpkStrings.cpp:798 +#, kde-format +msgid "%1 enhancement update" +msgid_plural "%1 enhancement updates, %2 selected" +msgstr[0] "%1 actualització amb millores" +msgstr[1] "%1 actualitzacions amb millores, %2 seleccionades" + +#: libkpackagekit/KpkStrings.cpp:801 +#, kde-format +msgid "%1 blocked update" +msgid_plural "%1 blocked updates" +msgstr[0] "%1 actualització bloquejada" +msgstr[1] "%1 actualitzacions bloquejades" + +#: libkpackagekit/KpkStrings.cpp:803 +#, kde-format +msgid "%1 installed package" +msgid_plural "%1 installed packages, %2 selected to be removed" +msgstr[0] "%1 paquet instal·lat" +msgstr[1] "%1 paquets instal·lats, %2 seleccionats per eliminar" + +#: libkpackagekit/KpkStrings.cpp:805 +#, kde-format +msgid "%1 available package" +msgid_plural "%1 available packages, %2 selected to be installed" +msgstr[0] "%1 paquet disponible" +msgstr[1] "%1 paquets disponibles, %2 seleccionats per instal·lar" + +#: libkpackagekit/KpkStrings.cpp:808 +#, kde-format +msgid "%1 unknown update" +msgid_plural "%1 unknown updates" +msgstr[0] "%1 actualització desconeguda" +msgstr[1] "%1 actualitzacions desconegudes" + +#: libkpackagekit/KpkStrings.cpp:817 +msgid "No restart is necessary" +msgstr "No cal reiniciar res" + +#: libkpackagekit/KpkStrings.cpp:819 +msgid "You will be required to restart this application" +msgstr "Se vos demanarà que reinicieu esta aplicació" + +#: libkpackagekit/KpkStrings.cpp:821 +msgid "You will be required to log out and back in" +msgstr "Se vos demanarà que eixiu de la sessió i torneu a entrar" + +#: libkpackagekit/KpkStrings.cpp:823 +msgid "A restart will be required" +msgstr "Caldrà reiniciar" + +#: libkpackagekit/KpkStrings.cpp:825 +msgid "You will be required to log out and back in due to a security update." +msgstr "" +"Degut a una actualització de seguretat se vos demanarà que eixiu de la " +"sessió i torneu a entrar." + +#: libkpackagekit/KpkStrings.cpp:827 +msgid "A restart will be required due to a security update." +msgstr "Caldrà reiniciar degut a una actualització de seguretat." + +#: libkpackagekit/KpkStrings.cpp:840 +msgid "No restart is required" +msgstr "No cal reiniciar res" + +#: libkpackagekit/KpkStrings.cpp:842 +msgid "A restart is required" +msgstr "Cal reiniciar" + +#: libkpackagekit/KpkStrings.cpp:844 +msgid "You need to log out and log back in" +msgstr "Cal que eixiu de la sessió i torneu a entrar" + +#: libkpackagekit/KpkStrings.cpp:846 +msgid "You need to restart the application" +msgstr "Cal que reinicieu l'aplicació" + +#: libkpackagekit/KpkStrings.cpp:848 +msgid "You need to log out and log back in to remain secure." +msgstr "Per mantindre-vos segurs cal que eixiu de la sessió i torneu a entrar." + +#: libkpackagekit/KpkStrings.cpp:850 +msgid "A restart is required to remain secure." +msgstr "Per mantindre-vos segurs cal reiniciar." + +#: libkpackagekit/KpkStrings.cpp:863 +msgid "Stable" +msgstr "Estable" + +#: libkpackagekit/KpkStrings.cpp:865 +msgid "Unstable" +msgstr "Inestable" + +#: libkpackagekit/KpkStrings.cpp:867 +msgid "Testing" +msgstr "En proves" + +#: libkpackagekit/KpkStrings.cpp:880 +#, kde-format +msgid "Please insert the CD labeled '%1', and press continue." +msgstr "Per favor, introduïu el CD amb l'etiqueta '%1' i premeu continua." + +#: libkpackagekit/KpkStrings.cpp:882 +#, kde-format +msgid "Please insert the DVD labeled '%1', and press continue." +msgstr "Per favor, introduïu el DVD amb l'etiqueta '%1' i premeu continua." + +#: libkpackagekit/KpkStrings.cpp:884 +#, kde-format +msgid "Please insert the disc labeled '%1', and press continue." +msgstr "Per favor, introduïu el disc amb l'etiqueta '%1' i premeu continua." + +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 +#, kde-format +msgid "Please insert the medium labeled '%1', and press continue." +msgstr "Per favor, introduïu el suport amb l'etiqueta '%1' i premeu continua." + +#: libkpackagekit/KpkStrings.cpp:896 +msgid "A mirror is possibly broken" +msgstr "Possiblement una rèplica estiga trencada" + +#: libkpackagekit/KpkStrings.cpp:898 +msgid "The connection was refused" +msgstr "S'ha rebutjat la connexió" + +#: libkpackagekit/KpkStrings.cpp:900 +msgid "The parameter was invalid" +msgstr "El paràmetre no era vàlid" + +#: libkpackagekit/KpkStrings.cpp:902 +msgid "The priority was invalid" +msgstr "La prioritat no era vàlida" + +#: libkpackagekit/KpkStrings.cpp:904 +msgid "Backend warning" +msgstr "Alerta del dorsal" + +#: libkpackagekit/KpkStrings.cpp:906 +msgid "Daemon warning" +msgstr "Alerta del dimoni" + +#: libkpackagekit/KpkStrings.cpp:908 +msgid "The package list cache is being rebuilt" +msgstr "S'està reconstruint la memòria cau de la llista de paquets" + +#: libkpackagekit/KpkStrings.cpp:910 +msgid "An untrusted package was installed" +msgstr "S'ha instal·lat un paquet no fiable" + +#: libkpackagekit/KpkStrings.cpp:912 +msgid "A newer package exists" +msgstr "Existeix un paquet més nou" + +#: libkpackagekit/KpkStrings.cpp:914 +msgid "Could not find package" +msgstr "No s'ha pogut trobar el paquet" + +#: libkpackagekit/KpkStrings.cpp:916 +msgid "Configuration files were changed" +msgstr "S'han canviat els fitxers de configuració" + +#: libkpackagekit/KpkStrings.cpp:918 +msgid "Package is already installed" +msgstr "El paquet ja està instal·lat" + +#: libkpackagekit/KpkStrings.cpp:920 +msgid "Automatic cleanup is being ignored" +msgstr "S'està ignorant la neteja automàtica" + +#: libkpackagekit/KpkStrings.cpp:922 +msgid "Software source download failed" +msgstr "La descàrrega del del codi font del programari ha fallat" + +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "No teniu els privilegis necessaris per dur a terme esta acció." + +#: libkpackagekit/KpkStrings.cpp:937 +msgid "Could not get a transaction id from packagekitd." +msgstr "" +"No s'ha pogut obtindre un identificador de la transacció del packagekitd." + +#: libkpackagekit/KpkStrings.cpp:939 +msgid "Cannot connect to this transaction id." +msgstr "No es pot connectar a este identificador de transacció." + +#: libkpackagekit/KpkStrings.cpp:941 +msgid "This action is unknown." +msgstr "Esta acció és desconeguda." + +#: libkpackagekit/KpkStrings.cpp:943 +msgid "The packagekitd service could not be started." +msgstr "No es pot iniciar el servei packagekitd." + +#: libkpackagekit/KpkStrings.cpp:945 +msgid "The query is not valid." +msgstr "La consulta no és vàlida." + +#: libkpackagekit/KpkStrings.cpp:947 +msgid "The file is not valid." +msgstr "El fitxer no és vàlid." + +#: libkpackagekit/KpkStrings.cpp:949 +msgid "This function is not yet supported." +msgstr "Esta funció encara no està implementada." + +#: libkpackagekit/KpkStrings.cpp:951 +msgid "Could not talk to packagekitd." +msgstr "No s'ha pogut comunicar amb el packagekitd." + +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 +msgid "An unknown error happened." +msgstr "Hi ha hagut un error desconegut." + +#: SmartIcon/KpkTransactionWatcher.cpp:102 +msgid "Ignore" +msgstr "Ignora" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
        • %2
        Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
        • %2
        Do you want to search " +"for these now?" +msgstr[0] "Cal el següent fitxer:
        • %2
        Voleu cercar-lo ara?" +msgstr[1] "" +"Calen els següents fitxers:
        • %2
        Voleu cercar-los ara?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Un programa vol instal·lar un fitxer" +msgstr[1] "Un programa vol instal·lar fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 vol instal·lar un fitxer" +msgstr[1] "%2 vol instal·lar fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "No s'ha pogut començar la transacció de cerca de fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "no està d'acord a cercar" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "El paquet %1 ja proveeix este fitxer" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "No s'ha pogut instal·lar el fitxer" +msgstr[1] "No s'han pogut instal·lar els fitxers" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "S'instal·larà el paquet següent" +msgstr[1] "S'instal·laran els paquets següents" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "El fitxer no es pot trobar a cap paquet" +msgstr[1] "Els fitxers no es poden trobar a cap paquet" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "No s'ha pogut trobar el paquet" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Teniu %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
        And another update" +msgid_plural "
        And %1 more updates" +msgstr[0] "
        I una altra actualització" +msgstr[1] "
        I %1 actualitzacions més" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Revisa i actualitza" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" +msgstr "No ho tornes a preguntar" + +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." +msgstr "Les actualitzacions s'estan instal·lant automàticament." + +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "Les actualitzacions de seguretat s'estan instal·lant automàticament." + +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." +msgstr "S'ha actualitzat el sistema correctament." + +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." +msgstr "L'actualització del programari ha fallat." + +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Es requereix el fitxer següent:" +msgstr[1] "Es requereixen els fitxers següents:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Voleu buscar-lo ara?" +msgstr[1] "Voleu buscar-los ara?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 vol instal·lar un fitxer" +msgstr[1] "%1 vol instal·lar fitxers" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" +msgstr "Comença l'actualització ara" + +#: SmartIcon/KpkDistroUpgrade.cpp:113 +msgid "Distribution upgrade finished. " +msgstr "S'ha completat l'actualització de la distribució. " + +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "No s'ha pogut començar la transacció de resolució" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "L'usuari ha cancel·lat la transacció" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Hi ha hagut un error desconegut" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
        • %2
        Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
        • %2
        Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Es requereix un paquet addicional:
        • %2
        Voleu cercar i " +"instal·lar-lo ara?" +msgstr[1] "" +"Es requereixen paquets addicionals:
        • %2
        Voleu cercar i " +"instal·lar-los ara?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Un programa vol instal·lar un paquet" +msgstr[1] "Un programa vol instal·lar paquets" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 vol instal·lar un paquet" +msgstr[1] "%2 vol instal·lar paquets" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "El paquet %2 ja està instal·lat" +msgstr[1] "Els paquets %2 ja estan instal·lats" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "No s'han pogut instal·lar els paquets" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "La transacció no ha finalitzat amb èxit" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "El paquet no s'ha pogut trobar en cap font de programari" +msgstr[1] "Els paquets no s'han pogut trobar en cap font de programari" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "No s'ha pogut trobar %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "Icona de la safata del sistema del KPackageKit" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "libpackagekit-qt i altres coses" + +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Cal un tipus de lletra addicional per veure correctament este document. " +"Voleu cercar ara el paquet adequat?" +msgstr[1] "" +"Calen tipus de lletra addicionals per veure correctament este document. " +"Voleu cercar ara els paquets adequats?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Un programa vol instal·lar un tipus de lletra" +msgstr[1] "Un programa vol instal·lar tipus de lletra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 vol instal·lar un tipus de lletra" +msgstr[1] "%2 vol instal·lar tipus de lletra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Cerca" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "No s'ha pogut cercar proveïdors" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplicació que pot obrir este tipus de fitxer" +msgstr[1] "Aplicacions que poden obrir este tipus de fitxer" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "No es poden trobar nous tipus de lletra per este document" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "No s'ha pogut trobar el tipus de lletra" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Este element no està implementat pel vostre dorsal, o no és un fitxer. " +msgstr[1] "" +"Estos elements no estan implementats pel vostre dorsal o no són fitxers." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Impossible d'instal·lar" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Voleu instal·lar este fitxer?" +msgstr[1] "Voleu instal·lar estos fitxers?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Ho instal·lo?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "El fitxer no estava instal·lat" +msgstr[1] "Els fitxers no estaven instal·lats" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "El fitxer s'ha instal·lat correctament" +msgstr[1] "Els fitxers s'han instal·lat correctament" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Hi ha hagut un error." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
        • %2
        Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
        • %2
        Do you want to " +"search for these now?" +msgstr[0] "Cal el següent connector:
        • %2
        Voleu cercar-lo ara?" +msgstr[1] "" +"Calen els següents connectors:
        • %2
        Voleu cercar-los ara?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Un programa necessita un connector addicional per descodificar este fitxer" +msgstr[1] "" +"Un programa necessita connectors addicionals per descodificar este fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Un programa necessita un connector addicional per codificar este fitxer" +msgstr[1] "" +"Un programa necessita connectors addicionals per codificar este fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Un programa necessita un connector addicional per esta operació" +msgstr[1] "Un programa necessita connectors addicionals per esta operació" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 necessita un connector addicional per descodificar este fitxer" +msgstr[1] "%2 necessita connectors addicionals per descodificar este fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 necessita un connector addicional per codificar este fitxer" +msgstr[1] "%2 necessita connectors addicionals per codificar este fitxer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 necessita un connector addicional per esta operació" +msgstr[1] "%2 necessita connectors addicionals per esta operació" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Voleu instal·lar ara este paquet?" +msgstr[1] "Voleu instal·lar ara estos paquets?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "El connector no s'ha pogut trobar en cap font de programari" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "No s'ha pogut cercar el connector" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "El nom de fitxer no s'ha pogut trobar en cap font de programari" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Transaccions" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" +msgstr "Refresca la llista de paquets" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" +msgstr "Mostra els missatges" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "Amaga esta icona" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, kde-format +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paquet: %2" +msgstr[1] "Paquets: %2" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "Un missatge del gestor de paquets" +msgstr[1] "%1 missatges del gestor de paquets" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" +msgstr "S'ha completat l'actualització del sistema" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Reinicia" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ara no" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "Ix" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "Missatges del gestor de paquets" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "Missatge" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Un programa vol eliminar un fitxer" +msgstr[1] "Un programa vol eliminar fitxers" + +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, kde-format +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 vol eliminar un fitxer" +msgstr[1] "%2 vol eliminar fitxers" + +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "S'eliminarà el fitxer següent:" +msgstr[1] "S'eliminaran els fitxers següents:" + +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "" +"Voleu cercar paquets que continguen este fitxer i eliminar-los ara?" +msgstr[1] "" +"Voleu cercar paquets que continguen estos fitxers i eliminar-los ara?" + +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Cerca" + +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "S'eliminarà el paquet següent" +msgstr[1] "S'eliminaran els paquets següents" + +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "El fitxer no es pot trobar en cap dels paquets instal·lats" +msgstr[1] "Els fitxers no es poden trobar en cap dels paquets instal·lats" + +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
        • %1
        • Do you want to search for a program to open this file type now?" +msgstr "" +"Cal un programa addicional per obrir este tipus de fitxer:
          • %1
          • Voleu cercar ara algun programa que puga obrir este tipus de fitxer?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Un programa necessita un nou tipus MIME" +msgstr[1] "Un programa necessita nous tipus MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 necessita un nou tipus MIME" +msgstr[1] "%2 necessita nous tipus MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Cerca" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" +"No s'han trobat noves aplicacions que puguen manejar este tipus de fitxer" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "No s'ha pogut trobar cap programa" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

            Do you want to install this catalog?

            • %2
            " +msgid_plural "" +"

            Do you want to install these catalogs?

            • %2
            " +msgstr[0] "

            Voleu instal·lar este catàleg?

            • %2
            " +msgstr[1] "

            Voleu instal·lar estos catàlegs?

            • %2
            " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instal·la el catàleg" +msgstr[1] "Instal·la els catàlegs" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instal·la" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"El dorsal no implementa cap dels mètodes necessaris per instal·lar catàlegs" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "No està implementat" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Ha fallat en obrir el catàleg %2 " +msgstr[1] "Ha fallat en obrir els catàlegs %2" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "No es pot obrir" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "No s'ha trobat cap paquet a instal·lar" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "No s'ha pogut començar a la transacció de configuració" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Arranjaments del KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Cada hora" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Diàriament" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Setmanalment" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Mensualment" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Mai" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Només seguretat" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Totes les actualitzacions" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Cap" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "No s'ha pogut especificar la dada d'origen" + +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "El KPackageKit és una eina per gestionar programari" + +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "Mostra les actualitzacions" + +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "Mostra els arranjaments" + +#: KPackageKit/main.cpp:48 +msgid "Show backend details" +msgstr "Mostra els detalls del dorsal" + +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "Instal·lador de tipus MIME" + +#: KPackageKit/main.cpp:50 +msgid "Package name installer" +msgstr "Instal·lador per nom de paquets" + +#: KPackageKit/main.cpp:51 +msgid "Single file installer" +msgstr "Instal·lador de fitxers solts" + +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "Eliminador de paquets solts" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Fitxer de paquet a instal·lar" + +#: rc.cpp:1 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Joan Maspons Ventura" + +#: rc.cpp:2 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "joanmaspons@gmail.com" + +#. i18n: file: Updater/KpkUpdate.ui:74 +#. i18n: ectx: property (text), widget (KPushButton, selectAllPB) +#: rc.cpp:5 +msgid "Select all updates" +msgstr "Selecciona totes les actualitzacions" + +#. i18n: file: Updater/KpkUpdate.ui:81 +#. i18n: ectx: property (text), widget (KPushButton, refreshPB) +#: rc.cpp:8 +msgid "Refresh" +msgstr "Refresca" + +#. i18n: file: Updater/KpkUpdate.ui:88 +#. i18n: ectx: property (text), widget (KPushButton, historyPB) +#. i18n: file: Updater/KpkHistory.ui:13 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) +#: rc.cpp:11 rc.cpp:14 +msgid "History" +msgstr "Historial" + +#. i18n: file: Updater/KpkHistory.ui:22 +#. i18n: ectx: property (clickMessage), widget (KLineEdit, searchLineKLE) +#: rc.cpp:17 +msgid "Type filter" +msgstr "Teclegeu un filtre" + +#. i18n: file: Updater/KpkHistory.ui:54 +#. i18n: ectx: property (text), widget (QLabel, timeCacheLabel) +#: rc.cpp:20 +msgid "Time since last cache refresh: 5 hours" +msgstr "Temps des de l'últim refresc de la memòria cau: 5 hores" + +#. i18n: file: AddRm/KpkPackageDetails.ui:69 +#. i18n: ectx: property (text), widget (QToolButton, fileListTB) +#: rc.cpp:29 +msgid "File List" +msgstr "Llista de fitxers" + +#. i18n: file: AddRm/KpkPackageDetails.ui:85 +#. i18n: ectx: property (text), widget (QToolButton, dependsOnTB) +#: rc.cpp:32 +msgid "Depends on" +msgstr "Depèn de" + +#. i18n: file: AddRm/KpkPackageDetails.ui:101 +#. i18n: ectx: property (text), widget (QToolButton, requiredByTB) +#: rc.cpp:35 +msgid "Required by" +msgstr "Requerit per" + +#. i18n: file: AddRm/KpkAddRm.ui:20 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) +#: rc.cpp:38 +msgid "Add and Remove Software" +msgstr "Afig i elimina programes" + +#. i18n: file: AddRm/KpkAddRm.ui:34 +#. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) +#: rc.cpp:41 +msgid "Search packages" +msgstr "Cerca paquets" + +#. i18n: file: AddRm/KpkAddRm.ui:68 +#. i18n: ectx: property (text), widget (QToolButton, filtersTB) +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#: rc.cpp:44 rc.cpp:155 +msgid "Filters" +msgstr "Filtres" + +#. i18n: file: AddRm/KpkAddRm.ui:91 +#. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) +#: rc.cpp:47 +msgid "All Packages" +msgstr "Tots els paquets" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) +#: rc.cpp:59 +msgid "Transaction" +msgstr "Transacció" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:62 +msgid "icon" +msgstr "icona" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 +msgid "Downloading Packages" +msgstr "S'estan descarregant els paquets" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "EtiquetaDeText" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 +#. i18n: ectx: property (text), widget (QLabel, packageL) +#: rc.cpp:74 +msgid "libfoo" +msgstr "libfoo" + +#. i18n: file: libkpackagekit/KpkRequirements.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:77 +msgid "Additional changes are required to complete the task" +msgstr "Calen canvis addicionals per completar la tasca" + +#. i18n: file: libkpackagekit/KpkRequirements.ui:57 +#. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) +#: rc.cpp:80 +msgid "Actions" +msgstr "Accions" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:39 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:89 +msgid "Repository name:" +msgstr "Nom del repositori:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:65 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:92 +msgid "Signature URL:" +msgstr "URL de la signatura:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:91 +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: rc.cpp:95 +msgid "Signature user identifier:" +msgstr "Signatura de l'identificador d'usuari:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:117 +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: rc.cpp:98 +msgid "Signature identifier:" +msgstr "Identificador de la signatura:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:144 +#. i18n: ectx: property (text), widget (QLabel, label_10) +#: rc.cpp:101 +msgid "Do you recognise the user and trust this key?" +msgstr "Reconeixeu este usuari i confieu en esta clau?" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:161 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:104 +msgid "Do you trust the origin of packages?" +msgstr "Confieu en l'origen dels paquets?" + +#. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:110 +msgid "Please read the following important information before continuing:" +msgstr "" +"Per favor, avanç de continuar llegiu la següent informació important:" + +#. i18n: file: Settings/KpkSettings.ui:14 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) +#: rc.cpp:113 +msgid "Settings" +msgstr "Opcions" + +#. i18n: file: Settings/KpkSettings.ui:29 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: rc.cpp:116 +msgid "Update settings" +msgstr "Actualitza l'arranjament" + +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) +#: rc.cpp:119 +msgid "Check for updates:" +msgstr "Comprova si hi ha actualitzacions:" + +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) +#: rc.cpp:122 +msgid "Automatically install:" +msgstr "Instal·la automàticament:" + +#. i18n: file: Settings/KpkSettings.ui:72 +#. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) +#: rc.cpp:125 +msgid "Notify when updates are available" +msgstr "Comunica quan hi haja actualitzacions disponibles" + +#. i18n: file: Settings/KpkSettings.ui:94 +#. i18n: ectx: property (title), widget (QGroupBox, originGB) +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "Origen dels paquets" + +#. i18n: file: Settings/KpkSettings.ui:106 +#. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) +#: rc.cpp:131 +msgid "&Show origins of debug and development packages" +msgstr "&Mostra l'origen dels paquets de depuració d'errors i desenvolupament" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:26 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: rc.cpp:134 +msgid "About Backend" +msgstr "Quant al dorsal" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:32 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:137 +msgid "Backend name:" +msgstr "Nom del dorsal:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:39 +#. i18n: ectx: property (text), widget (QLabel, nameL) +#: rc.cpp:140 +msgid "backend name here" +msgstr "Ací, nom del dorsal" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:46 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:143 +msgid "Backend author:" +msgstr "Autor del dorsal:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Descripció del dorsal:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 +#. i18n: ectx: property (text), widget (QLabel, authorL) +#: rc.cpp:149 +msgid "backend author name here" +msgstr "ací, nom de l'autor del dorsal" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "ací, descripció del dorsal" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 +#. i18n: ectx: property (text), widget (QCheckBox, visibleCB) +#: rc.cpp:164 +msgid "Package is visible" +msgstr "El paquet és visible" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 +#. i18n: ectx: property (text), widget (QCheckBox, newestCB) +#: rc.cpp:167 +msgid "Newest" +msgstr "El més nou" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 +#. i18n: ectx: property (text), widget (QCheckBox, guiCB) +#: rc.cpp:170 +msgid "GUI" +msgstr "IGU" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, freeCB) +#: rc.cpp:173 +msgid "Free software" +msgstr "Programari lliure" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 +#. i18n: ectx: property (text), widget (QCheckBox, supportedCB) +#: rc.cpp:176 +msgid "Supported" +msgstr "Suportat" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) +#: rc.cpp:179 +msgid "Methods" +msgstr "Mètodes" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 +#. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) +#: rc.cpp:182 +msgid "GetUpdates" +msgstr "Obtén actualitzacions" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 +#. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) +#: rc.cpp:185 +msgid "UpdatePackage" +msgstr "Actualitza paquet" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 +#. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) +#: rc.cpp:188 +msgid "GetRepositoryList" +msgstr "Obtén la llista de repositoris" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 +#. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) +#: rc.cpp:191 +msgid "RefreshCache" +msgstr "Refresca la memòria cau" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 +#. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) +#: rc.cpp:194 +msgid "InstallPackage" +msgstr "Instal·la paquet" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 +#. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) +#: rc.cpp:197 +msgid "RepositoryEnable" +msgstr "Repositori habilitat" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 +#. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) +#: rc.cpp:200 +msgid "UpdateSystem" +msgstr "Actualitza sistema" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 +#. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) +#: rc.cpp:203 +msgid "RemovePackage" +msgstr "Elimina paquet" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 +#. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) +#: rc.cpp:206 +msgid "RepositorySetEnable" +msgstr "Conjunt de repositoris habilitats" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 +#. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) +#: rc.cpp:209 +msgid "SearchName" +msgstr "Cerca nom" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 +#. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) +#: rc.cpp:212 +msgid "GetDepends" +msgstr "Obtén dependències" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 +#. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) +#: rc.cpp:215 +msgid "WhatProvides" +msgstr "El què proporciona" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 +#. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) +#: rc.cpp:218 +msgid "SearchDetails" +msgstr "Cerca detalls" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 +#. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) +#: rc.cpp:221 +msgid "GetRequires" +msgstr "Obtén requeriments" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 +#. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) +#: rc.cpp:224 +msgid "GetPackages" +msgstr "Obtén paquets" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 +#. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) +#: rc.cpp:227 +msgid "SearchGroup" +msgstr "Cerca grup" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 +#. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) +#: rc.cpp:230 +msgid "GetUpdateDetail" +msgstr "Obtén detalls de l'actualització" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 +#. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) +#: rc.cpp:233 +msgid "SearchFile" +msgstr "Cerca fitxer" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 +#. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) +#: rc.cpp:236 +msgid "GetDescription" +msgstr "Obtén descripció" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 +#. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) +#: rc.cpp:242 +msgid "GetFiles" +msgstr "Obtén fitxers" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 +#. i18n: ectx: property (text), widget (QCheckBox, resolveCB) +#: rc.cpp:245 +msgid "Resolve" +msgstr "Resol" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 +#. i18n: ectx: property (text), widget (QCheckBox, installFileCB) +#: rc.cpp:248 +msgid "InstallFIle" +msgstr "Instal·la fitxer" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) +#: rc.cpp:251 +msgid "SimulateInstallFiles" +msgstr "Simula l'instal·lació de fitxer" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) +#: rc.cpp:254 +msgid "SimulateInstallPackages" +msgstr "Simula l'instal·lació de paquets" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 +#. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) +#: rc.cpp:257 +msgid "SimulateRemovePackages" +msgstr "Simula l'eliminació de paquets" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 +#. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) +#: rc.cpp:260 +msgid "SimulateUpdatePackages" +msgstr "Simula l'actualització de paquets" + +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Aconsegueix les transaccions antigues" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Aquest ítem no està implementat pel vostre dorsal, o no és un fitxer." +#~ msgstr[1] "" +#~ "Aquests ítems no estan implementats pel vostre dorsal o no són fitxers" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Cal un paquet addicional:" +#~ msgstr[1] "Calen paquets addicionals:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Voleu cercar i instal·lar ara aquest paquet?" +#~ msgstr[1] "Voleu cercar i instal·lar ara aquests paquets?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
            %1
            Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Cal un programa addicional per obrir aquest tipus de fitxer:
            %1
            Voleu cercar ara algun programa que pugui obrir aquest tipus de fitxer?" + +#~ msgid "All packages" +#~ msgstr "Tots els paquets" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "No teniu els privilegis necessaris per dur a terme aquesta acció." + +#~ msgid "Package Name" +#~ msgstr "Nom del paquet" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Opcions del KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Icona intel·ligent de la safata del sistema" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Comunica quan tasques llargues s'hagin acabat" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Transacció" + +#~ msgid "A library to do foo" +#~ msgstr "Una biblioteca per fer foo" + +#~ msgid "The following packages will also be installed as dependencies" +#~ msgstr "També s'instal·laran els paquets següents com a dependències" + +#~ msgid "The following packages will also be removed for dependencies" +#~ msgstr "També s'eliminaran els paquets següents per les dependències" + +#~ msgid "Confirm" +#~ msgstr "Confirma" + +#~ msgid "The following packages also have to be removed/installed:" +#~ msgstr "Els paquets següents també han de ser eliminats/instal·lats:" + +#~ msgid "Failed to refresh package lists" +#~ msgstr "No s'ha pogut recollir la llista de paquets" + +#, fuzzy +#~| msgctxt "The transaction state" +#~| msgid "Installing packages" +#~ msgid "Installing updates." +#~ msgstr "S'estan instal·lant paquets" + +#~ msgid "Apply all available updates" +#~ msgstr "Aplica totes les actualitzacions disponibles" + +#, fuzzy +#~| msgctxt "Machine user who issued the transaction" +#~| msgid "Username" +#~ msgid "name" +#~ msgstr "Nom d'usuari" + +#, fuzzy +#~| msgctxt "Filter for free packages" +#~| msgid "Free" +#~ msgid "Free" +#~ msgstr "Lliure" + +#~ msgid "KPackageKit Update" +#~ msgstr "Actualització del KPackageKit" + +#~ msgid "A system restart is required" +#~ msgstr "Cal reiniciar el sistema" + +#~ msgid "An application restart is required after this update" +#~ msgstr "Cal reiniciar una aplicació després d'aquesta actualització" + +#~ msgid "A system restart is required after this update" +#~ msgstr "Cal reiniciar el sistema després d'aquesta actualització" + +#, fuzzy +#~| msgid "You have %1" +#~ msgid "You have a message" +#~ msgid_plural "You have messages" +#~ msgstr[0] "Teniu %1" +#~ msgstr[1] "Teniu %1" + +#~ msgid "KPackageKit user interface" +#~ msgstr "Interfície d'usuari del KPackageKit" + +#~ msgid "Perform an automatic system update according to system settings." +#~ msgstr "" +#~ "Realitza una actualització automàtica del sistema d'acord als " +#~ "arranjaments del sistema." + +#~ msgid "(C) 2008 Daniel Nicoletti" +#~ msgstr "(C) 2008 Daniel Nicoletti" + +#~ msgctxt "The role of the transaction, in present tense" +#~ msgid "Applying service pack" +#~ msgstr "S'està aplicant el paquet de serveis" + +#~ msgctxt "The role of the transaction, in past tense" +#~ msgid "Applied service pack" +#~ msgstr "S'ha aplicat el paquet de serveis" + +#~ msgid "Error KPackageKit" +#~ msgstr "Error al KPackageKit" + +#~ msgid "Downloading" +#~ msgstr "S'està descarregant" + +#~ msgid "Cleaning Up" +#~ msgstr "S'està netejant" + +#~ msgid "Obsoleting" +#~ msgstr "S'està deixant obsolet" + +#~ msgid "Downloading software changelogs" +#~ msgstr "S'estan descarregant els registres de canvis dels programes" diff -Nru kpackagekit-0.5.4/po/CMakeLists.txt kpackagekit-0.6.0/po/CMakeLists.txt --- kpackagekit-0.5.4/po/CMakeLists.txt 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/CMakeLists.txt 2010-01-30 09:05:21.000000000 +0000 @@ -1,10 +1,12 @@ add_subdirectory( bg ) add_subdirectory( ca ) +add_subdirectory( ca@valencia ) add_subdirectory( cs ) add_subdirectory( da ) add_subdirectory( de ) add_subdirectory( el ) add_subdirectory( en_GB ) +add_subdirectory( eo ) add_subdirectory( es ) add_subdirectory( et ) add_subdirectory( fr ) @@ -20,6 +22,7 @@ add_subdirectory( pt ) add_subdirectory( pt_BR ) add_subdirectory( ro ) +add_subdirectory( ru ) add_subdirectory( sk ) add_subdirectory( sv ) add_subdirectory( tr ) diff -Nru kpackagekit-0.5.4/po/cs/kpackagekit.po kpackagekit-0.6.0/po/cs/kpackagekit.po --- kpackagekit-0.5.4/po/cs/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/cs/kpackagekit.po 2010-01-30 08:59:56.000000000 +0000 @@ -1,43 +1,20 @@ -# translation of kpackagekit.po to Český -# Copyright (C) 2009 This_file_is_part_of_KDE -# This file is distributed under the same license as the kpackagekit package. +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. # -# Vit Pelcak, 2008. -# Vit Pelcak , 2008. -# Lukáš Tinkl , 2009. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-07-02 11:56+0200\n" -"PO-Revision-Date: 2009-07-03 15:19+0200\n" -"Last-Translator: Lukas Tinkl \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-11-20 16:42+0100\n" +"Last-Translator: Vít Pelčák \n" +"Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Emacs 22.3.1, po-mode 2.01+0.4\n" - -#: Updater/KpkUpdate.cpp:118 Updater/KpkUpdate.cpp:131 -#: Updater/KpkUpdate.cpp:146 libkpackagekit/KpkReviewChanges.cpp:217 -#: libkpackagekit/KpkReviewChanges.cpp:255 -#: SmartIcon/KpkTransactionTrayIcon.cpp:118 Settings/KpkSettings.cpp:163 -#: KPackageKit/KpkInstallFiles.cpp:117 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Nemáte dostatečná oprávnění k provedení této akce." - -#: Updater/KpkUpdate.cpp:119 -msgid "Failed to update system" -msgstr "Nepovedlo se aktualizovat systém" - -#: Updater/KpkUpdate.cpp:132 -msgid "Failed to update package lists" -msgstr "Nepovedlo se aktualizovat seznamy balíčků" - -#: Updater/KpkUpdate.cpp:147 SmartIcon/KpkTransactionTrayIcon.cpp:119 -msgid "Failed to refresh package lists" -msgstr "Nepovedlo se obnovit seznam balíčků" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -46,15 +23,15 @@ #: Updater/KpkSimpleTransactionModel.cpp:47 #: libkpackagekit/KpkPackageModel.cpp:144 msgid "Action" -msgstr "Akce" +msgstr "Činnost" #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:128 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:277 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detaily" @@ -80,7 +57,7 @@ msgid "(C) 2008-2009 Daniel Nicoletti" msgstr "(C) 2008-2009 Daniel Nicoletti" -#: Updater/KpkDistroUpgrade.cpp:45 SmartIcon/KpkDistroUpgrade.cpp:61 +#: Updater/KpkDistroUpgrade.cpp:45 SmartIcon/KpkDistroUpgrade.cpp:62 msgid "Distribution upgrade available" msgstr "Dostupná aktualizace distribuce" @@ -111,128 +88,124 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Aktualizace distribuce dokončena." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:113 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Proces aktualizace distribuce skončil s kódem %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:130 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Proces aktualizace distribuce se nezdařilo spustit." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:133 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" "Proces aktualizace distribuce zhavaroval chvíli poté, co byl úspěšně spuštěn." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:136 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Proces aktualizace distribuce selhala s neznámou chybu." -#: Updater/KpkUpdateDetails.cpp:56 +#: Updater/KpkUpdateDetails.cpp:61 msgid "Type" msgstr "Typ" -#: Updater/KpkUpdateDetails.cpp:62 +#: Updater/KpkUpdateDetails.cpp:67 msgctxt "State of the upgrade (ie testing, unstable..)" msgid "State" msgstr "Stav" -#: Updater/KpkUpdateDetails.cpp:69 +#: Updater/KpkUpdateDetails.cpp:74 msgid "Issued" msgstr "Vydáno" -#: Updater/KpkUpdateDetails.cpp:76 +#: Updater/KpkUpdateDetails.cpp:81 msgid "Updated" msgstr "Aktualizováno" -#: Updater/KpkUpdateDetails.cpp:82 +#: Updater/KpkUpdateDetails.cpp:87 msgid "New version" msgstr "Nová verze" -#: Updater/KpkUpdateDetails.cpp:90 +#: Updater/KpkUpdateDetails.cpp:95 msgid "Updates" msgstr "Aktualizuje" -#: Updater/KpkUpdateDetails.cpp:99 +#: Updater/KpkUpdateDetails.cpp:104 msgid "Obsoletes" msgstr "Zastarává" -#: Updater/KpkUpdateDetails.cpp:105 +#: Updater/KpkUpdateDetails.cpp:110 msgid "Repository" msgstr "Úložiště" #. i18n: file: AddRm/KpkPackageDetails.ui:50 #. i18n: ectx: property (text), widget (QToolButton, descriptionTB) -#: Updater/KpkUpdateDetails.cpp:111 rc.cpp:26 +#: Updater/KpkUpdateDetails.cpp:116 rc.cpp:26 msgid "Description" msgstr "Popis" -#: Updater/KpkUpdateDetails.cpp:118 +#: Updater/KpkUpdateDetails.cpp:123 msgid "Changes" msgstr "Změny" -#: Updater/KpkUpdateDetails.cpp:126 +#: Updater/KpkUpdateDetails.cpp:131 msgid "Vendor" msgstr "Dodavatel" -#: Updater/KpkUpdateDetails.cpp:132 +#: Updater/KpkUpdateDetails.cpp:137 msgid "Bugzilla" msgstr "Bugzilla" -#: Updater/KpkUpdateDetails.cpp:138 +#: Updater/KpkUpdateDetails.cpp:143 msgid "CVE" msgstr "CVE" -#: Updater/KpkUpdateDetails.cpp:144 +#: Updater/KpkUpdateDetails.cpp:149 msgid "Notice" msgstr "Upozornění" -#: Updater/KpkUpdateDetails.cpp:180 +#: Updater/KpkUpdateDetails.cpp:185 msgid "No update description was found." msgstr "Popis aktualizace nebyl nalezen." -#: Updater/KpkHistory.cpp:44 +#: Updater/KpkHistory.cpp:47 msgid "Rollback" msgstr "Vrátit zpět" -#: Updater/KpkHistory.cpp:49 +#: Updater/KpkHistory.cpp:52 msgid "Refresh transactions list" msgstr "Obnovit seznam transakcí" -#: Updater/KpkHistory.cpp:92 +#: Updater/KpkHistory.cpp:100 #, kde-format msgid "Time since last cache refresh: %1" msgstr "Čas od posledního obnovení cache: %1" -#: AddRm/KpkPackageDetails.cpp:118 -msgid "Package Name" -msgstr "Název balíčku" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Domovská stránka" -#: AddRm/KpkPackageDetails.cpp:120 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licence" -#: AddRm/KpkPackageDetails.cpp:124 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Skupina" -#: AddRm/KpkPackageDetails.cpp:132 -msgid "Home Page" -msgstr "Domovská stránka" - -#: AddRm/KpkPackageDetails.cpp:136 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Velikost" -#: AddRm/KpkPackageDetails.cpp:184 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Nebyly nalezeny žádné soubory." @@ -244,19 +217,19 @@ msgid "KDE interface for managing software" msgstr "KDE rozhraní pro správu softwaru" -#: AddRm/KpkAddRm.cpp:73 AddRm/KpkAddRm.cpp:217 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Najít" -#: AddRm/KpkAddRm.cpp:120 -msgid "All packages" -msgstr "Všechny balíčky" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:123 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Seznam změn" -#: AddRm/KpkAddRm.cpp:132 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" @@ -264,236 +237,241 @@ msgstr[1] "Skupiny:" msgstr[2] "Skupiny:" -#: AddRm/KpkAddRm.cpp:194 AddRm/KpkAddRm.cpp:195 AddRm/KpkAddRm.cpp:196 -#: AddRm/KpkAddRm.cpp:197 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "Z&rušit" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:204 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Najít podle &názvu:" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:205 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Na&jít podle názvu souboru:" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:206 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Najít po&dle popisu:" -#: AddRm/KpkAddRm.cpp:408 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Prohlédnout změny" -#: AddRm/KpkAddRm.cpp:445 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Kolekce" -#: AddRm/KpkAddRm.cpp:450 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Pouze kolekce" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Vyřadit kolekce" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:466 rc.cpp:224 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Nainstalované" -#: AddRm/KpkAddRm.cpp:472 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Pouze nainstalované" -#: AddRm/KpkAddRm.cpp:481 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Pouze dostupné" -#: AddRm/KpkAddRm.cpp:489 AddRm/KpkAddRm.cpp:521 AddRm/KpkAddRm.cpp:553 -#: AddRm/KpkAddRm.cpp:585 AddRm/KpkAddRm.cpp:617 AddRm/KpkAddRm.cpp:649 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Žádný filtr" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:498 rc.cpp:227 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Vývoj" -#: AddRm/KpkAddRm.cpp:504 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Pouze vývojové" -#: AddRm/KpkAddRm.cpp:513 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Pouze soubory pro koncové uživatele" -#: AddRm/KpkAddRm.cpp:530 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafické" -#: AddRm/KpkAddRm.cpp:536 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Pouze grafické" -#: AddRm/KpkAddRm.cpp:545 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Pouze text" -#: AddRm/KpkAddRm.cpp:562 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Svobodné" -#: AddRm/KpkAddRm.cpp:568 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Pouze svobodný software" -#: AddRm/KpkAddRm.cpp:577 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Pouze nesvobodný software" -#: AddRm/KpkAddRm.cpp:594 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architektury" -#: AddRm/KpkAddRm.cpp:600 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Pouze nativní architektury" -#: AddRm/KpkAddRm.cpp:609 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Pouze nenatvní architektury" -#: AddRm/KpkAddRm.cpp:626 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Zdroj" -#: AddRm/KpkAddRm.cpp:632 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Pouze zdrojové soubory" -#: AddRm/KpkAddRm.cpp:641 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Pouze ne-zdrojové kódy" -#: AddRm/KpkAddRm.cpp:658 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Skrýt podbalíčky" -#: AddRm/KpkAddRm.cpp:660 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Zobrazit pouze jeden balíček, ne podbalíčky" -#: AddRm/KpkAddRm.cpp:668 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Pouze nejnovější balíčky" -#: AddRm/KpkAddRm.cpp:670 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Zobrazit pouze nejnovější dostupný balíček" -#: AddRm/KpkAddRm.cpp:679 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Zobrazit ve skupinách" -#: AddRm/KpkAddRm.cpp:682 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Zobrazit balíčky ve skupinách podle stavu" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Následující balíček bude nainstalován:" msgstr[1] "Následující balíčky budou nainstalovány:" msgstr[2] "Následující balíčky budou nainstalovány:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instalovat nyní" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Následující balíček bude odebrán:" msgstr[1] "Následující balíčky budou odebrány:" msgstr[2] "Následující balíčky budou odebrány:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Ostranit nyní" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Následující balíček bude odebrán a nainstalován:" msgstr[1] "Následující balíčky budou odebrány a nainstalovány:" msgstr[2] "Následující balíčky budou odebrány a nainstalovány:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Použít nyní" -#: libkpackagekit/KpkReviewChanges.cpp:152 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to remove package" +msgid "Failed to simulate package removal" +msgstr "Npovedlo se odstranit balíček" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Bohužel Váš backend nepodporuje odstranění balíčků." -#: libkpackagekit/KpkReviewChanges.cpp:152 -#: libkpackagekit/KpkReviewChanges.cpp:176 KPackageKit/KpkInstallFiles.cpp:149 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Chyba KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:176 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to simulate package install" +msgstr "Instalace balíčku selhala" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Bohužel, Váš backend nepodporuje instalaci balíčků." -#: libkpackagekit/KpkReviewChanges.cpp:189 -msgid "The following packages will also be removed for dependencies" -msgstr "Následující balíčky budou rovněž odebrány jako závislosti" +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 +msgid "Failed to install package" +msgstr "Instalace balíčku selhala" -#: libkpackagekit/KpkReviewChanges.cpp:218 +#: libkpackagekit/KpkReviewChanges.cpp:313 msgid "Failed to remove package" msgstr "Npovedlo se odstranit balíček" -#: libkpackagekit/KpkReviewChanges.cpp:228 -msgid "The following packages will also be installed as dependencies" -msgstr "Následující balíčky budou rovněž nainstalovány jako závislosti" - -#: libkpackagekit/KpkReviewChanges.cpp:256 -#: KPackageKit/KpkInstallProvideFile.cpp:100 -msgid "Failed to install package" -msgstr "Instalace balíčku selhala" - -#: libkpackagekit/KpkTransaction.cpp:64 +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Skrýt" -#: libkpackagekit/KpkTransaction.cpp:65 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Umožní skrýt okno, ale nepřeruší běh úlohy" -#: libkpackagekit/KpkTransaction.cpp:286 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" -"
            Installing unsigned packages can compromise your system, as it is " -"impossible to verify if the software came from a trusted source. Are you " -"sure you want to continue installation?" +"You are about to install unsigned packages can compromise your system, as it " +"is impossible to verify if the software came from a trusted source.\n" +" Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:289 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Instaluje se nepodepsaný software" -#: libkpackagekit/KpkTransaction.cpp:363 libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Je vyžadována změna média" @@ -503,6 +481,7 @@ msgstr "Zbývá %1" #: libkpackagekit/KpkPackageModel.cpp:142 +#: libkpackagekit/KpkSimulateModel.cpp:122 msgid "Package" msgstr "Balíček" @@ -512,7 +491,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:101 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Je vyžadováno licenční ujednání" @@ -521,716 +500,917 @@ msgid "License required for %1 by %2" msgstr "Vyžadována licence pro %1 balíčkem %2" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:379 +#: libkpackagekit/KpkSimulateModel.cpp:124 +msgid "Version" +msgstr "Verze" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:209 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Zrušit" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Hledání za %1." -#: libkpackagekit/KpkRequirements.cpp:30 -msgid "Confirm" -msgstr "Potvrdit" +#: libkpackagekit/KpkRequirements.cpp:219 +msgid "Additional changes" +msgstr "Dodatečné změny" + +#: libkpackagekit/KpkRequirements.cpp:221 +msgid "Continue" +msgstr "Pokračovat" + +#: libkpackagekit/KpkRequirements.cpp:252 +#, fuzzy, kde-format +#| msgid "Single package remover" +msgid "1 package to remove" +msgid_plural "%1 packages to remove" +msgstr[0] "Odstranění jednoho balíčku" +msgstr[1] "Odstranění jednoho balíčku" +msgstr[2] "Odstranění jednoho balíčku" + +#: libkpackagekit/KpkRequirements.cpp:261 +#, kde-format +msgid "1 package to downgrade" +msgid_plural "%1 packages to downgrade" +msgstr[0] "1 balíček k snížení verze" +msgstr[1] "%1 balíčky k snížení verze" +msgstr[2] "%1 balíčků k snížení verze" + +#: libkpackagekit/KpkRequirements.cpp:272 +#, kde-format +msgid "1 package to reinstall" +msgid_plural "%1 packages to reinstall" +msgstr[0] "1 balíček k reinstalaci" +msgstr[1] "%1 balíčky k reinstalaci" +msgstr[2] "%1 balíčků k reinstalaci" + +#: libkpackagekit/KpkRequirements.cpp:283 +#, kde-format +msgid "1 package to install" +msgid_plural "%1 packages to install" +msgstr[0] "1 balíček k instalaci" +msgstr[1] "%1 balíčky k instalaci" +msgstr[2] "%1 balíčků k instalaci" + +#: libkpackagekit/KpkRequirements.cpp:294 +#, fuzzy, kde-format +#| msgid "No packages to update" +msgid "1 package to update" +msgid_plural "%1 packages to update" +msgstr[0] "Žádný balíček k aktualizaci" +msgstr[1] "Žádný balíček k aktualizaci" +msgstr[2] "Žádný balíček k aktualizaci" #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:80 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Je vyžadován podpis softwaru" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Neznámý stav" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Čeká se na start služby" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Čeká se na další úlohy" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Běžící úloha" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Dotazování" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" -msgstr "Získávají se informace" +msgstr "Získávám informace" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Odstraňují se balíčky" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Stahují se balíčky" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Instalují se balíčky" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Obnovuje se seznam softwaru" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Aktualizují se balíčky" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Čistí se balíčky" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Zastarávají se balíčky" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Řeší se závislosti" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Kontrolují se podpisy" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Navrací se" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Testují se změny" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Zasílají se změny" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" -msgstr "Požadují se data" +msgstr "Požaduji data" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Hotovo" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Ruší se" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Stahují se informace o repozitářích" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Stahuje se seznam balíčků" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Stahují se seznamy souborů" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Stahuje se seznam změn" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Stahují se skupiny" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Stahují se informace o aktualizacích" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Přebalují se soubory" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Nahrává se cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Prohledávají se nainstalované aplikace" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generují se seznamy balíčků" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Čekám na zámek od správce balíčků" -#: libkpackagekit/KpkStrings.cpp:103 +#: libkpackagekit/KpkStrings.cpp:128 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "waiting for user to type in a password" +msgid "Waiting for authentication" +msgstr "Čeká se na další úlohy" + +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" +msgid "Updating the list of running applications" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" +msgid "Checking for applications currently in use" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" +msgid "Checking for libraries currently in use" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Kopíruji soubory" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Staženo" -#: libkpackagekit/KpkStrings.cpp:105 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Aktualizováno" -#: libkpackagekit/KpkStrings.cpp:107 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Nainstalováno" -#: libkpackagekit/KpkStrings.cpp:109 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Ostraněno" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Vyčištěno" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Zastaralé" -#: libkpackagekit/KpkStrings.cpp:124 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Neznámý typ role" -#: libkpackagekit/KpkStrings.cpp:126 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Zjišťují se závislosti" -#: libkpackagekit/KpkStrings.cpp:128 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Získávají se podrobnosti aktualizace" -#: libkpackagekit/KpkStrings.cpp:130 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Získávají se podrobné informace" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Získávají se požadavky" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Získávají se aktualizace" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Hledají se podrobnosti" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Hledá se soubor" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Hledají se skupiny" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Hledá se název balíčku" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Ostraňuje se" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Instaluje se" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Instaluje se soubor" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Obnovuje se cache balíčků" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Aktualizují se balíčky" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Aktualizuje se systém" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Ruší se" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Navrací se" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Získává se seznam úložišť" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Povoluje se úložiště" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Nastavují se data o úložišti" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Řeší se" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Získává se seznam souborů" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Získává se co poskytuje" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Instaluje se podpis" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Získávají se seznamy balíčků" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Přijímá se EULA" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Stahují se balíčky" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Získávají se informace o aktualizaci distribuce" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Získávají se kategorie" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Získávají se staré transakce" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 +#, fuzzy +#| msgid "Failed to install file" +#| msgid_plural "Failed to install files" +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install of files" +msgstr "Instalace souboru selhala" + +#: libkpackagekit/KpkStrings.cpp:235 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install" +msgstr "Simuluje se instalace" + +#: libkpackagekit/KpkStrings.cpp:237 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the remove" +msgstr "Simuluje se odinstalace" + +#: libkpackagekit/KpkStrings.cpp:239 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the update" +msgstr "Simuluje se aktualizace" + +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Neznámý typ role" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Obdrženy závislosti" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Obdrženy podrobnosti aktualizace" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Obdrženy podrobné informace" -#: libkpackagekit/KpkStrings.cpp:202 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Obdrženy požadavky" -#: libkpackagekit/KpkStrings.cpp:204 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Obdrženy aktualizace" -#: libkpackagekit/KpkStrings.cpp:206 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Vyhledány podrobnosti o balíčku" -#: libkpackagekit/KpkStrings.cpp:208 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Vyhledán soubor" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Vyhledány skupiny" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Vyhledán název balíčku" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Odstraněny balíčky" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Nainstalovány balíčky" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Nainstalovány místní soubory" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Obnovena cache balíčků" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Aktualizovány balíčky" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Aktualizován systém" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Zrušeno" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Vráceno zpět" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Získán seznam úložišť" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Povoleno úložiště" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Nastavena data o úložišti" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Vyřešeno" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Získán seznam souborů" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Získáno co poskytuje" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Nainstalován podpis" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Získán seznamy balíčků" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Přijmuta EULA" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Staženy balíčky" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Získány informace o aktualizaci distribuce" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Získány kategorie" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Získány staré transakce" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:311 +#, fuzzy +#| msgid "Failed to install file" +#| msgid_plural "Failed to install files" +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install of files" +msgstr "Instalace souboru selhala" + +#: libkpackagekit/KpkStrings.cpp:313 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install" +msgstr "Simulovala se instalace" + +#: libkpackagekit/KpkStrings.cpp:315 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the remove" +msgstr "Simulovala se odinstalace" + +#: libkpackagekit/KpkStrings.cpp:317 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the update" +msgstr "Simulovala se aktualizace" + +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Není dostupné internetové připojení" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Není dostupná cache balíčků" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Nedostatek paměti" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Npovedlo se vytvořit vlákno" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Není tímto backendem podporováno" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Došlo k vnitřní chybě systému" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Balíček není nainstalován" -#: libkpackagekit/KpkStrings.cpp:280 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Balíček nebyl nalezen" -#: libkpackagekit/KpkStrings.cpp:282 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Balíček je již nainstalován" -#: libkpackagekit/KpkStrings.cpp:284 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" -msgstr "Stažení balíčku bylo neůspěšné" +msgstr "Stažení balíčku bylo neúspěšné" -#: libkpackagekit/KpkStrings.cpp:286 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Skupina nenalezena" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Seznam skupin byl neplatný" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Řešení závislostí bylo neúspěšné" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Filtr hledání byl neplatný" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Identifikátor balíčku je chybný" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Chyba přenosu" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Název úložiště nebyl nalezen" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Nelze odstranit chráněný systémový balíček" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Úloha byla zrušena" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Bylo vynuceno ukončení úlohy" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Čtení konfiguračního souboru selhalo" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Úloha nemůže být zrušena" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Zdrojové balíčky nemohly být nainstalovány" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Licenční ujednání selhalo" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokální konflikt souboru mezi balíčky" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Balíčky nejsou kompatibilní" -#: libkpackagekit/KpkStrings.cpp:318 -msgid "Problem connecting to a software source" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "Vyskytl se problém s připojením ke zdroji software" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Selhala inicializace" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Selhalo dokončení" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Nelze získat zámek" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" -msgstr "Žádný balík k aktualizaci" +msgstr "Žádný balíček k aktualizaci" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Nelze zapsat informaci o úložičtích" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokální instalace selhala" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Chybný GPG podpis" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Chybějící GPG podpis" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Nastavení úložišť je neplatné" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Neplatný balíček" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Instalace balíčku zablokována" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Balíček je vadný" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Všechny balíčky jsou již nainstalovány" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Zadaný soubor nebyl nalezen" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Je k dispozici více zrcadel" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Žádné informace a aktualizaci distribuce nejsou dostupné" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Balíček je nekompatibilní s tímto systémem." -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Na disku není žádné volné místo" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:421 +msgid "Authorization failed" +msgstr "Ověření selhalo" + +#: libkpackagekit/KpkStrings.cpp:423 +msgid "Update not found" +msgstr "Aktualizace nenalezena" + +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot install from untrusted origin" +msgstr "Balíček nebyl nalezen v žádném zdroji software." + +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot update from untrusted origin" +msgstr "Balíček nebyl nalezen v žádném zdroji software." + +#: libkpackagekit/KpkStrings.cpp:429 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got file list" +msgid "Cannot get the file list" +msgstr "Získán seznam souborů" + +#: libkpackagekit/KpkStrings.cpp:431 +#, fuzzy +#| msgid "An additional package is required:" +#| msgid_plural "Additional packages are required:" +msgid "Cannot get package requires" +msgstr "Je vyžadován dodatečný balíček:" + +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:435 +msgid "The download failed" +msgstr "Stažení bylo neúspěšné" + +#: libkpackagekit/KpkStrings.cpp:437 +#, fuzzy +#| msgid "Package file to install" +msgid "Package failed to configure" +msgstr "Soubor s balíčkem k instalaci" + +#: libkpackagekit/KpkStrings.cpp:439 +#, fuzzy +#| msgid "Package file to install" +msgid "Package failed to build" +msgstr "Soubor s balíčkem k instalaci" + +#: libkpackagekit/KpkStrings.cpp:441 +#, fuzzy +#| msgid "Package file to install" +msgid "Package failed to install" +msgstr "Soubor s balíčkem k instalaci" + +#: libkpackagekit/KpkStrings.cpp:443 +#, fuzzy +#| msgid "Package file to install" +msgid "Package failed to be removed" +msgstr "Soubor s balíčkem k instalaci" + +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Neznámá chyba" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1238,7 +1418,7 @@ "Není dostupné internetové připojení.\n" "Prosím zkontrolujte nastavení připojení a zkuste znovu" -#: libkpackagekit/KpkStrings.cpp:371 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1246,7 +1426,7 @@ "Je třeba obnovit seznam balíčků.\n" "O toto by se měl postarat automaticky backend." -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1255,19 +1435,19 @@ "Službě, která je zodpovědná za zpracování požadavků uživatele došla paměť.\n" "Prosím ukončete některé úlohy nebo restartujte svůj počítač." -#: libkpackagekit/KpkStrings.cpp:377 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Vlákno pro obsloužení uživatelova požadavku nemohlo být vytvořeno." -#: libkpackagekit/KpkStrings.cpp:379 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." msgstr "" -"Akce není tímto backendem podporována.\n" +"Činnost není tímto backendem podporována.\n" "Prosím nahlašte chybu, protože toto by se nemělo stát." -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1275,30 +1455,34 @@ "Vyskytnul se problém, který jsme nečekali.\n" "Prosím nahlašte chybu s popisem problému." -#: libkpackagekit/KpkStrings.cpp:385 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software source.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:388 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Balíček, jenž má být odebrán nebo aktualizován, již není nainstalován." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:477 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software source." +"software origin." msgstr "" "Balíček, jenž má být změněn, nebyl nalezen ani ve Vašem systému ani ve " "zdroji 
software." -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Balíček, jenž má být nainstalován, už nainstalován je." -#: libkpackagekit/KpkStrings.cpp:394 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1306,7 +1490,7 @@ "Stažení balíčku se nezdařilo.\n" "Prosím zkontrolujte internetové přiojení." -#: libkpackagekit/KpkStrings.cpp:397 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1314,16 +1498,21 @@ "Typ skupiny nebyl nalezen.\n" "Prosím zkontrolujte seznam skupin a zkuste znovu." -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:487 +#, fuzzy +#| msgid "" +#| "The group list could not be loaded.\n" +#| "Refreshing your cache may help, although this is normally a software " +#| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software source " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Seznam skupin nemohl být načten.\n" "Obnovení cache může pomoci, ale toto je spíše problém zdroje software." -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1331,17 +1520,17 @@ "Závislost balíčku nebyla nalezena.\n" "Více informací je dostupné v detailním hlášení." -#: libkpackagekit/KpkStrings.cpp:407 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Filtr hledání nebyl správně formulován." -#: libkpackagekit/KpkStrings.cpp:409 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:412 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1349,23 +1538,27 @@ "Došlo k nespecifikované chybě úlohy.\n" "Více informací je dostupné v detailním hlášení." -#: libkpackagekit/KpkStrings.cpp:415 +#: libkpackagekit/KpkStrings.cpp:502 +#, fuzzy +#| msgid "" +#| "The remote software source name was not found.\n" +#| "You may need to enable an item in Software Sources." msgid "" -"The remote software source name was not found.\n" -"You may need to enable an item in Software Sources." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Jméno vzdáleného zdroje softwaru nebylo nalezeno.\n" "Nejspíš bude třeba tuto položku povolit ve Zdrojích softwaru." -#: libkpackagekit/KpkStrings.cpp:418 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Odebrání chráněného systémového balíčku není povoleno." -#: libkpackagekit/KpkStrings.cpp:420 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Úloha byla úspěšně zrušena a nebyly změněny žádné balíčky." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1373,17 +1566,17 @@ "Úloha byla úspěšně zrušena a nebyly změněny žádné balíčky.\n" "Backend se ale neukončil čistě." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:428 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Není bezpečné teď zrušit běh úlohy." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1391,7 +1584,7 @@ "Zdrojové balíčky takto normálně nejsou instalovány.\n" "Zkontrolujte příponu souboru, který se pokoušíte nainstalovat." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1399,31 +1592,44 @@ "Licenční ujednání nebylo odsouhlaseno.\n" "Pro použití tohoto software musíte s licencí souhlasit." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:523 +#, fuzzy +#| msgid "" +#| "Two packages provide the same file.\n" +#| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software sources." +"This is usually due to mixing packages for different software origins." msgstr "" "Dva balíčky poskytují stejný soubor.\n" "Toto obvykle nastává proto, že jsou míchány různé zdroje software." -#: libkpackagekit/KpkStrings.cpp:439 +#: libkpackagekit/KpkStrings.cpp:526 +#, fuzzy +#| msgid "" +#| "Multiple packages exist that are not compatible with each other.\n" +#| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software sources." +"This is usually due to mixing packages from different software origins." msgstr "" "Existuje více balíčků, které nejsou vzájemně kompatibilní.\n" "Toto obvykle nastává proto, že jsou míchány různé zdroje software." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:529 +#, fuzzy +#| msgid "" +#| "There was a (possibly temporary) problem connecting to a software " +#| "source.\n" +#| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software source.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Vyskytnul se (nejspíše dočasný) problém s připojením ke zdroji software.\n" "Prosím zkontrolujte detaily chyby pro podrobnější informace." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1431,7 +1637,7 @@ "Nepovedlo se spustit balíčkovací backend.\n" "Toto se stává pokud jsou spuštěni další správdi balíčků." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1439,7 +1645,7 @@ "Nepovedlo se ukončit běh backendu.\n" "Tato chyba může být klidně ignorována." -#: libkpackagekit/KpkStrings.cpp:451 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1447,15 +1653,15 @@ "Nepovedlo se získat exkluzivní zámek balíčkovacího backendu.\n" "Prosím ukončete ostatní balíčkovací nástroje." -#: libkpackagekit/KpkStrings.cpp:454 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Žádný z vybraných balíčků nemohl být aktualizován." -#: libkpackagekit/KpkStrings.cpp:456 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Nastavení úložiště nemohlo být změněno." -#: libkpackagekit/KpkStrings.cpp:458 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1463,11 +1669,11 @@ "Instalace lokálního souboru selhala.\n" "Více informací je dostupných v podrobném hlášení." -#: libkpackagekit/KpkStrings.cpp:461 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Podpis balíčku nemohl být ověřen." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1475,11 +1681,11 @@ "Podpis balíčku chybí atento balíček je nedůvěryhodný.\n" "Tento balíček nebyl při vyvtoření podepsán." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Nastavení úložišť je neplatné a nešlo přečíst." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1487,25 +1693,25 @@ "Balíček, který se pokoušíte nainstalovat je neplatný.\n" "Balíček mohl být vadný, nebo to není balíček." -#: libkpackagekit/KpkStrings.cpp:471 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" "Instalaci tohoto balíčku bylo zabráněno nastavením balíčkovacího systému." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Balíček, který byl stažen, je vadný a je třeba jej stáhnout znovu." -#: libkpackagekit/KpkStrings.cpp:475 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Všechny balíčky vybrané pro instalaci již v systému nainstalovány jsou." -#: libkpackagekit/KpkStrings.cpp:477 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1513,31 +1719,41 @@ "Zadaný soubor nemohl být v systému nalezen.\n" "Zkontrolujte jestli existuje a nebyl smazán." -#: libkpackagekit/KpkStrings.cpp:480 +#: libkpackagekit/KpkStrings.cpp:567 +#, fuzzy +#| msgid "" +#| "Required data could not be found on any of the configured software " +#| "sources.\n" +#| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software sources.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Vyžadovaná data nemohla být na žádném z nastavených zdrojů softwaru " "nalezena.\n" "Není žádné další zrcadlo, které by se dalo zkusit." -#: libkpackagekit/KpkStrings.cpp:483 +#: libkpackagekit/KpkStrings.cpp:570 +#, fuzzy +#| msgid "" +#| "Required upgrade data could not be found in any of the configured " +#| "software sources.\n" +#| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"sources.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Vyžadovaná data pro aktualizaci nemohla být na žádném z nastavených zdrojů " "softwaru nalezena.\n" "Seznam aktualizací distribuce bude nedostupný." -#: libkpackagekit/KpkStrings.cpp:486 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Balíček, jenž má být nainstalován, není kompatibilní s tímto systémem." -#: libkpackagekit/KpkStrings.cpp:488 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1545,11 +1761,115 @@ "Na disku není dostatek místa.\n" "Uvolněte prosím nejprve nějaké místo k provedení operace." -#: libkpackagekit/KpkStrings.cpp:491 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Je vyžadováno další médium pro dokončení transakce." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:580 +msgid "" +"You have failed to provide correct authentication.\n" +"Please check any passwords or account settings." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:583 +msgid "" +"The specified update could not be found.\n" +"It could have already been installed or no longer available on the remote " +"server." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:586 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The package could not be installed from untrusted origin." +msgstr "Balíček nebyl nalezen v žádném zdroji software." + +#: libkpackagekit/KpkStrings.cpp:588 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The package could not be updated from untrusted origin." +msgstr "Balíček nebyl nalezen v žádném zdroji software." + +#: libkpackagekit/KpkStrings.cpp:590 +#, fuzzy +#| msgid "The file could not be found in any packages" +#| msgid_plural "The files could not be found in any packages" +msgid "The file list is not available for this package." +msgstr "Zadaný soubor nebyl nalezen v žádném balíčku" + +#: libkpackagekit/KpkStrings.cpp:592 +msgid "The information about what requires this package could not be obtained." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:594 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The specified software origin could not be disabled." +msgstr "Zadaný soubor nebyl nalezen" + +#: libkpackagekit/KpkStrings.cpp:596 +#, fuzzy +#| msgid "" +#| "A package dependency could not be found.\n" +#| "More information is available in the detailed report." +msgid "" +"The download could not be done automatically and should be done manually.\n" +"More information is available in the detailed report." +msgstr "" +"Závislost balíčku nebyla nalezena.\n" +"Více informací je dostupné v detailním hlášení." + +#: libkpackagekit/KpkStrings.cpp:599 +#, fuzzy +#| msgid "" +#| "Installing the local file failed.\n" +#| "More information is available in the detailed report." +msgid "" +"One of the selected packages failed to configure correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Instalace lokálního souboru selhala.\n" +"Více informací je dostupných v podrobném hlášení." + +#: libkpackagekit/KpkStrings.cpp:602 +#, fuzzy +#| msgid "" +#| "Installing the local file failed.\n" +#| "More information is available in the detailed report." +msgid "" +"One of the selected packages failed to build correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Instalace lokálního souboru selhala.\n" +"Více informací je dostupných v podrobném hlášení." + +#: libkpackagekit/KpkStrings.cpp:605 +#, fuzzy +#| msgid "" +#| "Installing the local file failed.\n" +#| "More information is available in the detailed report." +msgid "" +"One of the selected packages failed to install correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Instalace lokálního souboru selhala.\n" +"Více informací je dostupných v podrobném hlášení." + +#: libkpackagekit/KpkStrings.cpp:608 +#, fuzzy +#| msgid "" +#| "Installing the local file failed.\n" +#| "More information is available in the detailed report." +msgid "" +"One of the selected packages failed to be removed correctly.\n" +"More information is available in the detailed report." +msgstr "" +"Instalace lokálního souboru selhala.\n" +"Více informací je dostupných v podrobném hlášení." + +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1557,232 +1877,232 @@ "Neznámá chyba, prosím nahlaste problém.\n" "Více informací je k nalezení v podrobném hlášení." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Zpřístupnění" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Příslušenství" -#: libkpackagekit/KpkStrings.cpp:508 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Výuka" -#: libkpackagekit/KpkStrings.cpp:510 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Hry" -#: libkpackagekit/KpkStrings.cpp:512 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafika" -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kancelář" -#: libkpackagekit/KpkStrings.cpp:518 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Jiné" -#: libkpackagekit/KpkStrings.cpp:520 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Vývoj" -#: libkpackagekit/KpkStrings.cpp:522 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimédia" -#: libkpackagekit/KpkStrings.cpp:524 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Systém" -#: libkpackagekit/KpkStrings.cpp:526 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME desktop" -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE desktop" -#: libkpackagekit/KpkStrings.cpp:530 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE desktop" -#: libkpackagekit/KpkStrings.cpp:532 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Jiné desktopy" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publikování" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servery" -#: libkpackagekit/KpkStrings.cpp:538 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Písma" -#: libkpackagekit/KpkStrings.cpp:540 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Nástroje správce" -#: libkpackagekit/KpkStrings.cpp:542 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Zastaralé" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Lokalizace" -#: libkpackagekit/KpkStrings.cpp:546 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualizace" -#: libkpackagekit/KpkStrings.cpp:548 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Bezpečnost" -#: libkpackagekit/KpkStrings.cpp:550 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Správa napájení" -#: libkpackagekit/KpkStrings.cpp:552 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Komunikace" -#: libkpackagekit/KpkStrings.cpp:554 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Síť" -#: libkpackagekit/KpkStrings.cpp:556 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapy" -#: libkpackagekit/KpkStrings.cpp:558 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Zdroje software" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Věda" -#: libkpackagekit/KpkStrings.cpp:562 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentace" -#: libkpackagekit/KpkStrings.cpp:564 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronika" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Kolekce balíčků" -#: libkpackagekit/KpkStrings.cpp:568 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Dodavatel" -#: libkpackagekit/KpkStrings.cpp:570 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Nejnovější balíčky" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Neznámá skupina" -#: libkpackagekit/KpkStrings.cpp:582 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Jednoduchá aktualizace" -#: libkpackagekit/KpkStrings.cpp:584 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normální aktualizace" -#: libkpackagekit/KpkStrings.cpp:586 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Důležitá aktualizace" -#: libkpackagekit/KpkStrings.cpp:588 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Bezpečnostní aktualizace" -#: libkpackagekit/KpkStrings.cpp:590 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Opravná aktualizace" -#: libkpackagekit/KpkStrings.cpp:592 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Vylepšující aktualizace" -#: libkpackagekit/KpkStrings.cpp:594 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blokovaná aktualizace" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Nainstalované" -#: libkpackagekit/KpkStrings.cpp:600 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Dostupné" -#: libkpackagekit/KpkStrings.cpp:602 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Neznámá aktualizace" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" @@ -1790,7 +2110,7 @@ msgstr[1] "%1 jednoduché aktualizace" msgstr[2] "%1 jednoduchých aktualizací" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -1799,7 +2119,7 @@ msgstr[1] "%1 aktualizace" msgstr[2] "%1 aktualizací" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" @@ -1807,7 +2127,7 @@ msgstr[1] "%1 důležité aktualizace" msgstr[2] "%1 důležitých aktualizací" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" @@ -1815,7 +2135,7 @@ msgstr[1] "%1 bezpečnostní aktualizace" msgstr[2] "%1 bezpečnostních aktualizací" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" @@ -1823,7 +2143,7 @@ msgstr[1] "%1 opravné aktualizace" msgstr[2] "%1 opravných aktualizací" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" @@ -1831,7 +2151,7 @@ msgstr[1] "%1 vylepšující aktualizace" msgstr[2] "%1 vylepšujících aktualizací" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" @@ -1839,7 +2159,7 @@ msgstr[1] "%1 blokované aktualizace" msgstr[2] "%1 blokovaných aktualizací" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" @@ -1847,7 +2167,7 @@ msgstr[1] "%1 nainstalované balíčky" msgstr[2] "%1 nainstalovaných balíčků" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" @@ -1855,7 +2175,7 @@ msgstr[1] "%1 dostupné balíčky" msgstr[2] "%1 dostupných balíčků" -#: libkpackagekit/KpkStrings.cpp:632 libkpackagekit/KpkStrings.cpp:662 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" @@ -1863,7 +2183,7 @@ msgstr[1] "%1 neznámé aktualizace" msgstr[2] "%1 neznámých aktualizací" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" @@ -1871,7 +2191,7 @@ msgstr[1] "Vybrány %1 jednoduché aktualizace" msgstr[2] "Vybráno %1 jednoduchých aktualizací" -#: libkpackagekit/KpkStrings.cpp:644 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -1880,7 +2200,7 @@ msgstr[1] "Vybrány %1 aktualizace" msgstr[2] "Vybráno %1 aktualizací" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" @@ -1888,7 +2208,7 @@ msgstr[1] "Vybrány %1 důležité aktualizace" msgstr[2] "Vybráno %1 důležitých aktualizací" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" @@ -1896,7 +2216,7 @@ msgstr[1] "Vybrány %1 bezpečnostní aktualizace" msgstr[2] "Vybráno %1 bezpečnostních aktualizací" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" @@ -1904,7 +2224,7 @@ msgstr[1] "Vybrány %1 opravné aktualizace" msgstr[2] "Vybráno %1 opravných aktualizací" -#: libkpackagekit/KpkStrings.cpp:653 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" @@ -1912,7 +2232,7 @@ msgstr[1] "Vybrány %1 vylepšující aktualizace" msgstr[2] "Vybráno %1 vylepšujících aktualizací" -#: libkpackagekit/KpkStrings.cpp:655 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" @@ -1920,7 +2240,7 @@ msgstr[1] "%1 nainstalované balíčky vybrány k odstranění" msgstr[2] "%1 nainstalovaných balíčků vybráno k odstranění" -#: libkpackagekit/KpkStrings.cpp:658 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" @@ -1928,7 +2248,7 @@ msgstr[1] "%1 dostupné balíčky vybrány k instalaci" msgstr[2] "%1 dostupných balíčků vybráno k instalaci" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" @@ -1936,7 +2256,7 @@ msgstr[1] "%1 jednoduché aktualizace, vybráno: %2" msgstr[2] "%1 jednoduchých aktualizací, vybráno: %2" -#: libkpackagekit/KpkStrings.cpp:672 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -1945,7 +2265,7 @@ msgstr[1] "%1 aktualizace, vybráno: %2" msgstr[2] "%1 aktualizací, vybráno: %2" -#: libkpackagekit/KpkStrings.cpp:674 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" @@ -1953,7 +2273,7 @@ msgstr[1] "%1 důležité aktualizace, vybráno: %2" msgstr[2] "%1 důležitých aktualizací, vybráno: %2" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" @@ -1961,7 +2281,7 @@ msgstr[1] "%1 bezpečnostní aktualizace, vybráno: %2" msgstr[2] "%1 bezpečnostních aktualizací, vybráno: %2" -#: libkpackagekit/KpkStrings.cpp:678 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" @@ -1969,7 +2289,7 @@ msgstr[1] "%1 opravné aktualizace, vybráno: %2" msgstr[2] "%1 opravných aktualizací, vybráno: %2" -#: libkpackagekit/KpkStrings.cpp:680 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" @@ -1977,7 +2297,7 @@ msgstr[1] "%1 vylepšující aktualizace, vybráno: %2" msgstr[2] "%1 vylepšujících aktualizací, vybráno: %2" -#: libkpackagekit/KpkStrings.cpp:683 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" @@ -1985,7 +2305,7 @@ msgstr[1] "%1 blokované aktualizace" msgstr[2] "%1 blokovaných aktualizací" -#: libkpackagekit/KpkStrings.cpp:685 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" @@ -1993,7 +2313,7 @@ msgstr[1] "%1 nainstalované balíčky, vybráno k odstranění: %2" msgstr[2] "%1 nainstalovaných balíčků, vybráno k odstranění: %2" -#: libkpackagekit/KpkStrings.cpp:687 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" @@ -2001,7 +2321,7 @@ msgstr[1] "%1 dostupné balíčky, vybráno k instalaci: %2" msgstr[2] "%1 dostupných balíčků, vybráno k instalaci: %2" -#: libkpackagekit/KpkStrings.cpp:690 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" @@ -2009,128 +2329,296 @@ msgstr[1] "%1 neznámé aktualizace" msgstr[2] "%1 neznámých aktualizací" -#: libkpackagekit/KpkStrings.cpp:699 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Pro tuto aktualizaci není nutný restart" -#: libkpackagekit/KpkStrings.cpp:701 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Po této aktualizace bude potřeba restartovat tuto aplikaci" -#: libkpackagekit/KpkStrings.cpp:703 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Po této aktualizace bude potřeba Vaše odhlášení a opětovné přihlášení" -#: libkpackagekit/KpkStrings.cpp:705 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Bude vyžadován restart systému" -#: libkpackagekit/KpkStrings.cpp:717 +#: libkpackagekit/KpkStrings.cpp:825 +#, fuzzy +#| msgid "You will be required to log out and back in" +msgid "You will be required to log out and back in due to a security update." +msgstr "Po této aktualizace bude potřeba Vaše odhlášení a opětovné přihlášení" + +#: libkpackagekit/KpkStrings.cpp:827 +#, fuzzy +#| msgid "A restart will be required" +msgid "A restart will be required due to a security update." +msgstr "Bude vyžadován restart systému" + +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Není vyžadován restart" -#: libkpackagekit/KpkStrings.cpp:719 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Je vyžadován restart systému" -#: libkpackagekit/KpkStrings.cpp:721 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Je třeba se odhlásit a znovu přihlásit" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Je třeba restartovat aplikaci" -#: libkpackagekit/KpkStrings.cpp:735 +#: libkpackagekit/KpkStrings.cpp:848 +#, fuzzy +#| msgid "You need to log out and log back in" +msgid "You need to log out and log back in to remain secure." +msgstr "Je třeba se odhlásit a znovu přihlásit" + +#: libkpackagekit/KpkStrings.cpp:850 +#, fuzzy +#| msgid "A restart is required" +msgid "A restart is required to remain secure." +msgstr "Je vyžadován restart systému" + +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabilní" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Nestabilní" -#: libkpackagekit/KpkStrings.cpp:739 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testovací" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Prosím vložte CD označené '%1' a stiskněte Pokračovat." -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Prosím vložte DVD označené '%1' a stiskněte Pokračovat." -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Prosím vložte disk označený '%1' a stiskněte Pokračovat." -#: libkpackagekit/KpkStrings.cpp:757 libkpackagekit/KpkStrings.cpp:760 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Prosím vložte médium označené '%1' a stiskněte Pokračovat." -#: libkpackagekit/KpkStrings.cpp:767 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Zrcadlo je asi poškozené" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Spojení bylo odmítnuto" -#: libkpackagekit/KpkStrings.cpp:771 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parametr byl neplatný" -#: libkpackagekit/KpkStrings.cpp:773 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Priorita byla neplatná" -#: libkpackagekit/KpkStrings.cpp:775 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Varování backendu" -#: libkpackagekit/KpkStrings.cpp:777 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Varování démona" -#: libkpackagekit/KpkStrings.cpp:779 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Sestavuje se cache seznamu balíčků" -#: libkpackagekit/KpkStrings.cpp:781 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Byl nainstalován nedůvěryhodný balíček" -#: libkpackagekit/KpkStrings.cpp:783 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Existuje novější balíček" -#: libkpackagekit/KpkStrings.cpp:785 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Nelze najít balíček" -#: libkpackagekit/KpkStrings.cpp:787 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Konfigurační soubory byly změněny" -#: libkpackagekit/KpkStrings.cpp:789 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Balíček je již nainstalován" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: libkpackagekit/KpkStrings.cpp:920 +msgid "Automatic cleanup is being ignored" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:922 +msgid "Software source download failed" +msgstr "Stažení zdroje software bylo neúspěšné" + +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "Nemáte dostatečná oprávnění k provedení této činnosti." + +#: libkpackagekit/KpkStrings.cpp:937 +#, fuzzy +#| msgid "Could not remove a protected system package" +msgid "Could not get a transaction id from packagekitd." +msgstr "Nelze odstranit chráněný systémový balíček" + +#: libkpackagekit/KpkStrings.cpp:939 +msgid "Cannot connect to this transaction id." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:941 +msgid "This action is unknown." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:943 +#, fuzzy +#| msgid "The package signature could not be verified." +msgid "The packagekitd service could not be started." +msgstr "Podpis balíčku nemohl být ověřen." + +#: libkpackagekit/KpkStrings.cpp:945 +#, fuzzy +#| msgid "The priority was invalid" +msgid "The query is not valid." +msgstr "Priorita byla neplatná" + +#: libkpackagekit/KpkStrings.cpp:947 +msgid "The file is not valid." +msgstr "Soubor není platný." + +#: libkpackagekit/KpkStrings.cpp:949 +msgid "This function is not yet supported." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:951 +#, fuzzy +#| msgid "Could not find package" +msgid "Could not talk to packagekitd." +msgstr "Nelze najít balíček" + +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened." +msgstr "Neznámá chyba" + +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorovat" -#: SmartIcon/KpkUpdateIcon.cpp:173 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
            • %2
            Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
            • %2
            Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Program se pokouší nainstalovat soubor" +msgstr[1] "Program se pokouší nainstalovat soubory" +msgstr[2] "Program se pokouší nainstalovat soubory" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 chce nainstalovat soubor" +msgstr[1] "%1 chce nainstalovat soubory" +msgstr[2] "%1 chce nainstalovat soubory" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instalovat" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Selhalo zahájení transakce hledání souboru" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Balíček %1 již poskytuje tento soubor" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Instalace souboru selhala" +msgstr[1] "Instalace souborů selhala" +msgstr[2] "Instalace souborů selhala" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Následující balíček bude nainstalován" +msgstr[1] "Následující balíčky budou nainstalovány" +msgstr[2] "Následující balíčky budou nainstalovány" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Zadaný soubor nebyl nalezen v žádném balíčku" +msgstr[1] "Zadané soubory nebyly nalezeny v žádném balíčku" +msgstr[2] "Zadané soubory nebyly nalezeny v žádném balíčku" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Vyhledání balíčku selhalo" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Máte %1" -#: SmartIcon/KpkUpdateIcon.cpp:182 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
            And another update" msgid_plural "
            And %1 more updates" @@ -2138,45 +2626,147 @@ msgstr[1] "
            A další %1 aktualizace" msgstr[2] "
            A dalších %1 aktualizací" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:190 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Projít a aktualizovat" -#: SmartIcon/KpkUpdateIcon.cpp:191 SmartIcon/KpkTransactionTrayIcon.cpp:362 -#: SmartIcon/KpkTransactionTrayIcon.cpp:370 -msgid "Not now" -msgstr "Ne nyní" - -#: SmartIcon/KpkUpdateIcon.cpp:192 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Znovu se nedotazovat" -#: SmartIcon/KpkUpdateIcon.cpp:233 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Aktualizace jsou automaticky instalovány." -#: SmartIcon/KpkUpdateIcon.cpp:261 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Bezpečnostní aktualizace jsou automaticky instalovány." -#: SmartIcon/KpkUpdateIcon.cpp:291 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Aktualizace systému byla úspěšná." -#: SmartIcon/KpkUpdateIcon.cpp:300 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Aktualizace software selhala." -#: SmartIcon/KpkDistroUpgrade.cpp:67 +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Je vyžadován následující soubor:" +msgstr[1] "Jsou vyžadovány následující soubory:" +msgstr[2] "Jsou vyžadovány následující soubory:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Přejete si jej nyní vyhledat?" +msgstr[1] "Přejete si je nyní vyhledat?" +msgstr[2] "Přejete si je nyní vyhledat?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 chce nainstalovat soubor" +msgstr[1] "%1 chce nainstalovat soubory" +msgstr[2] "%1 chce nainstalovat soubory" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Spustit upgrade" -#: SmartIcon/KpkDistroUpgrade.cpp:110 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Aktualizace distribuce dokončena." +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Spuštění transakce pro vyřešení závislosti selhalo" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Získány staré transakce" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Neznámá chyba" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
            • %2
            Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
            • %2
            Do you want to search " +"for and install these packages now?" +msgstr[0] "Přejete si nyní vyhledat a nainstalovat tento balíček?" +msgstr[1] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" +msgstr[2] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Program se chystá nainstalovat balíček" +msgstr[1] "Program se chystá nainstalovat balíčky" +msgstr[2] "Program se chystá nainstalovat balíčky" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 se chystá nainstalovat balíček" +msgstr[1] "%1 se chystá nainstalovat balíčky" +msgstr[2] "%1 se chystá nainstalovat balíčky" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instalovat" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Balíček je již nainstalován" +msgstr[1] "Balíček je již nainstalován" +msgstr[2] "Balíček je již nainstalován" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Instalace balíčku selhala" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Balíček nebyl nalezen v žádném zdroji software." +msgstr[1] "Balíčky nebyly nalezeny v žádném zdroji software." +msgstr[2] "Balíčky nebyly nalezeny v žádném zdroji software." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Nelze najít %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2201,207 +2791,327 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt a další věci" -#: SmartIcon/KpkTransactionTrayIcon.cpp:53 -msgid "Transactions" -msgstr "Přenosy" +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
            %1
            Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Je vyžadován dodatečný program k otevření tohoto typu souboru:
            %1
            Přejete si nyní vyhledat program k jeho otevření?" +msgstr[1] "" +"Je vyžadován dodatečný program k otevření tohoto typu souboru:
            %1
            Přejete si nyní vyhledat program k jeho otevření?" +msgstr[2] "" +"Je vyžadován dodatečný program k otevření tohoto typu souboru:
            %1
            Přejete si nyní vyhledat program k jeho otevření?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:69 -msgid "Refresh package list" -msgstr "Obnovit seznam balíčků" +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Program se pokouší nainstalovat soubor" +msgstr[1] "Program se pokouší nainstalovat soubory" +msgstr[2] "Program se pokouší nainstalovat soubory" -#: SmartIcon/KpkTransactionTrayIcon.cpp:76 -msgid "Show messages" -msgstr "Zobrazit zprávy" +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 chce nainstalovat soubor" +msgstr[1] "%1 chce nainstalovat soubory" +msgstr[2] "%1 chce nainstalovat soubory" -#: SmartIcon/KpkTransactionTrayIcon.cpp:82 -msgid "Hide this icon" -msgstr "Skrýt tuto ikonu" +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Hledat" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Balíček: %1" -msgstr[1] "Balíčky: %1" -msgstr[2] "Balíčků: %1" +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Vyhledání poskytovaných selhalo" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" -msgstr[0] "" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplikace, která umí otevřít tento typ souboru" +msgstr[1] "Aplikace, které umějí otevřít tento typ souboru" +msgstr[2] "Aplikace, které umějí otevřít tento typ souboru" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Nelze najít žádné další aplikace pro tento typ souboru" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Vyhledání softwaru selhalo" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Tato položka není podporována Vaším backendem nebo to není soubor" msgstr[1] "" +"Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" msgstr[2] "" +"Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" -#: SmartIcon/KpkTransactionTrayIcon.cpp:231 -#: SmartIcon/KpkTransactionTrayIcon.cpp:244 -#, kde-format -msgid "%1% - %2" -msgstr "%1% - %2" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Nelze nainstalovat" -#: SmartIcon/KpkTransactionTrayIcon.cpp:233 -#: SmartIcon/KpkTransactionTrayIcon.cpp:246 -#, kde-format -msgid "%1" -msgstr "%1" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalovat" -#: SmartIcon/KpkTransactionTrayIcon.cpp:263 -msgid "Package Manager Messages" -msgstr "Zprávy správce balíčků" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Chcete nainstalovat tento soubor?" +msgstr[1] "Chcete nainstalovat tyto soubory?" +msgstr[2] "Chcete nainstalovat tyto soubory?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:277 -msgid "Message" -msgstr "Zpráva" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Instalovat?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:353 -msgid "The system update has completed" -msgstr "Aktualizace systému dokončena" +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Soubor nebyl nainstalován" +msgstr[1] "Soubory nebyly nainstalovány" +msgstr[2] "Soubory nebyly nainstalovány" -#: SmartIcon/KpkTransactionTrayIcon.cpp:361 -#: SmartIcon/KpkTransactionTrayIcon.cpp:365 -msgctxt "Restart the computer" -msgid "Restart" -msgstr "Restartovat" +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Soubor byl úspěšně nainstalován" +msgstr[1] "Soubory byly úspěšně nainstalovány" +msgstr[2] "Soubory byly úspěšně nainstalovány" -#: SmartIcon/KpkTransactionTrayIcon.cpp:369 -#: SmartIcon/KpkTransactionTrayIcon.cpp:375 -msgid "Logout" -msgstr "Odhlásit se" +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Nastala chyba." -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Nastavení KPackageKit" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
            • %2
            Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
            • %2
            Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Každou hodinu" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Program vyžaduje nový MIME typ" +msgstr[1] "Program vyžaduje nové MIME typy" +msgstr[2] "Program vyžaduje nové MIME typy" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Každý den" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Program vyžaduje nový MIME typ" +msgstr[1] "Program vyžaduje nové MIME typy" +msgstr[2] "Program vyžaduje nové MIME typy" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Každý týden" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Program vyžaduje nový MIME typ" +msgstr[1] "Program vyžaduje nové MIME typy" +msgstr[2] "Program vyžaduje nové MIME typy" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Každý měsíc" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nikdy" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Pouze bezpečnostní" +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Všechny aktualizace" +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Přejete si nyní vyhledat a nainstalovat tento balíček?" +msgstr[1] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" +msgstr[2] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Žádné" +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Balíček nebyl nalezen v žádném zdroji software." + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Vyhledání poskytovaných selhalo" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Nastavení data původu selhalo" +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Balíček nebyl nalezen v žádném zdroji software." -#: KPackageKit/KpkInstallProvideFile.cpp:44 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Je vyžadován následující soubor:" -msgstr[1] "Jsou vyžadovány následující soubory:" -msgstr[2] "Jsou vyžadovány následující soubory:" +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Přenosy" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Přejete si jej nyní vyhledat?" -msgstr[1] "Přejete si je nyní vyhledat?" -msgstr[2] "Přejete si je nyní vyhledat?" +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" +msgstr "Obnovit seznam balíčků" -#: KPackageKit/KpkInstallProvideFile.cpp:54 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Program se pokouší nainstalovat soubor" -msgstr[1] "Program se pokouší nainstalovat soubory" -msgstr[2] "Program se pokouší nainstalovat soubory" +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" +msgstr "Zobrazit zprávy" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "Skrýt tuto ikonu" -#: KPackageKit/KpkInstallProvideFile.cpp:58 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 chce nainstalovat soubor" -msgstr[1] "%1 chce nainstalovat soubory" -msgstr[2] "%1 chce nainstalovat soubory" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Balíček: %2" +msgstr[1] "Balíčky: %2" +msgstr[2] "Balíčků: %2" -#: KPackageKit/KpkInstallProvideFile.cpp:65 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalovat" +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: KPackageKit/KpkInstallProvideFile.cpp:85 -#: KPackageKit/KpkInstallProvideFile.cpp:86 -#: KPackageKit/KpkRemovePackageByFile.cpp:90 -#: KPackageKit/KpkRemovePackageByFile.cpp:91 -msgid "Failed to start search file transaction" -msgstr "Selhalo zahájení transakce hledání souboru" +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" +msgstr "Aktualizace systému dokončena" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Restartovat" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ne nyní" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "Odhlásit se" -#: KPackageKit/KpkInstallProvideFile.cpp:98 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format -msgid "The %1 package already provides this file" -msgstr "Balíček %1 již poskytuje tento soubor" +msgid "%1% - %2" +msgstr "%1% - %2" -#: KPackageKit/KpkInstallProvideFile.cpp:103 -#: KPackageKit/KpkInstallPackageName.cpp:98 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Následující balíček bude nainstalován" -msgstr[1] "Následující balíčky budou nainstalovány" -msgstr[2] "Následující balíčky budou nainstalovány" +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" -#: KPackageKit/KpkInstallProvideFile.cpp:113 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Zadaný soubor nebyl nalezen v žádném balíčku" -msgstr[1] "Zadané soubory nebyly nalezeny v žádném balíčku" -msgstr[2] "Zadané soubory nebyly nalezeny v žádném balíčku" +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "Zprávy správce balíčků" -#: KPackageKit/KpkInstallProvideFile.cpp:115 -msgid "Failed to find package" -msgstr "Vyhledání balíčku selhalo" +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "Zpráva" -#: KPackageKit/KpkRemovePackageByFile.cpp:51 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Program se pokouší odstranit soubor" msgstr[1] "Program se pokouší odstranit soubory" msgstr[2] "Program se pokouší odstranit soubory" -#: KPackageKit/KpkRemovePackageByFile.cpp:55 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" msgstr[0] "%1 se pokouší odstranit soubor" msgstr[1] "%1 se pokouší odstranit soubory" msgstr[2] "%1 se pokouší odstranit soubory" -#: KPackageKit/KpkRemovePackageByFile.cpp:61 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Následující soubor bude odebrán:" msgstr[1] "Následující soubory budou odebrány:" msgstr[2] "Následující soubory budou odebrány:" -#: KPackageKit/KpkRemovePackageByFile.cpp:65 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2411,30 +3121,179 @@ msgstr[1] "" msgstr[2] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:70 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Hledat" -#: KPackageKit/KpkRemovePackageByFile.cpp:103 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Následující balíček bude odebrán" msgstr[1] "Následující balíčky budou odebrány" msgstr[2] "Následující balíčky budou odebrány" -#: KPackageKit/KpkRemovePackageByFile.cpp:112 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "Soubor nelze najít v žádném nainstalovaném balíčku" msgstr[1] "Soubory nelze najít v žádném nainstalovaném balíčku" msgstr[2] "Soubory nelze najít v žádném nainstalovaném balíčku" -#: KPackageKit/KpkRemovePackageByFile.cpp:114 -#: KPackageKit/KpkInstallPackageName.cpp:110 -#, kde-format -msgid "Could not find %1" -msgstr "Nelze najít %1" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
            %1
            Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
            • %1
            • Do you want to search for a program to open this file type now?" +msgstr "" +"Je vyžadován dodatečný program k otevření tohoto typu souboru:
              %1
              Přejete si nyní vyhledat program k jeho otevření?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Program vyžaduje nový MIME typ" +msgstr[1] "Program vyžaduje nové MIME typy" +msgstr[2] "Program vyžaduje nové MIME typy" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 vyžaduje nový MIME typ" +msgstr[1] "%1 vyžaduje nové MIME typy" +msgstr[2] "%1 vyžaduje nové MIME typy" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Hledat" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Nelze najít žádné další aplikace pro tento typ souboru" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Vyhledání softwaru selhalo" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

              Do you want to install this catalog?

              • %2
              " +msgid_plural "" +"

              Do you want to install these catalogs?

              • %2
              " +msgstr[0] "Chcete nainstalovat tento soubor?" +msgstr[1] "Chcete nainstalovat tyto soubory?" +msgstr[2] "Chcete nainstalovat tyto soubory?" + +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instalovat nyní" +msgstr[1] "Instalovat nyní" +msgstr[2] "Instalovat nyní" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instalovat" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Bohužel, Váš backend nepodporuje instalaci balíčků." + +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "Podporováno" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Soubor s balíčkem k instalaci" +msgstr[1] "Soubor s balíčkem k instalaci" +msgstr[2] "Soubor s balíčkem k instalaci" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Selhalo dokončení" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Zdrojové balíčky nemohly být nainstalovány" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Spuštění transakce pro vyřešení závislosti selhalo" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Nastavení KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Každou hodinu" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Každý den" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Každý týden" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Každý měsíc" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nikdy" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Pouze bezpečnostní" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Všechny aktualizace" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Žádné" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Nastavení data původu selhalo" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2472,154 +3331,6 @@ msgid "Package file to install" msgstr "Soubor s balíčkem k instalaci" -#: KPackageKit/KpkInstallFiles.cpp:78 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Tato položka není podporována Vaším backendem nebo to není soubor" -msgstr[1] "" -"Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" -msgstr[2] "" -"Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" - -#: KPackageKit/KpkInstallFiles.cpp:82 -msgid "Impossible to install" -msgstr "Nelze nainstalovat" - -#: KPackageKit/KpkInstallFiles.cpp:95 -msgid "Install" -msgstr "Instalovat" - -#: KPackageKit/KpkInstallFiles.cpp:99 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Chcete nainstalovat tento soubor?" -msgstr[1] "Chcete nainstalovat tyto soubory?" -msgstr[2] "Chcete nainstalovat tyto soubory?" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Install?" -msgstr "Instalovat?" - -#: KPackageKit/KpkInstallFiles.cpp:118 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Instalace souboru selhala" -msgstr[1] "Instalace souborů selhala" -msgstr[2] "Instalace souborů selhala" - -#: KPackageKit/KpkInstallFiles.cpp:122 KPackageKit/KpkInstallFiles.cpp:124 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Soubor nebyl nainstalován" -msgstr[1] "Soubory nebyly nainstalovány" -msgstr[2] "Soubory nebyly nainstalovány" - -#: KPackageKit/KpkInstallFiles.cpp:138 KPackageKit/KpkInstallFiles.cpp:141 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Soubor byl úspěšně nainstalován" -msgstr[1] "Soubory byly úspěšně nainstalovány" -msgstr[2] "Soubory byly úspěšně nainstalovány" - -#: KPackageKit/KpkInstallFiles.cpp:149 -msgid "An error occurred." -msgstr "Nastala chyba." - -#: KPackageKit/KpkInstallPackageName.cpp:44 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Je vyžadován dodatečný balíček:" -msgstr[1] "Jsou vyžadovány dodatečné balíčky:" -msgstr[2] "Jsou vyžadovány dodatečné balíčky:" - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Přejete si nyní vyhledat a nainstalovat tento balíček?" -msgstr[1] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" -msgstr[2] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" - -#: KPackageKit/KpkInstallPackageName.cpp:54 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Program se chystá nainstalovat balíček" -msgstr[1] "Program se chystá nainstalovat balíčky" -msgstr[2] "Program se chystá nainstalovat balíčky" - -#: KPackageKit/KpkInstallPackageName.cpp:58 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 se chystá nainstalovat balíček" -msgstr[1] "%1 se chystá nainstalovat balíčky" -msgstr[2] "%1 se chystá nainstalovat balíčky" - -#: KPackageKit/KpkInstallPackageName.cpp:65 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalovat" - -#: KPackageKit/KpkInstallPackageName.cpp:85 -#: KPackageKit/KpkInstallPackageName.cpp:86 -msgid "Failed to start resolve transaction" -msgstr "Spuštění transakce pro vyřešení závislosti selhalo" - -#: KPackageKit/KpkInstallPackageName.cpp:108 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Balíček nebyl nalezen v žádném zdroji software." -msgstr[1] "Balíčky nebyly nalezeny v žádném zdroji software." -msgstr[2] "Balíčky nebyly nalezeny v žádném zdroji software." - -#: KPackageKit/KpkInstallMimeType.cpp:43 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
              %1
              Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Je vyžadován dodatečný program k otevření tohoto typu souboru:
              %1
              Přejete si nyní vyhledat program k jeho otevření?" - -#: KPackageKit/KpkInstallMimeType.cpp:50 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Program vyžaduje nový MIME typ" -msgstr[1] "Program vyžaduje nové MIME typy" -msgstr[2] "Program vyžaduje nové MIME typy" - -#: KPackageKit/KpkInstallMimeType.cpp:54 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 vyžaduje nový MIME typ" -msgstr[1] "%1 vyžaduje nové MIME typy" -msgstr[2] "%1 vyžaduje nové MIME typy" - -#: KPackageKit/KpkInstallMimeType.cpp:61 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Hledat" - -#: KPackageKit/KpkInstallMimeType.cpp:82 KPackageKit/KpkInstallMimeType.cpp:83 -msgid "Failed to search for provides" -msgstr "Vyhledání poskytovaných selhalo" - -#: KPackageKit/KpkInstallMimeType.cpp:95 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplikace, která umí otevřít tento typ souboru" -msgstr[1] "Aplikace, které umějí otevřít tento typ souboru" -msgstr[2] "Aplikace, které umějí otevřít tento typ souboru" - -#: KPackageKit/KpkInstallMimeType.cpp:103 -msgid "No new applications can be found to handle this type of file" -msgstr "Nelze najít žádné další aplikace pro tento typ souboru" - -#: KPackageKit/KpkInstallMimeType.cpp:104 -msgid "Failed to find software" -msgstr "Vyhledání softwaru selhalo" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2630,19 +3341,19 @@ msgid "Your emails" msgstr "ltinkl@redhat.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Vybrat všechny aktualizace" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Obnovit" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2680,159 +3391,159 @@ msgid "Required by" msgstr "Požadované" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Přidat a odebrat software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Hledat balíčky" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:443 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:221 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtry" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Všechny balíčky" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Přenos" +msgid "Transaction" +msgstr "Přenos" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ikona" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Stahují se balíčky" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "A library to do foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" -#. i18n: file: libkpackagekit/KpkRequirements.ui:22 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 -msgid "The following packages also have to be removed/installed:" -msgstr "Je potřeba rovněž odstranit/nainstalovat následující balíčky:" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:77 -msgid "TextLabel" -msgstr "TextLabel" +#, fuzzy +#| msgid "Additional media is required to complete the transaction." +msgid "Additional changes are required to complete the task" +msgstr "Je vyžadováno další médium pro dokončení transakce." + +#. i18n: file: libkpackagekit/KpkRequirements.ui:57 +#. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) +#: rc.cpp:80 +msgid "Actions" +msgstr "Činnosti" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:83 +#: rc.cpp:89 msgid "Repository name:" msgstr "Název úložiště:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:86 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL podpisu:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:89 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identifikátor podpisu uživatele:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:92 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identifikátor podpisu:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:95 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Poznáváte uživatele a věříte jeho klíči?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:98 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Důvěřujete původu balíčků?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:104 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Než budete pokračovat, přečtěte si prosím následující informace:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:107 +#: rc.cpp:113 msgid "Settings" msgstr "Nastavení" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:110 -msgid "KPackageKit Settings" -msgstr "Nastavení KPackageKit" +#: rc.cpp:116 +msgid "Update settings" +msgstr "Aktualizovat nastavení" -#. i18n: file: Settings/KpkSettings.ui:34 +#. i18n: file: Settings/KpkSettings.ui:38 #. i18n: ectx: property (text), widget (QLabel, intervalL) -#: rc.cpp:113 -msgid "Check for Updates:" +#: rc.cpp:119 +msgid "Check for updates:" msgstr "Zkontrolovat aktualizace:" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:116 -msgid "Automatically Install:" +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) +#: rc.cpp:122 +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" msgstr "Automaticky nainstalovat:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:119 -msgid "Smart Tray Icon" -msgstr "Chytrá systémová ikona" - -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) -#: rc.cpp:122 +#: rc.cpp:125 msgid "Notify when updates are available" msgstr "Upozornit na dostupné aktualizace" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:125 -msgid "Notify when long tasks have been completed" -msgstr "Informovat o dokončení dlouhých úloh" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) #: rc.cpp:128 -msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Původ balíčků" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) #: rc.cpp:131 msgid "&Show origins of debug and development packages" @@ -2863,175 +3574,258 @@ msgstr "Autor backendu:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 -#. i18n: ectx: property (text), widget (QLabel, authorL) +#. i18n: ectx: property (text), widget (QLabel, label_3) #: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "Najít po&dle popisu:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 +#. i18n: ectx: property (text), widget (QLabel, authorL) +#: rc.cpp:149 msgid "backend author name here" msgstr "backend author name here" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:66 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "backend name here" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 +#. i18n: ectx: property (text), widget (QCheckBox, visibleCB) +#: rc.cpp:164 +msgid "Package is visible" +msgstr "Balíček je viditelný" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 +#. i18n: ectx: property (text), widget (QCheckBox, newestCB) +#: rc.cpp:167 +msgid "Newest" +msgstr "Nejnovější" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 +#. i18n: ectx: property (text), widget (QCheckBox, guiCB) +#: rc.cpp:170 +msgid "GUI" +msgstr "GUI" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, freeCB) +#: rc.cpp:173 +msgid "Free software" +msgstr "Svobodný software" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 +#. i18n: ectx: property (text), widget (QCheckBox, supportedCB) +#: rc.cpp:176 +msgid "Supported" +msgstr "Podporováno" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:149 +#: rc.cpp:179 msgid "Methods" msgstr "Metody" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:75 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:152 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Získat aktualizace" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:91 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:155 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Aktualizovat balíček" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:107 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:158 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Získat seznam úložišť" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:123 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:161 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Obnovit cache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:139 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:164 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Nainstalovat balíček" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:155 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:167 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Povolit úložiště" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:171 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:170 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Aktualizovat systém" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:173 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Odstranit balíček" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:203 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:176 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Povolit sadu úložišť" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:219 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:179 +#: rc.cpp:209 msgid "SearchName" msgstr "Hledat podle názvu" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:235 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:182 +#: rc.cpp:212 msgid "GetDepends" msgstr "Získat závislosti" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:251 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:185 +#: rc.cpp:215 msgid "WhatProvides" msgstr "Co poskytuje" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:267 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:188 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Hledat detaily" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:283 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:191 +#: rc.cpp:221 msgid "GetRequires" msgstr "Získat požadavky" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:299 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:194 +#: rc.cpp:224 msgid "GetPackages" msgstr "Získat balíčky" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:315 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:197 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Hledat skupiny" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:331 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:200 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Získat podrobnosti aktualizace" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:347 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:203 +#: rc.cpp:233 msgid "SearchFile" msgstr "Hledat soubor" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:363 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:206 +#: rc.cpp:236 msgid "GetDescription" msgstr "Získat popis" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:395 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:212 +#: rc.cpp:242 msgid "GetFiles" msgstr "Získat soubory" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:411 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:215 +#: rc.cpp:245 msgid "Resolve" msgstr "Vyřešit" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:427 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:218 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Instalovat soubor" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 -#. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:230 -msgid "Package is visible" -msgstr "Balíček je viditelný" +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) +#: rc.cpp:251 +#, fuzzy +#| msgid "InstallFIle" +msgid "SimulateInstallFiles" +msgstr "Instalovat soubor" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 -#. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:233 -msgid "Newest" -msgstr "Nejnovější" +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) +#: rc.cpp:254 +#, fuzzy +#| msgid "InstallPackage" +msgid "SimulateInstallPackages" +msgstr "Nainstalovat balíček" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 -#. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:236 -msgid "GUI" -msgstr "GUI" +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 +#. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) +#: rc.cpp:257 +#, fuzzy +#| msgid "RemovePackage" +msgid "SimulateRemovePackages" +msgstr "Odstranit balíček" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 -#. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:239 -msgid "Free software" -msgstr "Svobodný software" +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 +#. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) +#: rc.cpp:260 +#, fuzzy +#| msgid "UpdatePackage" +msgid "SimulateUpdatePackages" +msgstr "Aktualizovat balíček" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 -#. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:242 -msgid "Supported" -msgstr "Podporováno" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Získány staré transakce" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Tato položka není podporována Vaším backendem nebo to není soubor" +#~ msgstr[1] "" +#~ "Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" +#~ msgstr[2] "" +#~ "Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Je vyžadován dodatečný balíček:" +#~ msgstr[1] "Jsou vyžadovány dodatečné balíčky:" +#~ msgstr[2] "Jsou vyžadovány dodatečné balíčky:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Přejete si nyní vyhledat a nainstalovat tento balíček?" +#~ msgstr[1] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" +#~ msgstr[2] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
              %1
              Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Je vyžadován dodatečný program k otevření tohoto typu souboru:
              %" +#~ "1
              Přejete si nyní vyhledat program k jeho otevření?" diff -Nru kpackagekit-0.5.4/po/da/kpackagekit.po kpackagekit-0.6.0/po/da/kpackagekit.po --- kpackagekit-0.5.4/po/da/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/da/kpackagekit.po 2010-01-30 09:00:07.000000000 +0000 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-08 15:05+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-11-14 00:23+0100\n" "Last-Translator: Martin Schlander \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detaljer" @@ -94,27 +94,27 @@ "Det anbefales at beholde computeren i stikkontakten mens opgraderingen " "udføres." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Distributionsopgradering gennemført." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Distributionsopgraderingen afsluttede med koden %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Start af distributionsopgraderingen mislykkedes." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" "Distributionsopgraderingen brød sammen nogen tid efter vellykket opstart." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Distributionsopgraderingen mislykkedes med en ukendt fejl." @@ -194,28 +194,24 @@ msgid "Time since last cache refresh: %1" msgstr "Tid siden seneste genopfriskning af cache: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Pakkenavn" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Hjemmeside" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licens" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Gruppe" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Hjemmeside" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Størrelse" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Ingen filer blev fundet." @@ -227,233 +223,246 @@ msgid "KDE interface for managing software" msgstr "KDE-brugerflade til håndtering af software" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Find" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Alle pakker" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Liste over pakker" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Gruppe:" msgstr[1] "Grupper:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Annullér" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Find ved &navn" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Find ved f&ilnavn" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Find ved &beskrivelse" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Efterse ændringer" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Samlinger" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Kun samlinger" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Ekskludér samlinger" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installerede" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Kun installerede" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Kun tilgængelige" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Intet filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Udvikling" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Kun udvikling" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Kun slutbrugerfiler" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafiske" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Kun grafiske" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Kun tekst" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Frie" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Kun fri software" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Kun ufri software" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arkitekturer" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Kun hjemmehørende arkitekturer" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Kun ikke-hjemmehørende arkitekturer" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Kildekode" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Kun kildekode" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Kun ikke-kildekode" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Skjul underpakker" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Vis kun én pakke - ikke underpakker" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Kun de nyeste pakker" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Vis kun den nyeste tilgængelige pakke" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Vis i grupper" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Vis pakker i grupper i henhold til status" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Den følgende pakke vil blive installeret:" msgstr[1] "Følgende pakker vil blive installeret:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Installér nu" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Den følgende pakke vil blive fjernet:" msgstr[1] "Følgende pakker vil blive fjernet:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Fjern nu" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Følgende pakke vil blive fjernet og installeret:" msgstr[1] "Følgende pakker vil blive fjernet og installeret:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Anvend nu" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Opdatering af pakkelister mislykkedes" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Den aktuelle backend understøtter ikke fjernelse af pakker." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit-fejl" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Opdatering af pakkelister mislykkedes" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Den aktuelle backend understøtter ikke installation af pakker." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Fjernelse af pakke mislykkedes" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Installation af pakke mislykkedes" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Fjernelse af pakke mislykkedes" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Skjul" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Lader dig skjule vinduet mens transaktionen holdes kørende." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -464,11 +473,11 @@ "kilde.\n" "Vil du virkelig fortsætte installationen?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Installerer usigneret software" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Et skift af medie kræves" @@ -488,7 +497,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Licensaftale kræves" @@ -501,13 +510,13 @@ msgid "Version" msgstr "Version" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Annullér" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Gennemført på %1." @@ -557,807 +566,934 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Softwaresignatur kræves" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Ukendt tilstand" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Venter på at tjeneste starter" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Venter på andre opgaver" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Kører opgave" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Forespørger" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Henter information" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Fjerner pakker" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Downloader pakker" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Installerer pakker" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Genopfrisker softwareliste" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Opdaterer pakker" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Rydder op i pakker" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Gør pakker forældede" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Løser afhængigheder" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Kontrollerer signaturer" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Ruller tilbage" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Tester ændringer" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Udfører ændringer" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Spørger efter data" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Færdig" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Annullerer" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Downloader softwarekildeinformation" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Downloader liste over pakker" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Downloader filliste" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Downloader liste over ændringer" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Downloader grupper" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Downloader opdateringsinformation" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Genpakker filer" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Indlæser cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Scanner installerede programmer" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Genererer pakkelister" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Venter på pakkehåndteringslås" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for authentication" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Venter på autentificering" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating the list of running applications" +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Opdaterer listen over kørende programmer" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for applications currently in use" +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "Tjekker efter programmer der aktuelt er i brug" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for libraries currently in use" +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Tjekker efter biblioteker der aktuelt er i brug" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Genpakker filer" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Downloadede" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Opdaterede" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installerede" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Fjernede" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Ryddede op" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Gjorde forældet" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Ukendt rolletype" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Henter afhængigheder" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Henter opdateringsdetaljer" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Henter detaljer" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Henter krav" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Henter opdateringer" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Gennemsøger detaljer" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Søger efter fil" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Gennemsøger grupper" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Søger ved pakkenavn" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Fjerner" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installerer" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Installerer fil" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Genopfrisker pakke-cache" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Opdaterer pakker" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Opdaterer system" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Annullerer" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Ruller tilbage" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Henter liste over softwarekilder" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Aktiverer softwarekilde" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Indstiller softwarekildedata" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Løser" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Henter filliste" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Henter \"hvad leverer\"" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Installerer signatur" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Henter pakkelister" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Accepterer EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Downloader pakker" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Henter information om distributionsopgradering" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Henter kategorier" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Henter gamle transaktioner" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Simulerer installation af filer" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Simulerer installationen" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Simulerer fjernelsen" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Simulerer opdateringen" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Ukendt rolletype" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Hentede afhængigheder" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Hentede opdateringsdetaljer" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Hentede detaljer" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Hentede krav" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Hentede opdateringer" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Søgte efter pakkedetaljer" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Søgte efter fil" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Gennemsøgte grupper" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Søgte efter pakkenavn" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Fjernede pakker" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Installerede pakker" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Installerede lokale filer" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Genopfriskede pakke-cache" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Opdaterede pakker" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Opdaterede system" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Annullerede" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Rullede tilbage" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Hentede liste over softwarekilder" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Aktiverede softwarekilde" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Indstillede softwarekildedata" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Løste" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Hentede filliste" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Hentede \"hvad leverer\"" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Installerede signatur" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Hentede pakkelister" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Accepterede EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Downloadede pakker" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Hentede distributionsopgraderinger" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Hentede kategorier" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Hentede gamle transaktioner" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Simulerede installation af filer" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Simulerede installationen" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Simulerede fjernelsen" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Simulerede opdateringen" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Ingen netværksforbindelse tilgængelig" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Ingen pakke-cache tilgængelig" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Ikke mere hukommelse" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Oprettelse af tråd mislykkedes" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Ikke understøttet af denne motor" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Der opstod en intern systemfejl" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Et tillidsbaseret sikkerhedsforhold er ikke til stede" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Pakken er ikke installeret" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Pakken blev ikke fundet" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Pakken er allerede installeret" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Download af pakken mislykkedes" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Gruppen blev ikke fundet" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Gruppelisten var ugyldig" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Afhængighedsløsning mislykkedes" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Søgefilter var ugyldigt" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Pakkens identificering var ikke korrekt udformet" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Transaktionsfejl" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Softwarekildenavn blev ikke fundet" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Kunne ikke fjerne en beskyttet systempakke" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Opgaven blev annulleret" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Opgaven blev tvangsannulleret" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Læsning af konfigurationsfil mislykkedes" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Opgaven kan ikke annulleres" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Kildekodepakker kan ikke installeres" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Licensaftalen mislykkedes" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokal filkonflikt mellem pakker" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Pakker er ikke kompatible" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +#, fuzzy +#| msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Problem med forbindelse til en softwarekilde" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Initialisering mislykkedes" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Afslutning mislykkedes" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Kan ikke hente lås" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Ingen pakker til opdatering" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Kan ikke skrive konfiguration af softwarekilde" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokal installation mislykkedes" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Dårlig GPG-signatur" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Manglende GPG-signatur" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Ugyldig konfiguration af softwarekilde" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Ugyldig pakkefil" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Pakkeinstallation blokeret" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Pakken er defekt" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Alle pakker er allerede installeret" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Den angivne fil kunne ikke findes" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Ikke flere filspejle tilgængelige" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Ingen data til distributionsopgradering er tilgængelig" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Pakken er inkompatibel med dette system" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Ingen plads tilbage på disken" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Godkendelse fejlede" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Opdatering ikke fundet" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "Cannot install from untrusted orign" +msgid "Cannot install from untrusted origin" msgstr "Kan ikke installere fra ubetroet kilde" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "Cannot update from untrusted orign" +msgid "Cannot update from untrusted origin" msgstr "Kan ikke opdatere fra ubetroet kilde" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Kan ikke hente fillisten" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Kan ikke hente pakkeafhængigheder" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +#, fuzzy +#| msgid "Cannot disable orign" +msgid "Cannot disable origin" msgstr "Kan ikke deaktivere kilde" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Download mislykkedes" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Pakken kunne ikke konfigureres" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Pakken kunne ikke bygges" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Pakken kunne ikke installeres" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Pakken kunne ikke fjernes" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Ukendt fejl" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1365,7 +1501,7 @@ "Der er ingen tilgængelig netværksforbindelse.\n" "Tjek dine forbindelsesindstillinger og prøv igen" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1373,7 +1509,7 @@ "Pakkelisten skal ombygges.\n" "Dette burde være blevet gjort automatisk af motoren." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1383,11 +1519,11 @@ "mere hukommelse.\n" "Luk nogle programmer eller genstart din computer." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "En tråd til at betjene brugerforespørgsler kunne ikke oprettes." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1395,7 +1531,7 @@ "Handlingen understøttes ikke af denne motor.\n" "Indsend venligst en fejlrapport, da dette ikke burde være sket." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1403,34 +1539,42 @@ "Et problem, vi ikke forventede, opstod.\n" "Indsend venligst en fejlrapport med fejlbeskrivelsen." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 +#, fuzzy +#| msgid "" +#| "A security trust relationship could not be made with the software orign.\n" +#| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Et tillidsbaseret sikkerhedsforhold kunne ikke oprettes med softwarekilden.\n" "Tjek dine indstillinger for softwaresignaturer." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Pakken, som prøver at blive fjernet eller opdateret, er ikke allerede " "installeret." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software orign." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Pakken, som er under ændring, blev ikke fundet på dit system eller i nogen " "softwarekilde." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Pakken, som prøver at blive installeret, er allerede installeret." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1438,7 +1582,7 @@ "Download af pakken mislykkedes.\n" "Tjek din netværksforbindelse." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1446,17 +1590,22 @@ "Gruppetypen blev ikke fundet.\n" "Tjek din gruppeliste og prøv igen." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 +#, fuzzy +#| msgid "" +#| "The group list could not be loaded.\n" +#| "Refreshing your cache may help, although this is normally a software " +#| "orign error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Gruppelisten kunne ikke indlæses.\n" "Det kan hjælpe at genopfriske din cache, selv om dette normalt er en " "softwarekildefejl." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1464,11 +1613,11 @@ "En pakkeafhængighed kunne ikke findes.\n" "Mere information findes i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Søgefilteret er ikke udformet korrekt." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1477,7 +1626,7 @@ "systemdæmonen.\n" "Dette indikerer normalt en intern fejl og bør rapporteres." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1485,23 +1634,27 @@ "En fejl opstod under kørsel af transaktionen.\n" "Mere information findes i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 +#, fuzzy +#| msgid "" +#| "The remote software orign name was not found.\n" +#| "You may need to enable an item in Software Origns." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Navnet på den eksterne softwarekilde blev ikke fundet.\n" "Du skal måske aktivere et element i softwarekilderne." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Det er ikke tilladt at fjerne en beskyttet systempakke." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Opgaven blev annulleret, og ingen pakker ændredes." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1509,7 +1662,7 @@ "Opgaven blev annulleret, og ingen pakker ændredes.\n" "Motoren afsluttede ikke ordentligt." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1517,11 +1670,11 @@ "Den hjemmehørende pakkekonfigurationsfil kunne ikke åbnes.\n" "Tjek at systemkonfigurationen er gyldig." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Det er i øjeblikket ikke sikkert at annullere opgaven." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1529,7 +1682,7 @@ "Kildekodepakker installeres normalt ikke på denne måde.\n" "Tjek filendelsen på filen, du prøver at installere." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1537,32 +1690,45 @@ "Licensaftalen blev ikke accepteret.\n" "Du skal acceptere licensen for at benytte dette software." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 +#, fuzzy +#| msgid "" +#| "Two packages provide the same file.\n" +#| "This is usually due to mixing packages for different software origns." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "To pakker tilbyder den samme fil.\n" "Dette skyldes ofte, at der blandes pakker fra forskellige softwarekilder." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 +#, fuzzy +#| msgid "" +#| "Multiple packages exist that are not compatible with each other.\n" +#| "This is usually due to mixing packages from different software origns." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Der findes flere pakker, der ikke er kompatible med hinanden.\n" "Dette skyldes ofte, at der blandes pakker fra forskellige softwarekilder." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 +#, fuzzy +#| msgid "" +#| "There was a (possibly temporary) problem connecting to a software " +#| "origns.\n" +#| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Der var et (muligvis midlertidigt) problem med forbindelse til en " "softwarekilde.\n" "Se den detaljerede fejlmeddelelse for yderligere information." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1570,7 +1736,7 @@ "Initialisering af pakkeværktøjets motor fejlede.\n" "Dette kan ske, hvis andre pakkeværktøjer bruges samtidigt." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1578,7 +1744,7 @@ "Nedlukning af motorinstansen mislykkedes.\n" "Denne fejl kan normalt ignoreres." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1586,15 +1752,15 @@ "Kan ikke indhente den eksklusive lås på pakkeværktøjets motor.\n" "Luk alle andre pakkeværktøjer, der evt. måtte være åbne." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Ingen af de valgte pakker kunne opdateres." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Konfigurationen af softwarekilden kunne ikke ændres." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1602,11 +1768,11 @@ "Installation af den lokale fil mislykkedes.\n" "Mere information er tilgængelig i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Pakkesignaturen kunne ikke verificeres." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1614,11 +1780,11 @@ "Pakkesignaturen manglede og denne pakke er ikke betroet.\n" "Denne pakke blev ikke signeret med en GPG-nøgle da den blev oprettet." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Konfiguration af softwarekilde var ugyldig og kunne ikke læses." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1626,7 +1792,7 @@ "Den pakke, du forsøger at installere, er ikke gyldig.\n" "Pakkefilen kan være korrupt, eller det er ikke en rigtig pakke." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1634,19 +1800,19 @@ "Installation af denne pakke blev forhindret af konfigurationen af dit " "pakkesystem." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Pakken, der blev downloadet, er defekt og skal downloades igen." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Alle pakkerne, der er valgt til installation, er allerede installeret på " "systemet." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1654,31 +1820,41 @@ "Den angivne fil kunne ikke findes på systemet.\n" "Tjek om filen stadig eksisterer og ikke er blevet slettet." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 +#, fuzzy +#| msgid "" +#| "Required data could not be found on any of the configured software " +#| "origns.\n" +#| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Den påkrævede data kunne ikke findes på nogen af de konfigurerede " "softwarekilder.\n" "Der var ikke flere download-filspejle, der kunne prøves." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 +#, fuzzy +#| msgid "" +#| "Required upgrade data could not be found in any of the configured " +#| "software origns.\n" +#| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Den påkrævede data kunne ikke findes på nogen af de konfigurerede " "softwarekilder.\n" "Listen over distributionsopgraderinger vil ikke være tilgængelig." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Pakken der forsøges installeret er inkompatibel med dette system." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1686,11 +1862,11 @@ "Der er utilstrækkelig plads på enheden.\n" "Frigør noget plads på systemdisken for at udføre denne handling." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Yderligere medie påkrævet for at gennemføre transaktionen." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1698,7 +1874,7 @@ "Du har ikke oplyst korrekt autentificering.\n" "Tjek alle adgangskoder eller kontoindstillinger." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1708,27 +1884,33 @@ "Den kan allerede være blevet installeret eller ikke længere tilgængelig på " "den eksterne server." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +#, fuzzy +#| msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "Pakken kunne ikke installeres fra en ubetroet kilde." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +#, fuzzy +#| msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "Pakken kunne ikke opdateres fra en ubetroet kilde." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "Fillisten er ikke tilgængelig for denne pakke." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "Informationen om hvad der kræver denne pakke kunne ikke skaffes." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +#, fuzzy +#| msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Den angivne softwarekilde kunne ikke deaktiveres." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1736,7 +1918,7 @@ "Downloadet kunne ikke udføres automatisk og bør gøres manuelt.\n" "Mere information findes i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1744,7 +1926,7 @@ "En af de valgte pakker kunne ikke konfigureres korrekt.\n" "Mere information er tilgængelig i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1752,7 +1934,7 @@ "En af de valgte pakker kunne ikke bygges korrekt.\n" "Mere information er tilgængelig i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1760,7 +1942,7 @@ "En af de valgte pakker kunne ikke installeres korrekt.\n" "Mere information er tilgængelig i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1768,7 +1950,7 @@ "En af de valgte pakker kunne ikke fjernes korrekt.\n" "Mere information er tilgængelig i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1776,239 +1958,239 @@ "Ukendt fejl, rapportér venligst.\n" "Mere information findes i den detaljerede rapport." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Tilgængelighed" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Tilbehør" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Uddannelse" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Spil" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafik" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kontor" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Andet" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Udvikling" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedie" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "System" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME-skrivebordsmiljøet" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE-skrivebordsmiljøet" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE-skrivebordsmiljøet" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Andre skrivebordsmiljøer" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Udgivelse" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servere" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Skrifttyper" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Administrationsværktøjer" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Legacy" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Lokalisering" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualisering" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Sikkerhed" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Strømstyring" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Kommunikation" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Netværk" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Kort" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Softwarekilder" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Videnskab" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentation" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronik" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Pakkesamlinger" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Leverandør" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Nyeste pakker" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Ukendt gruppe" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Triviel opdatering" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normal opdatering" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Vigtig opdatering" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Sikkerhedsopdatering" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Fejlrettelsesopdatering" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Forbedringsopdatering" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blokeret opdatering" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Installeret" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Tilgængelig" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Ukendt opdatering" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 triviel opdatering" msgstr[1] "%1 trivielle opdateringer" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2016,70 +2198,70 @@ msgstr[0] "1 opdatering" msgstr[1] "%1 opdateringer" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 vigtig opdatering" msgstr[1] "%1 vigtige opdateringer" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 sikkerhedsopdatering" msgstr[1] "%1 sikkerhedsopdateringer" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 fejlrettelsesopdatering" msgstr[1] "%1 fejlretningsopdateringer" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 forbedringsopdatering" msgstr[1] "%1 forbedringsopdateringer" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blokeret opdatering" msgstr[1] "%1 blokerede opdateringer" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 installeret pakke" msgstr[1] "%1 installerede pakker" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 tilgængelig pakke" msgstr[1] "%1 tilgængelige pakker" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 ukendt opdatering" msgstr[1] "%1 ukendte opdateringer" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 triviel opdatering valgt" msgstr[1] "%1 trivielle opdateringer valgt" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2087,56 +2269,56 @@ msgstr[0] "1 opdatering valgt" msgstr[1] "%1 opdateringer valgt" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 vigtig opdatering valgt" msgstr[1] "%1 vigtige opdateringer valgt" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 sikkerhedsopdatering valgt" msgstr[1] "%1 sikkerhedsopdateringer valgt" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 fejlrettelsesopdatering valgt" msgstr[1] "%1 fejlretningsopdateringer valgt" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 forbedringsopdatering valgt" msgstr[1] "%1 forbedringsopdateringer valgt" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 installeret pakke valgt til fjernelse" msgstr[1] "%1 installerede pakker valgt til fjernelse" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 tilgængelig pakke valgt til installation" msgstr[1] "%1 tilgængelige pakker valgt til installation" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 triviel opdatering" msgstr[1] "%1 trivielle opdateringer, %2 valgt" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2144,293 +2326,467 @@ msgstr[0] "%1 opdatering" msgstr[1] "%1 opdateringer, %2 valgt" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 vigtig opdatering" msgstr[1] "%1 vigtige opdateringer, %2 valgt" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 sikkerhedsopdatering" msgstr[1] "%1 sikkerhedsopdateringer, %2 valgt" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 fejlrettelsesopdatering" msgstr[1] "%1 fejlretningsopdateringer, %2 valgt" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 forbedringsopdatering" msgstr[1] "%1 forbedringsopdateringer, %2 valgt" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 blokeret opdatering" msgstr[1] "%1 blokerede opdateringer" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 installeret pakke" msgstr[1] "%1 installerede pakker, %2 valgt til fjernelse" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 tilgængelig pakke" msgstr[1] "%1 tilgængelige pakker, %2 valgt til installation" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 ukendt opdatering" msgstr[1] "%1 ukendte opdateringer" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Ingen genstart nødvendig" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Du vil skulle genstarte dette program" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Du vil skulle logge ud og logge ind igen" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Genstart nødvendig" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "Du vil skulle logge ud og ind igen pga. en sikkerhedsopdatering." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "Genstart er nødvendig pga. en sikkerhedsopdatering." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Ingen genstart kræves" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Genstart nødvendig" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Du skal logge ud og logge ind igen" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Du skal genstarte programmet" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "Du skal logge ud og ind igen for at forblive sikret." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "Genstart er nødvendig for at forblive sikret." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabil" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Ustabil" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Test" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Indsæt venligst cd'en kaldet \"%1\" og tryk på fortsæt." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Indsæt venligst dvd'en kaldet \"%1\" og tryk på fortsæt." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Indsæt venligst disken kaldet \"%1\" og tryk på fortsæt." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Indsæt venligst mediet kaldet \"%1\" og tryk på fortsæt." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Et filspejl er muligvis defekt" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Forbindelsen blev afvist" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parametret var ugyldigt" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Prioriteten var ugyldig" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Backend-advarsel" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Dæmon-advarsel" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Pakkelistens cache bliver genopbygget" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "En ikke-betroet pakke blev installeret" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "En nyere pakke eksisterer" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Kunne ikke finde pakken" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Konfigurationsfiler blev ændret" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Pakken er allerede installeret" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "Automatisk oprydning ignoreres" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "Download af softwarekilde mislykkedes" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Du har ikke de nødvendige privilegier til at udføre denne handling." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "Kunne ikke hente et transaktions-id fra packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Kan ikke forbinde til dette transaktions-id." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Denne handling er ukendt." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Tjenesten packagekitd kunne ikke startes." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "Forespørgslen er ikke gyldig." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "Filen er ikke gyldig." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Denne funktion er endnu ikke understøttet." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Kunne ikke tale med packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "En ukendt fejl opstod." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorér" -#: SmartIcon/KpkUpdateIcon.cpp:172 -#, kde-format -msgid "You have %1" -msgstr "Du har %1" - -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "
              And another update" -msgid_plural "
              And %1 more updates" -msgstr[0] "
              og en anden opdatering" -msgstr[1] "
              og %1 yderligere opdateringer" +msgid "" +"The following file is required:
              • %2
              Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
              • %2
              Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "Efterse og opdatér" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Et program vil installere en fil" +msgstr[1] "Et program vil installere filer" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Ikke nu" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 vil installere en fil" +msgstr[1] "%1 vil installere filer" -#: SmartIcon/KpkUpdateIcon.cpp:191 -msgid "Do not ask again" -msgstr "Spørg ikke igen" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installér" -#: SmartIcon/KpkUpdateIcon.cpp:235 -msgid "Updates are being automatically installed." -msgstr "Opdateringer installeres automatisk." +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Start af søg efter fil-transaktion mislykkedes" -#: SmartIcon/KpkUpdateIcon.cpp:262 -msgid "Security updates are being automatically installed." -msgstr "Sikkerhedsopdateringer installeres automatisk." +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:289 -msgid "System update was successful." -msgstr "Systemopdatering blev gennemført." +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Pakken %1 leverer allerede denne fil" -#: SmartIcon/KpkUpdateIcon.cpp:298 -msgid "The software update failed." +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Installation af fil mislykkedes" +msgstr[1] "Installation af filer mislykkedes" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Den følgende pakke vil blive installeret" +msgstr[1] "De følgende pakker vil blive installeret" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Filen kunne ikke findes i nogen pakker" +msgstr[1] "Filerne kunne ikke findes i nogen pakker" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Kunne ikke finde pakke" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Du har %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
              And another update" +msgid_plural "
              And %1 more updates" +msgstr[0] "
              og en anden opdatering" +msgstr[1] "
              og %1 yderligere opdateringer" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Efterse og opdatér" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" +msgstr "Spørg ikke igen" + +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." +msgstr "Opdateringer installeres automatisk." + +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "Sikkerhedsopdateringer installeres automatisk." + +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." +msgstr "Systemopdatering blev gennemført." + +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." msgstr "Softwareopdateringen mislykkedes." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Følgende fil kræves:" +msgstr[1] "Følgende filer kræves:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Vil du søge efter denne nu?" +msgstr[1] "Vil du søge efter disse nu?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 vil installere en fil" +msgstr[1] "%1 vil installere filer" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Start opgradering nu" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Distributionsopgradering gennemført." +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Kunne ikke starte afhængighedsløser-transaktion" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Hentede gamle transaktioner" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "An unknown error happened." +msgid "An unknown error happened" +msgstr "En ukendt fejl opstod." + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
              • %2
              Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
              • %2
              Do you want to search " +"for and install these packages now?" +msgstr[0] "Vil du søge efter og installere denne pakke nu?" +msgstr[1] "Vil du søge efter og installere disse pakker nu?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Et program vil installere en pakke" +msgstr[1] "Et program vil installere pakker" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 vil installere en pakke" +msgstr[1] "%1 vil installere pakker" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installér" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Pakken er allerede installeret" +msgstr[1] "Pakken er allerede installeret" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Installation af pakke mislykkedes" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Pakken kunne ikke findes i nogen softwarekilde" +msgstr[1] "Pakkerne kunne ikke findes i nogen softwarekilde" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Kunne ikke finde %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2455,229 +2811,480 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt og andre ting" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
              %1
              Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Et yderligere program kræves for at åbne denne type fil:
              %1
              Vil du " +"søge efter et program der kan åbne denne filtype nu?" +msgstr[1] "" +"Et yderligere program kræves for at åbne denne type fil:
              %1
              Vil du " +"søge efter et program der kan åbne denne filtype nu?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Et program vil installere en fil" +msgstr[1] "Et program vil installere filer" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 vil installere en fil" +msgstr[1] "%1 vil installere filer" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Søg" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Søgning efter \"leverer\" mislykkedes" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Program som kan åbne denne filtype" +msgstr[1] "Programmer som kan åbne denne filtype" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Ingen nye programmer kan findes til at håndtere denne filtype" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Fandt ikke software" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Elementet understøttes ikke af din motor, eller det er ikke en fil." +msgstr[1] "" +"Disse elementer understøttes ikke af din motor, eller de er ikke filer." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Umuligt at installere" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installér" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Vil du installere denne fil?" +msgstr[1] "Vil du installere disse filer?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Installér?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Filen blev ikke installeret" +msgstr[1] "Filerne blev ikke installerede" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Filen blev installeret" +msgstr[1] "Filerne blev installerede" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "En fejl opstod." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
              • %2
              Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
              • %2
              Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Et program kræver en ny MIME-type" +msgstr[1] "Et program kræver nye MIME-typer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Et program kræver en ny MIME-type" +msgstr[1] "Et program kræver nye MIME-typer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Et program kræver en ny MIME-type" +msgstr[1] "Et program kræver nye MIME-typer" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Vil du søge efter og installere denne pakke nu?" +msgstr[1] "Vil du søge efter og installere disse pakker nu?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Pakken kunne ikke findes i nogen softwarekilde" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Søgning efter \"leverer\" mislykkedes" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Pakken kunne ikke findes i nogen softwarekilde" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transaktioner" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Genopfrisk pakkeliste" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Vis beskeder" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Skjul dette ikon" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "Pakke: %1" msgstr[1] "Pakker: %1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "En meddelelse fra pakkehåndteringen" msgstr[1] "%1 meddelelser fra pakkehåndteringen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Systemopdateringen er fuldført" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Genstart" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ikke nu" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Log ud" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Meddelelser fra pakkehåndteringen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Meddelelse" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Indstillinger for KPackageKit" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Et program vil fjerne en fil" +msgstr[1] "Et program vil fjerne filer" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Hver time" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%1 vil fjerne en fil" +msgstr[1] "%1 vil fjerne filer" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Dagligt" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "Den følgende fil vil blive fjernet:" +msgstr[1] "De følgende filer vil blive fjernet:" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Ugentligt" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "Vil du søge efter pakker som indeholder denne fil og fjerne den nu?" +msgstr[1] "" +"Vil du søge efter pakker som indeholder disse filer og fjerne dem nu?" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Månedligt" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Søg" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Aldrig" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Den følgende pakke vil blive fjernet" +msgstr[1] "De følgende pakker vil blive fjernet" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Kun sikkerhed" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "Filen kunne ikke findes i nogen installeret pakke" +msgstr[1] "Filerne kunne ikke findes i nogen installeret pakke" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Alle opdateringer" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
              %1
              Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
              • %1
              • Do you want to search for a program to open this file type now?" +msgstr "" +"Et yderligere program kræves for at åbne denne type fil:
                %1
                Vil du " +"søge efter et program der kan åbne denne filtype nu?" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Ingen" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Et program kræver en ny MIME-type" +msgstr[1] "Et program kræver nye MIME-typer" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Du har ikke de nødvendige privilegier til at udføre denne handling." +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 kræver en ny MIME-type" +msgstr[1] "%1 kræver nye MIME-typer" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Sætning af oprindelsesdata mislykkedes" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Søg" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Følgende fil kræves:" -msgstr[1] "Følgende filer kræves:" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Ingen nye programmer kan findes til at håndtere denne filtype" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Vil du søge efter denne nu?" -msgstr[1] "Vil du søge efter disse nu?" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Fandt ikke software" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Et program vil installere en fil" -msgstr[1] "Et program vil installere filer" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                Do you want to install this catalog?

                • %2
                " +msgid_plural "" +"

                Do you want to install these catalogs?

                • %2
                " +msgstr[0] "Vil du installere denne fil?" +msgstr[1] "Vil du installere disse filer?" -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 vil installere en fil" -msgstr[1] "%1 vil installere filer" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Installér nu" +msgstr[1] "Installér nu" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "Installér" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Start af søg efter fil-transaktion mislykkedes" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Den aktuelle backend understøtter ikke installation af pakker." -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Pakken %1 leverer allerede denne fil" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "Supporteret" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Den følgende pakke vil blive installeret" -msgstr[1] "De følgende pakker vil blive installeret" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package failed to configure" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Pakken kunne ikke konfigureres" +msgstr[1] "Pakken kunne ikke konfigureres" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Filen kunne ikke findes i nogen pakker" -msgstr[1] "Filerne kunne ikke findes i nogen pakker" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Afslutning mislykkedes" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Kunne ikke finde pakke" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Kildekodepakker kan ikke installeres" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "Et program vil fjerne en fil" -msgstr[1] "Et program vil fjerne filer" +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Kunne ikke starte afhængighedsløser-transaktion" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 vil fjerne en fil" -msgstr[1] "%1 vil fjerne filer" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Indstillinger for KPackageKit" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "Den følgende fil vil blive fjernet:" -msgstr[1] "De følgende filer vil blive fjernet:" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Hver time" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "Vil du søge efter pakker som indeholder denne fil og fjerne den nu?" -msgstr[1] "" -"Vil du søge efter pakker som indeholder disse filer og fjerne dem nu?" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Dagligt" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "Søg" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Ugentligt" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Månedligt" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Aldrig" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "Den følgende pakke vil blive fjernet" -msgstr[1] "De følgende pakker vil blive fjernet" +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Kun sikkerhed" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "Filen kunne ikke findes i nogen installeret pakke" -msgstr[1] "Filerne kunne ikke findes i nogen installeret pakke" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Alle opdateringer" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "Kunne ikke finde %1" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Ingen" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Sætning af oprindelsesdata mislykkedes" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2715,139 +3322,6 @@ msgid "Package file to install" msgstr "Pakkefil der skal installeres" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Elementet understøttes ikke af din motor, eller det er ikke en fil." -msgstr[1] "" -"Disse elementer understøttes ikke af din motor, eller de er ikke filer." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Umuligt at installere" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Installér" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Vil du installere denne fil?" -msgstr[1] "Vil du installere disse filer?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Installér?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Filen blev ikke installeret" -msgstr[1] "Filerne blev ikke installerede" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Installation af fil mislykkedes" -msgstr[1] "Installation af filer mislykkedes" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Filen blev installeret" -msgstr[1] "Filerne blev installerede" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "En fejl opstod." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "En yderligere pakke kræves:" -msgstr[1] "Yderligere pakker kræves:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Vil du søge efter og installere denne pakke nu?" -msgstr[1] "Vil du søge efter og installere disse pakker nu?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Et program vil installere en pakke" -msgstr[1] "Et program vil installere pakker" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 vil installere en pakke" -msgstr[1] "%1 vil installere pakker" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installér" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Kunne ikke starte afhængighedsløser-transaktion" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Pakken kunne ikke findes i nogen softwarekilde" -msgstr[1] "Pakkerne kunne ikke findes i nogen softwarekilde" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                %1
                Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Et yderligere program kræves for at åbne denne type fil:
                %1
                Vil du " -"søge efter et program der kan åbne denne filtype nu?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Et program kræver en ny MIME-type" -msgstr[1] "Et program kræver nye MIME-typer" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 kræver en ny MIME-type" -msgstr[1] "%1 kræver nye MIME-typer" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Søg" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Søgning efter \"leverer\" mislykkedes" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Program som kan åbne denne filtype" -msgstr[1] "Programmer som kan åbne denne filtype" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Ingen nye programmer kan findes til at håndtere denne filtype" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Fandt ikke software" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2858,19 +3332,19 @@ msgid "Your emails" msgstr "mschlander@opensuse.org" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Vælg alle opdateringer" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Genopfrisk" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2908,392 +3382,453 @@ msgid "Required by" msgstr "Kræves af" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Tilføj og fjern software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Gennemsøg pakker" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtre" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Alle pakker" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - transaktion" +msgid "Transaction" +msgstr "Transaktion" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ikon" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Downloader pakker" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Et bibliotek til at gøre foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TekstEtiket" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "Yderligere ændringer kræves for at gennemføre opgaven" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Handlinger" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TekstEtiket" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Softwarekildenavn:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Signatur-URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Signatur-brugeridentificering:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Signaturidentificering:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Kan du genkende denne bruger, og stoler du på denne nøgle?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Stoler du på pakkernes oprindelsessted?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Læs følgende vigtige information før du fortsætter:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Indstillinger" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Indstillinger for KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Tjek efter opdateringer:" +msgid "Update settings" +msgstr "Opdateringsindstillinger" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Installér automatisk:" +msgid "Check for updates:" +msgstr "Tjek efter opdateringer:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Smart statusikon" +msgid "Automatically install:" +msgstr "Installér automatisk:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Bekendtgør når opdateringer er tilgængelige" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Bekendtgør når langvarige opgaver er gennemført" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "Oprindelsessted for pakker" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "Vi&s oprindelsessted for debug- og udviklingspakker" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Om backend" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Backend-navn:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "Backend-navn her" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Backend-udvikler:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "Find ved &beskrivelse" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "Backend-udviklerens navn her" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "Backend-navn her" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Pakken er synlig" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Nyeste" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "GUI" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Fri software" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Supporteret" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Metoder" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "HentOpdateringer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "OpdatérPakke" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "HentSoftwarekildeListe" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "GenopfriskCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "InstallérPakke" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "AktivérSoftwarekilde" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "OpdatérSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "FjernPakke" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "SoftwarekildeSætAktiveret" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "SøgNavn" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "HentAfhængigheder" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "HvadLeverer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "SøgeDetaljer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "HentKrav" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "HentPakker" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "SøgGruppe" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "HentOpdateringDetaljer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "SøgFil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "HentBeskrivelse" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "HentFiler" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Løs" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "InstallérFil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "SimulateUpdatePackages" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Hentede gamle transaktioner" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Elementet understøttes ikke af din motor, eller det er ikke en fil." +#~ msgstr[1] "" +#~ "Disse elementer understøttes ikke af din motor, eller de er ikke filer." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "En yderligere pakke kræves:" +#~ msgstr[1] "Yderligere pakker kræves:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Vil du søge efter og installere denne pakke nu?" +#~ msgstr[1] "Vil du søge efter og installere disse pakker nu?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                %1
                Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Et yderligere program kræves for at åbne denne type fil:
                %1
                Vil " +#~ "du søge efter et program der kan åbne denne filtype nu?" + +#~ msgid "All packages" +#~ msgstr "Alle pakker" + +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Du har ikke de nødvendige privilegier til at udføre denne handling." + +#~ msgid "Package Name" +#~ msgstr "Pakkenavn" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Indstillinger for KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Smart statusikon" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Bekendtgør når langvarige opgaver er gennemført" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - transaktion" + +#~ msgid "A library to do foo" +#~ msgstr "Et bibliotek til at gøre foo" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Følgende pakker vil også blive installeret pga. afhængigheder" @@ -3306,9 +3841,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Følgende pakke skal også fjernes/installeres:" -#~ msgid "Failed to update package lists" -#~ msgstr "Opdatering af pakkelister mislykkedes" - #~ msgid "Failed to refresh package lists" #~ msgstr "Genopfriskning af pakkelister mislykkedes" diff -Nru kpackagekit-0.5.4/po/de/kpackagekit.po kpackagekit-0.6.0/po/de/kpackagekit.po --- kpackagekit-0.5.4/po/de/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/de/kpackagekit.po 2010-01-30 09:00:12.000000000 +0000 @@ -4,19 +4,20 @@ # Sebastian Vahl , 2008. # Thomas Reitelbach , 2008. # Burkhard Lück , 2008, 2009. +# Panagiotis Papadopoulos , 2009. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-06-12 18:34+0200\n" -"Last-Translator: Burkhard Lück \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-11-07 15:06+0100\n" +"Last-Translator: Panagiotis Papadopoulos \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 0.3\n" +"X-Generator: Lokalize 1.0\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -29,11 +30,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Details" @@ -94,30 +95,30 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "Distribution upgrade complete." msgstr "Informationen für eine Distributionserneuerung werden ermittelt" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "The distribution upgrade process failed to start." msgstr "Informationen für eine Distributionserneuerung werden ermittelt" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" @@ -207,28 +208,24 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Paketname" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Webseite" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Lizenz" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Gruppe" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Webseite" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Größe" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "" @@ -240,199 +237,199 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Suchen" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Alle Pakete" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 #, fuzzy #| msgctxt "The transaction state" #| msgid "Testing changes" msgid "List of changes" msgstr "Änderungen werden überprüft" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Gruppe:" msgstr[1] "Gruppen:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Abbrechen" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Nach &Namen suchen" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Nach Date&inamen suchen" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Nach &Beschreibung suchen" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 #, fuzzy #| msgid "Change Log" msgid "Review Changes" msgstr "Änderungsprotokoll" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Sammlungen" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Nur Sammlungen" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Sammlungen ausschließen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installierte" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Nur installierte" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Nur verfügbare" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Kein Filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Entwicklung" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Nur Entwicklung" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Nur Dateien für Endanwender" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafisch" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Nur grafisch" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Nur Text" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Frei" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Nur freie Software" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Nur proprietäre Software" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architekturen" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Nur native Architekturen" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Nur nicht-native Architekturen" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Quelltext" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Nur Quelltext" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Nur Quelltextfrei" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Unterpakete ausblenden" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Nur ein Paket anzeigen, keine Unterpakete" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Nur neueste Pakete" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Nur das neueste verfügbare Paket anzeigen" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "In Gruppen anzeigen" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Pakete in Gruppen abhängig von Ihrem Status anzeigen" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Das folgende Paket wird installiert:" msgstr[1] "Die folgenden Pakete werden installiert:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Jetzt installieren" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Das folgende Paket wird entfernt:" msgstr[1] "Die folgenden Pakete werden entfernt:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 #, fuzzy #| msgid "Removing" msgid "Remove Now" msgstr "Entfernen" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 #, fuzzy #| msgid "The following packages also have to be removed/installed:" msgid "The following package will be removed and installed:" @@ -440,48 +437,61 @@ msgstr[0] "Die folgenden Pakete wurden ebenfalls entfernt oder installiert:" msgstr[1] "Die folgenden Pakete wurden ebenfalls entfernt oder installiert:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Jetzt anwenden" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Getting package lists" +msgid "Failed to simulate package removal" +msgstr "Paketliste wird abgerufen" + +#: libkpackagekit/KpkReviewChanges.cpp:187 #, fuzzy #| msgid "Sorry, your backend does not support removing packages" msgid "The current backend does not support removing packages." msgstr "" "Das Entfernen von Paketen wird vom Hintergrundprogramm nicht unterstützt." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit-Fehler" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Getting package lists" +msgid "Failed to simulate package install" +msgstr "Paketliste wird abgerufen" + +#: libkpackagekit/KpkReviewChanges.cpp:224 #, fuzzy #| msgid "Sorry, your backend does not support installing packages" msgid "Current backend does not support installing packages." msgstr "" "Das Installieren von Paketen wird vom Hintergrundprogramm nicht unterstützt." -#: libkpackagekit/KpkReviewChanges.cpp:217 -#, fuzzy -#| msgid "Failed to create a thread" -msgid "Failed to remove package" -msgstr "Fehler beim Erzeugen eines Threads" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Failed to install package" msgstr "1 installiertes Paket" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +#, fuzzy +#| msgid "Failed to create a thread" +msgid "Failed to remove package" +msgstr "Fehler beim Erzeugen eines Threads" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Ausblenden" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 #, fuzzy #| msgid "Allows you to hide the window but keeps running transaction task" msgid "" @@ -490,20 +500,20 @@ "Ermöglicht das Verstecken des Fensters ohne die laufenden Transaktionen " "abzubrechen" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 #, fuzzy #| msgid "Installing signature" msgid "Installing unsigned software" msgstr "Signatur wird installiert" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 #, fuzzy #| msgid "
                A system reboot is required" msgid "A media change is required" @@ -527,7 +537,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Zustimmung zur Lizenzvereinbarung erforderlich" @@ -542,13 +552,13 @@ msgid "Version" msgstr "Neue Version" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Abbrechen" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Beendet in %1." @@ -607,435 +617,517 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Softwaresignatur erforderlich" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Unbekannter Status" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Warten auf Start des Dienstes" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Warten auf andere Vorgänge" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Vorgang läuft" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Abfrage läuft" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Informationen werden abgefragt" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Pakete werden entfernt" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Pakete werden heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Pakete installieren" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Softwareliste wird aktualisiert" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Pakete werden aktualisiert" -#: libkpackagekit/KpkStrings.cpp:53 +#: libkpackagekit/KpkStrings.cpp:65 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Paketen werden aktualisiert" -#: libkpackagekit/KpkStrings.cpp:55 +#: libkpackagekit/KpkStrings.cpp:68 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Paketen werden aktualisiert" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Abhängigkeiten werden aufgelöst" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Signaturen werden überprüft" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Änderungen werden zurückgenommen" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Änderungen werden überprüft" -#: libkpackagekit/KpkStrings.cpp:65 +#: libkpackagekit/KpkStrings.cpp:83 #, fuzzy #| msgid "Committing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Änderungen werden festgelegt" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Daten werden angefordert" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Beendet" -#: libkpackagekit/KpkStrings.cpp:71 +#: libkpackagekit/KpkStrings.cpp:92 #, fuzzy #| msgid "Cancelling" -msgctxt "The transaction state" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Abbruch ..." -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Archivinformationen werden heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Paketliste wird heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Dateiliste wird heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:79 +#: libkpackagekit/KpkStrings.cpp:104 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Paketliste wird heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" -msgstr "Guppen werden heruntergeladen" +msgstr "Gruppen werden heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Aktualisierungsinformationen werden heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:85 +#: libkpackagekit/KpkStrings.cpp:113 #, fuzzy #| msgid "Repackaging files" -msgctxt "The transaction state" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Dateien werden umgepackt" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Zwischenspeicher wird geladen" -#: libkpackagekit/KpkStrings.cpp:89 +#: libkpackagekit/KpkStrings.cpp:119 #, fuzzy #| msgid "Scanning installed applications" -msgctxt "The transaction state" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Installierte Anwendungen werden ermittelt" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Paketliste wird erzeugt" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Warten auf andere Vorgänge" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Dateien werden umgepackt" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Aktualisiert" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installiert" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Entfernt" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 #, fuzzy #| msgid "Cleaning Up" msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Aufräumen ..." -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 #, fuzzy #| msgid "Obsoletes" msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Veraltete Pakete" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Unbekannte Gruppe" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Abhängigkeiten werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Aktualisierungsdetails werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Details werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 #, fuzzy #| msgid "Getting requires" msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Abhängigkeiten werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Aktualisierungen werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Details werden gesucht" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Datei wird gesucht" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Gruppen werden gesucht" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Paketnamen werden gesucht" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 #, fuzzy #| msgid "Removing" msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Entfernen" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 #, fuzzy #| msgid "Installing" msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installieren ..." -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Datei wird installiert" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Paket-Zwischenspeicher wird aktualisiert" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Pakete werden aktualisiert" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "System wird aktualisiert" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Abbruch" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Änderungen werden zurückgenommen" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Liste der Softwarequellen wird abgerufen" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Softwarequelle wird aktiviert" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Daten der Softwarequelle werden gesetzt" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Auflösung ..." -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 #, fuzzy #| msgid "File List" msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Dateiliste" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Aktualisierungen werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Signatur wird installiert" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Paketliste wird abgerufen" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "EULA wird akzeptiert" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Pakete werden heruntergeladen" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Informationen für eine Distributionserneuerung werden ermittelt" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Aktualisierungen werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 #, fuzzy #| msgid "Getting information" msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Informationen werden abgefragt" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Fehler beim Initialisieren" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Package file to install" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Zu installierende Paketdatei" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Searching by package name" @@ -1043,7 +1135,7 @@ msgid "Simulating the remove" msgstr "Paketnamen werden gesucht" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -1051,234 +1143,234 @@ msgid "Simulating the update" msgstr "1 wichtige Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Unbekannte Gruppe" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 #, fuzzy #| msgid "Getting dependencies" msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Abhängigkeiten werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 #, fuzzy #| msgid "Getting update detail" msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Aktualisierungsdetails werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 #, fuzzy #| msgid "Getting details" msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Details werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 #, fuzzy #| msgid "Getting requires" msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Abhängigkeiten werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Aktualisierungen werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 #, fuzzy #| msgid "Search package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Nach Paketnamen suchen" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 #, fuzzy #| msgid "Searching for file" msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Datei wird gesucht" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Gruppen werden gesucht" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 #, fuzzy #| msgid "Searching for package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Paketnamen werden gesucht" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 #, fuzzy #| msgid "Failed to create a thread" msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Fehler beim Erzeugen eines Threads" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Installierte Pakete" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 #, fuzzy #| msgid "Installing file" msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Datei wird installiert" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Paket-Zwischenspeicher wird aktualisiert" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 #, fuzzy #| msgid "Updating packages" msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Paketen werden aktualisiert" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 #, fuzzy #| msgid "Update System" msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "System aktualisieren" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Abgebrochen" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 #, fuzzy #| msgid "Rolling back" msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Änderungen werden zurückgenommen" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 #, fuzzy #| msgid "Getting list of repositories" msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Liste der Softwarequellen wird abgerufen" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Softwarequelle wird aktiviert" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Daten der Softwarequelle werden gesetzt" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Auflösung ..." -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 #, fuzzy #| msgid "File List" msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Dateiliste" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Aktualisierungen werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Signatur wird installiert" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Paketliste wird abgerufen" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "EULA wird akzeptiert" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Pakete herunterladen" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Informationen für eine Distributionserneuerung werden ermittelt" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Aktualisierungen werden abgerufen" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 #, fuzzy #| msgid "Transactions" msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Transaktionen" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Fehler beim Initialisieren" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Fehler beim Initialisieren" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Searching by package name" @@ -1286,274 +1378,286 @@ msgid "Simulated the remove" msgstr "Paketnamen werden gesucht" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to create a thread" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Fehler beim Erzeugen eines Threads" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Keine Netzwerkverbindung verfügbar" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Kein Paket-Zwischenspeicher verfügbar" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Nicht genügend Arbeitsspeicher" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Fehler beim Erzeugen eines Threads" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Keine Unterstützung vom Hintergrundprogramm" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Ein interner Systemfehler ist aufgetreten" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Eine Vertrauensbeziehung ist nicht verfügbar" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Das Paket ist nicht installiert" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Das Paket ist nicht auffindbar" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Das Paket ist bereits installiert" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Herunterladen des Pakets fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Die Gruppe ist nicht auffindbar" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Die Gruppenliste ist ungültig" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Auflösung der Abhängigkeit fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Der Suchfilter ist ungültig" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Die Paketidentifikation ist ungültig zusammengesetzt" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Transaktionsfehler" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Name der Softwarequelle nicht gefunden" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Ein geschütztes Systempaket kann nicht entfernt werden" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Der Vorgang wurde abgebrochen" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Der Abbruch des Vorgangs wurde erzwungen" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Das Lesen der Konfigurationsdatei fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Der Vorgang kann nicht abgebrochen werden" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Paket-Quellen können nicht installiert werden" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Das Zustimmen zur Lizenz schlug fehl" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokaler Dateikonflikt zwischen Paketen" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Die Pakete sind nicht kompatibel" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Verbindungensprobleme mit einer Softwarequelle" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Fehler beim Initialisieren" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Fehler beim Finalisieren" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Sperrung nicht möglich" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Keine Pakete für Aktualisierung verfügbar" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Einstellungen der Softwarequelle können nicht gespeichert werden" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokale Installation fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Ungültige GPG-Signatur" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Fehlende GPG-Signatur" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Die Einrichtung der Softwarequelle ist ungültig" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Ungültige Paketdatei" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Installation des Pakets blockiert" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Das Paket ist beschädigt" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Alle Pakete sind bereits installiert" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Die angegebene Datei kann nicht gefunden werden" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Keine weiteren Spiegelserver verfügbar" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "No distribution upgrade data is available" msgstr "Informationen für eine Distributionserneuerung werden ermittelt" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "Package is incompatible with this system" msgstr "Das angeforderte Paket ist bereits installiert." -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 #, fuzzy #| msgid "Authentication failed" msgid "Authorization failed" msgstr "Authentifizierung fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Das Paket ist nicht auffindbar" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot install from untrusted origin" msgstr "" +"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " +"Softwarequellen gefunden." -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot update from untrusted origin" msgstr "" +"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " +"Softwarequellen gefunden." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgid "File List" msgid "Cannot get the file list" msgstr "Dateiliste" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "
                A system reboot is required" msgid "Cannot get package requires" msgstr "
                Ein Neustart des Rechners ist erforderlich" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Herunterladen des Pakets fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Zu installierende Paketdatei" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Zu installierende Paketdatei" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Zu installierende Paketdatei" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Zu installierende Paketdatei" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Unbekannter Fehler" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1561,7 +1665,7 @@ "Netzwerkverbindung nicht verfügbar.\n" "Bitte überprüfen Sie Ihre Netzwerkeinstellungen und Sie probieren es erneut." -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1569,7 +1673,7 @@ "Die Paketliste muss neu aufgebaut werden.\n" "Dies sollte normalerweise automatisch durch das Hintergrundprogramm erfolgen." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 #, fuzzy #| msgid "" #| "The service that is responsible for handling user requests is out of " @@ -1584,12 +1688,12 @@ "Speicher mehr verfügbar.\n" "Bitte starten Sie Ihren Rechner neu." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Es kann kein Thread erzeugt werden, um die Nutzeranfrage zu bearbeiten." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1597,7 +1701,7 @@ "Die Aktion wird von diesem Hintergrundprogramm nicht unterstützt.\n" "Dies sollte normalerweise nicht passieren. Bitte melden Sie den Fehler." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1605,40 +1709,40 @@ "Es ist ein unerwarteter Fehler aufgetreten.\n" "Bitte melden Sie das Problem mit der Fehlerbeschreibung." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with software source.\n" #| "Please check your security settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Es besteht keine Vertrauensbeziehung zur Softwarequelle.\n" "Bitte überprüfen Sie Ihre Sicherheitseinstellungen." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Das zu entfernende oder aktualisierende Paket ist nicht installiert." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Das zu verändernde Paket wurde nicht auf dem System oder in einer der " "Softwarequellen gefunden." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Das angeforderte Paket ist bereits installiert." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1646,7 +1750,7 @@ "Herunterladen des Pakets fehlgeschlagen.\n" "Bitte überprüfen Sie Ihre Netzwerkverbindung." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1654,7 +1758,7 @@ "Der Typ der Gruppe wurde nicht gefunden.\n" "Bitte überprüfen Sie Ihre Gruppenliste und versuchen Sie es erneut." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1662,7 +1766,7 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Die Gruppenliste kann nicht geladen werden.\n" @@ -1670,7 +1774,7 @@ "Üblicherweise handelt es sich hierbei um einen durch eine Softwarequelle " "verursachten Fehler." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 #, fuzzy #| msgid "" #| "A package could not be found that allows the task to complete.\n" @@ -1683,11 +1787,11 @@ "gefunden.\n" "Nähere Informationen können dem detaillierten Fehlerbericht entnommen werden." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Der Suchfilter ist ungültig." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 #, fuzzy #| msgid "" #| "The package identifier was not well formed when sent to the server.\n" @@ -1701,7 +1805,7 @@ "Dies deutet normalerweise auf einen internen Fehler hin und sollte gemeldet " "werden." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 #, fuzzy #| msgid "" #| "An unspecified task error has occurred.\n" @@ -1713,29 +1817,29 @@ "Ein nicht näher spezifizierter Fehler ist aufgetreten.\n" "Nähere Informationen können dem detaillierten Fehlerbericht entnommen werden." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Die entfernte Softwarequelle wurde nicht gefunden.\n" "Möglicherweise müssen Sie einen Eintrag der Softwarequelle aktivieren." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Das Entfernen eines geschützten Systempakets ist nicht erlaubt." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "" "Der Vorgang wurde erfolgreich abgebrochen und es wurden keine Pakete " "verändert." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1744,7 +1848,7 @@ "verändert.\n" "Das Hintergrundprogramm wurde nicht ordnungsgemäß beendet." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 #, fuzzy #| msgid "" #| "The native package configuration file could not be opened.\n" @@ -1756,11 +1860,11 @@ "Die native Paket-Einrichtungsdatei kann nicht geöffnet werden.\n" "Vergewissern Sie sich, dass die Einstellungen gültig sind." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Es ist nicht sicher, den Vorgang zu diesem Zeitpunkt abzubrechen." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1770,7 +1874,7 @@ "Bitte überprüfen Sie die Erweiterung der Datei, die installiert werden " "sollte." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1778,39 +1882,39 @@ "Der Lizenzvereinbarung wurde nicht zugestimmt.\n" "Um diese Software verwenden zu dürfen, müssen Sie der Lizenz zustimmen." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Zwei Pakete enthalten die gleiche Datei.\n" "Dieses Problem kann beim Mischen von Paketen aus unterschiedlichen " "Softwarequellen auftreten." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Es existieren mehrere Pakete, die nicht miteinander kompatibel sind.\n" "Dieses Problem kann beim Mischen von Paketen aus unterschiedlichen " "Softwarequellen auftreten." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software source\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Es trat ein (möglicherweise temporäres) Problem beim Verbinden mit einer " @@ -1818,7 +1922,7 @@ "Bitte lesen Sie den detaillierten Fehlerbericht, um weitere Einzelheiten zu " "erfahren." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1827,7 +1931,7 @@ "aufgetreten.\n" "Dies kann beim mehrfachen Aufruf des Paketmanager geschehen." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1836,7 +1940,7 @@ "aufgetreten.\n" "Dieser Fehler kann üblicherweise ignoriert werden." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1845,15 +1949,15 @@ "Bitte beenden Sie alle anderen Programme, die auf den Paketmanager zugreifen " "könnten." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Keines der ausgewählten Pakete kann aktualisiert werden." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Die Konfiguration der Softwarequelle konnte nicht verändert werden." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1861,11 +1965,11 @@ "Die Installation der lokalen Datei ist fehlgeschlagen.\n" "Weitere Informationen entnehmen Sie bitte dem detaillierten Fehlerbericht." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Die Signatur des Pakets kann nicht bestätigt werden." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1874,13 +1978,13 @@ "vertrauenswürdig.\n" "Dieses Paket wurde beim Erstellen nicht mit einem GPG-Schlüssel signiert." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "" "Die Konfiguration der Softwarequelle ist ungültig und kann nicht gelesen " "werden." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1889,7 +1993,7 @@ "Die Paketdatei ist fehlerhaft oder es handelt sich nicht um ein gültiges " "Paketformat." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 #, fuzzy #| msgid "" #| "Installation of this package prevented by your packaging system's " @@ -1901,19 +2005,19 @@ "Die Installation des Pakets wurde von den Einstellungen des Paketmanagers " "verhindert." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "Das heruntergeladene Paket ist fehlerhaft und muss erneut heruntergeladen " "werden." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Alle ausgewählten Pakete sind bereits auf dem System installiert." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 #, fuzzy #| msgid "" #| "The specified file could not be found on the system.\n" @@ -1926,21 +2030,21 @@ "Vergewissern Sie sich, dass die Datei noch existiert und nicht " "zwischenzeitlich gelöscht wurde." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Die angeforderten Daten konnten in keiner der eingestellten Softwarequellen " "gefunden werden.\n" "Es existieren keine weiteren Spiegelserver." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " @@ -1948,80 +2052,80 @@ #| "There were no more download mirrors that could be tried." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Die angeforderten Daten konnten in keiner der eingestellten Softwarequellen " "gefunden werden.\n" "Es existieren keine weiteren Spiegelserver." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Das angeforderte Paket ist bereits installiert." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "" "Das zu verändernde Paket wurde nicht auf dem System oder in einer der " "Softwarequellen gefunden." -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "" "Das zu verändernde Paket wurde nicht auf dem System oder in einer der " "Softwarequellen gefunden." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The specified file could not be found" msgid "The file list is not available for this package." msgstr "Die angegebene Datei kann nicht gefunden werden" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Die angegebene Datei kann nicht gefunden werden" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package could not be found that allows the task to complete.\n" @@ -2034,7 +2138,7 @@ "gefunden.\n" "Nähere Informationen können dem detaillierten Fehlerbericht entnommen werden." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2046,7 +2150,7 @@ "Die Installation der lokalen Datei ist fehlgeschlagen.\n" "Weitere Informationen entnehmen Sie bitte dem detaillierten Fehlerbericht." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2058,7 +2162,7 @@ "Die Installation der lokalen Datei ist fehlgeschlagen.\n" "Weitere Informationen entnehmen Sie bitte dem detaillierten Fehlerbericht." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2070,7 +2174,7 @@ "Die Installation der lokalen Datei ist fehlgeschlagen.\n" "Weitere Informationen entnehmen Sie bitte dem detaillierten Fehlerbericht." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2082,7 +2186,7 @@ "Die Installation der lokalen Datei ist fehlgeschlagen.\n" "Weitere Informationen entnehmen Sie bitte dem detaillierten Fehlerbericht." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -2091,257 +2195,257 @@ "Bitte lesen Sie den detaillierten Fehlerbericht, um weitere Einzelheiten zu " "erfahren. " -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Zugangshilfen" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Dienstprogramme" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Lernprogramme" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Spiele" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafik" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Büroprogramme" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Andere" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Entwicklung" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "System" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME-Arbeitsumgebung" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE-Arbeitsumgebung" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE-Arbeitsumgebung" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Andere Arbeitsumgebungen" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 #, fuzzy #| msgid "Publishing" msgctxt "The group type" msgid "Publishing" msgstr "Schreiben und Publizieren" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Server" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Schriftarten" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Systemwerkzeuge" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 #, fuzzy #| msgid "Legacy" msgctxt "The group type" msgid "Legacy" msgstr "Altsystem" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 #, fuzzy #| msgid "Localization" msgctxt "The group type" msgid "Localization" msgstr "Lokalisierung" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualisierung" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Sicherheit" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Energieverwaltung" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Kommunikation" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Netzwerk" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Karten" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Software-Quellen" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Wissenschaft" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentation" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 #, fuzzy #| msgid "Electronics" msgctxt "The group type" msgid "Electronics" msgstr "Elektronik" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 #, fuzzy #| msgid "Package collections" msgctxt "The group type" msgid "Package collections" msgstr "Paketsammlungen" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 #, fuzzy #| msgid "Only newest packages" msgctxt "The group type" msgid "Newest packages" msgstr "Nur neueste Pakete" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Unbekannte Gruppe" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Einfache Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normale Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Wichtige Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Sicherheitsrelevante Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Fehlerkorrektur" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 #, fuzzy #| msgid "Enhancement update" msgctxt "The type of update" msgid "Enhancement update" msgstr "Erweiterungs-Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 #, fuzzy #| msgid "Blocked update" msgctxt "The type of update" msgid "Blocked update" msgstr "Blockierte Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 #, fuzzy #| msgid "Installed" msgctxt "The type of update" msgid "Installed" msgstr "Installierte" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Verfügbar" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Unbekannte Aktualisierung" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 einfache Aktualisierung" msgstr[1] "%1 einfache Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2349,70 +2453,70 @@ msgstr[0] "1 Aktualisierung" msgstr[1] "%1 Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 wichtige Aktualisierung" msgstr[1] "%1 wichtige Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 sicherheitsrelevante Aktualisierung" msgstr[1] "%1 sicherheitsrelevante Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 Fehlerkorrektur" msgstr[1] "%1 Fehlerkorrekturen" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 Erweiterungs-Aktualisierung" msgstr[1] "%1 Erweiterungs-Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blockierte Aktualisierung" msgstr[1] "%1 blockierte Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 installiertes Paket" msgstr[1] "%1 installierte Pakete" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 verfügbares Paket" msgstr[1] "%1 verfügbare Pakete" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 unbekannte Aktualisierung" msgstr[1] "%1 unbekannte Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 einfache Aktualisierung ausgewählt" msgstr[1] "%1 einfache Aktualisierungen ausgewählt" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2420,28 +2524,28 @@ msgstr[0] "1 Aktualisierung ausgewählt" msgstr[1] "%1 Aktualisierungen ausgewählt" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 wichtige Aktualisierung ausgewählt" msgstr[1] "%1 wichtige Aktualisierungen ausgewählt" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 sicherheitsrelevante Aktualisierung ausgewählt" msgstr[1] "%1 sicherheitsrelevante Aktualisierungen ausgewählt" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 Fehlerkorrektur ausgewählt" msgstr[1] "%1 Fehlerkorrekturen ausgewählt" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2450,7 +2554,7 @@ msgstr[0] "1 Erweiterungs-Aktualisierung" msgstr[1] "%1 Erweiterungs-Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2459,7 +2563,7 @@ msgstr[0] "1 installiertes Paket" msgstr[1] "%1 installierte Pakete" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "All packages are already installed" msgid "1 available package selected to be installed" @@ -2467,14 +2571,14 @@ msgstr[0] "Alle Pakete sind bereits installiert" msgstr[1] "Alle Pakete sind bereits installiert" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 einfache Aktualisierung" msgstr[1] "%1 einfache Aktualisierungen, %2 ausgewählt" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2482,28 +2586,28 @@ msgstr[0] "%1 Aktualisierung" msgstr[1] "%1 Aktualisierungen, %2 ausgewählt" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 wichtige Aktualisierung" msgstr[1] "%1 wichtige Aktualisierungen, %2 ausgewählt" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 sicherheitsrelevante Aktualisierung" msgstr[1] "%1 sicherheitsrelevante Aktualisierungen, %2 ausgewählt" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 Fehlerkorrektur" msgstr[1] "%1 Fehlerkorrekturen, %2 ausgewählt" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2512,7 +2616,7 @@ msgstr[0] "1 Erweiterungs-Aktualisierung" msgstr[1] "%1 Erweiterungs-Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, fuzzy, kde-format #| msgid "1 blocked update" #| msgid_plural "%1 blocked updates" @@ -2521,7 +2625,7 @@ msgstr[0] "1 blockierte Aktualisierung" msgstr[1] "%1 blockierte Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2530,7 +2634,7 @@ msgstr[0] "1 installiertes Paket" msgstr[1] "%1 installierte Pakete" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2539,18 +2643,18 @@ msgstr[0] "1 verfügbares Paket" msgstr[1] "%1 verfügbare Pakete" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 unbekannte Aktualisierung" msgstr[1] "%1 unbekannte Aktualisierungen" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Es ist kein Neustart erforderlich" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to restart this application" @@ -2558,7 +2662,7 @@ "Nach dieser Aktualisierung ist eine Abmeldung und Wiederanmeldung am System " "erforderlich" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in" @@ -2566,13 +2670,13 @@ "Nach dieser Aktualisierung ist eine Abmeldung und Wiederanmeldung am System " "erforderlich" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 #, fuzzy #| msgid "Software signature is required" msgid "A restart will be required" msgstr "Softwaresignatur erforderlich" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." @@ -2580,25 +2684,25 @@ "Nach dieser Aktualisierung ist eine Abmeldung und Wiederanmeldung am System " "erforderlich" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "Software signature is required" msgid "A restart will be required due to a security update." msgstr "Softwaresignatur erforderlich" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 #, fuzzy #| msgid "Software signature is required" msgid "No restart is required" msgstr "Softwaresignatur erforderlich" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "Software signature is required" msgid "A restart is required" msgstr "Softwaresignatur erforderlich" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You need to log out and log back in" @@ -2606,11 +2710,11 @@ "Nach dieser Aktualisierung ist eine Abmeldung und Wiederanmeldung am System " "erforderlich" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You need to log out and log back in to remain secure." @@ -2618,236 +2722,455 @@ "Nach dieser Aktualisierung ist eine Abmeldung und Wiederanmeldung am System " "erforderlich" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "Software signature is required" msgid "A restart is required to remain secure." msgstr "Softwaresignatur erforderlich" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabil" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Instabil" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testing" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "Der Suchfilter ist ungültig" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "Die Gruppenliste ist ungültig" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Kein Paket-Zwischenspeicher verfügbar" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "Das Paket ist nicht installiert" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgctxt "The transaction state" #| msgid "Generating package lists" msgid "A newer package exists" msgstr "Paketliste wird erzeugt" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Could not find package" msgstr "1 installiertes Paket" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "Das Paket ist bereits installiert" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Herunterladen des Pakets fehlgeschlagen" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Ein geschütztes Systempaket kann nicht entfernt werden" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Die Signatur des Pakets kann nicht bestätigt werden." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." msgstr "Die Gruppenliste ist ungültig" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The package is not installed" msgid "The file is not valid." msgstr "Das Paket ist nicht installiert" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Could not talk to packagekitd." msgstr "1 installiertes Paket" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Unbekannter Fehler" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "" +msgid "" +"The following file is required:
                • %2
                Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                • %2
                Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, fuzzy, kde-format -#| msgid "You have one update:" -#| msgid_plural "You have %1 updates:" -msgid "
                And another update" -msgid_plural "
                And %1 more updates" -msgstr[0] "Es ist eine neue Aktualisierung verfügbar:" -msgstr[1] "Es sind %1 neue Aktualisierungen verfügbar:" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installieren" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to start search file transaction" +msgstr "Fehler beim Initialisieren" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The %1 package already provides this file" +msgstr "Das Paket ist bereits installiert" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Fehler beim Initialisieren" +msgstr[1] "Fehler beim Initialisieren" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +#, fuzzy +#| msgid "The following packages will also be installed as dependencies" +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "" +"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich " +"installiert." +msgstr[1] "" +"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich " +"installiert." + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Die angegebene Datei kann nicht gefunden werden" +msgstr[1] "Die angegebene Datei kann nicht gefunden werden" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Failed to find package" +msgstr "1 installiertes Paket" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, fuzzy, kde-format +#| msgid "You have one update:" +#| msgid_plural "You have %1 updates:" +msgid "
                And another update" +msgid_plural "
                And %1 more updates" +msgstr[0] "Es ist eine neue Aktualisierung verfügbar:" +msgstr[1] "Es sind %1 neue Aktualisierungen verfügbar:" + +#: SmartIcon/KpkUpdateIcon.cpp:216 #, fuzzy #| msgid "Trivial update" msgid "Review and update" msgstr "Einfache Aktualisierung" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Nicht jetzt" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Diese Nachfrage nicht mehr anzeigen" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 #, fuzzy #| msgid "
                Updates are being automatically installed" msgid "Updates are being automatically installed." msgstr "
                Aktualisierungen wurden automatisch installiert" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 #, fuzzy #| msgid "
                Updates are being automatically installed" msgid "Security updates are being automatically installed." msgstr "
                Aktualisierungen wurden automatisch installiert" -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +#, fuzzy +#| msgid "The following packages will also be removed for dependencies" +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "" +"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich entfernt." +msgstr[1] "" +"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich entfernt." + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "Distribution upgrade finished. " msgstr "Informationen für eine Distributionserneuerung werden ermittelt" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +#, fuzzy +#| msgid "Transactions" +msgid "Failed to start resolve transaction" +msgstr "Transaktionen" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgid "Transactions" +msgid "User canceled the transaction" +msgstr "Transaktionen" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Unbekannter Fehler" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                • %2
                Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                • %2
                Do you want to search " +"for and install these packages now?" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "1 installiertes Paket" +msgstr[1] "1 installiertes Paket" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "1 installiertes Paket" +msgstr[1] "1 installiertes Paket" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installieren" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Das Paket ist bereits installiert" +msgstr[1] "Das Paket ist bereits installiert" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Failed to install packages" +msgstr "1 installiertes Paket" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " +"Softwarequellen gefunden." +msgstr[1] "" +"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " +"Softwarequellen gefunden." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "%1 kann nicht gefunden werden" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2874,243 +3197,304 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt und andere Sachen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Transaktionen" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Refresh Packages List" -msgid "Refresh package list" -msgstr "Paketliste aktualisieren" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy -#| msgid "Updates" -msgid "Show messages" -msgstr "Aktualisierungen" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format -#| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Paketname" -msgstr[1] "Paketname" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" -msgstr[0] "" -msgstr[1] "" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 #, fuzzy -#| msgid "The update has completed" -msgid "The system update has completed" -msgstr "Die Aktualisierung wurde fertiggestellt" +#| msgid "Search failed" +msgctxt "Search for packages" +msgid "Search" +msgstr "Suche fehlgeschlagen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 #, fuzzy -#| msgid "Restart" -msgctxt "Restart the computer" -msgid "Restart" -msgstr "Neustart" +#| msgid "Failed to initialize" +msgid "Failed to search for provides" +msgstr "Fehler beim Initialisieren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "%1" +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to find font" +msgstr "Fehler beim Finalisieren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend or it is not a file" +#| msgid_plural "" +#| "These items are not supported by your backend or they are not files" +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Dieser Eintrag wird vom Hintergrundprogramm nicht unterstützt oder ist keine " +"Datei" +msgstr[1] "" +"Diese Einträge werden vom Hintergrundprogramm nicht unterstützt oder sind " +"keine Dateien" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Installation nicht möglich" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Einstellungen von KPackageKit" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installieren" -#: Settings/KpkSettings.cpp:60 -#, fuzzy -#| msgid "Hourly" -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Stündlich" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#: Settings/KpkSettings.cpp:61 -#, fuzzy -#| msgid "Daily" -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Täglich" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Installieren?" -#: Settings/KpkSettings.cpp:62 +#: SmartIcon/PkInstallPackageFiles.cpp:149 #, fuzzy -#| msgid "Weekly" -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Wöchentlich" +#| msgid "The package is not installed" +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Das Paket ist nicht installiert" +msgstr[1] "Das Paket ist nicht installiert" -#: Settings/KpkSettings.cpp:63 +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 #, fuzzy -#| msgid "Monthly" -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Monatlich" +#| msgid "Failed to initialize" +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Fehler beim Initialisieren" +msgstr[1] "Fehler beim Initialisieren" -#: Settings/KpkSettings.cpp:64 -#, fuzzy -#| msgid "Never" -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Niemals" +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Es ist ein Fehler aufgetreten." -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Nur Sicherheitsrelevantes" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                • %2
                Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                • %2
                Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Alle Aktualisierungen" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:68 -#, fuzzy -#| msgid "None" -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Keine" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:164 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to set origin data" -msgstr "Fehler beim Initialisieren" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -#, fuzzy -#| msgid "The following packages will also be removed for dependencies" -msgid "The following file is required:" -msgid_plural "The following files are required:" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" msgstr[0] "" -"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich entfernt." msgstr[1] "" -"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich entfernt." -#: KPackageKit/KpkInstallProvideFile.cpp:50 -#, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Soll diese Datei installiert werden?" -msgstr[1] "Sollen diese Dateien installiert werden?" +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:57 +#: SmartIcon/PkInstallGStreamerResources.cpp:155 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Soll diese Datei installiert werden?" -msgstr[1] "Sollen diese Dateien installiert werden?" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, fuzzy, kde-format -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" msgstr[0] "Soll diese Datei installiert werden?" msgstr[1] "Sollen diese Dateien installiert werden?" -#: KPackageKit/KpkInstallProvideFile.cpp:68 +#: SmartIcon/PkInstallGStreamerResources.cpp:165 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Installieren" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Could not find plugin in any configured software source" +msgstr "" +"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " +"Softwarequellen gefunden." -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 +#: SmartIcon/PkInstallGStreamerResources.cpp:167 #, fuzzy #| msgid "Failed to initialize" -msgid "Failed to start search file transaction" +msgid "Failed to search for plugin" msgstr "Fehler beim Initialisieren" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "Das Paket ist bereits installiert" +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The file name could not be found in any software source" +msgstr "" +"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " +"Softwarequellen gefunden." -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Transaktionen" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy -#| msgid "The following packages will also be installed as dependencies" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" +#| msgid "Refresh Packages List" +msgid "Refresh package list" +msgstr "Paketliste aktualisieren" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +#, fuzzy +#| msgid "Updates" +msgid "Show messages" +msgstr "Aktualisierungen" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package Name" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paketname" +msgstr[1] "Paketname" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" msgstr[0] "" -"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich " -"installiert." msgstr[1] "" -"Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich " -"installiert." -#: KPackageKit/KpkInstallProvideFile.cpp:116 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 #, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Die angegebene Datei kann nicht gefunden werden" -msgstr[1] "Die angegebene Datei kann nicht gefunden werden" +#| msgid "The update has completed" +msgid "The system update has completed" +msgstr "Die Aktualisierung wurde fertiggestellt" -#: KPackageKit/KpkInstallProvideFile.cpp:118 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "Failed to find package" -msgstr "1 installiertes Paket" +#| msgid "Restart" +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Neustart" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Nicht jetzt" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following file is going to be removed:" @@ -3120,7 +3504,7 @@ msgstr[1] "" "Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich entfernt." -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -3129,14 +3513,14 @@ msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 #, fuzzy #| msgid "Search failed" msgctxt "Search for a package and remove" msgid "Search" msgstr "Suche fehlgeschlagen" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following package will be removed" @@ -3146,7 +3530,7 @@ msgstr[1] "" "Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich entfernt." -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -3154,232 +3538,220 @@ msgstr[0] "Die angegebene Datei kann nicht gefunden werden" msgstr[1] "Die angegebene Datei kann nicht gefunden werden" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "%1 kann nicht gefunden werden" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +msgid "" +"An additional program is required to open this type of file:
                • %1
                • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Updates" -msgid "Show updates" -msgstr "Aktualisierungen" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:47 -msgid "Show settings" -msgstr "Einstellungen anzeigen" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:48 +#: SmartIcon/PkInstallMimeTypes.cpp:68 #, fuzzy -#| msgid "Search package name" -msgid "Show backend details" -msgstr "Nach Paketnamen suchen" +#| msgid "Search failed" +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Suche fehlgeschlagen" -#: KPackageKit/main.cpp:49 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Mime type installer" -msgstr "Fehler beim Initialisieren" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" -#: KPackageKit/main.cpp:50 +#: SmartIcon/PkInstallMimeTypes.cpp:123 #, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "Zu installierende Paketdatei" +#| msgid "Failed to finalize" +msgid "Failed to find software" +msgstr "Fehler beim Finalisieren" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Package file to install" -msgid "Single file installer" -msgstr "Zu installierende Paketdatei" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                  Do you want to install this catalog?

                  • %2
                  " +msgid_plural "" +"

                  Do you want to install these catalogs?

                  • %2
                  " +msgstr[0] "Soll diese Datei installiert werden?" +msgstr[1] "Sollen diese Dateien installiert werden?" -#: KPackageKit/main.cpp:52 +#: SmartIcon/PkInstallCatalogs.cpp:58 #, fuzzy -#| msgctxt "The role of the transaction, in present tense" -#| msgid "Searching by package name" -msgid "Single package remover" -msgstr "Paketnamen werden gesucht" - -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Zu installierende Paketdatei" +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Jetzt installieren" +msgstr[1] "Jetzt installieren" -#: KPackageKit/KpkInstallFiles.cpp:81 +#: SmartIcon/PkInstallCatalogs.cpp:62 #, fuzzy -#| msgid "This item is not supported by your backend or it is not a file" -#| msgid_plural "" -#| "These items are not supported by your backend or they are not files" -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Dieser Eintrag wird vom Hintergrundprogramm nicht unterstützt oder ist keine " -"Datei" -msgstr[1] "" -"Diese Einträge werden vom Hintergrundprogramm nicht unterstützt oder sind " -"keine Dateien" - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Installation nicht möglich" - -#: KPackageKit/KpkInstallFiles.cpp:98 +#| msgid "Install" +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "Installieren" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Soll diese Datei installiert werden?" -msgstr[1] "Sollen diese Dateien installiert werden?" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Sorry, your backend does not support installing packages" +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Das Installieren von Paketen wird vom Hintergrundprogramm nicht unterstützt." -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Installieren?" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Keine Unterstützung vom Hintergrundprogramm" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Zu installierende Paketdatei" +msgstr[1] "Zu installierende Paketdatei" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 +#: SmartIcon/PkInstallCatalogs.cpp:148 #, fuzzy -#| msgid "The package is not installed" -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Das Paket ist nicht installiert" -msgstr[1] "Das Paket ist nicht installiert" +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Fehler beim Finalisieren" -#: KPackageKit/KpkInstallFiles.cpp:172 +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 #, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Fehler beim Initialisieren" -msgstr[1] "Fehler beim Initialisieren" +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Paket-Quellen können nicht installiert werden" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 +#: SmartIcon/PkInstallCatalogs.cpp:206 #, fuzzy -#| msgid "Failed to initialize" -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Fehler beim Initialisieren" -msgstr[1] "Fehler beim Initialisieren" +#| msgid "Transactions" +msgid "Failed to start setup transaction" +msgstr "Transaktionen" -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Es ist ein Fehler aufgetreten." +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Einstellungen von KPackageKit" -#: KPackageKit/KpkInstallPackageName.cpp:47 +#: Settings/KpkSettings.cpp:61 #, fuzzy -#| msgid "
                  A system reboot is required" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "
                  Ein Neustart des Rechners ist erforderlich" -msgstr[1] "
                  Ein Neustart des Rechners ist erforderlich" +#| msgid "Hourly" +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Stündlich" -#: KPackageKit/KpkInstallPackageName.cpp:50 +#: Settings/KpkSettings.cpp:62 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Soll diese Datei installiert werden?" -msgstr[1] "Sollen diese Dateien installiert werden?" +#| msgid "Daily" +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Täglich" -#: KPackageKit/KpkInstallPackageName.cpp:57 +#: Settings/KpkSettings.cpp:63 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "1 installiertes Paket" -msgstr[1] "1 installiertes Paket" +#| msgid "Weekly" +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Wöchentlich" + +#: Settings/KpkSettings.cpp:64 +#, fuzzy +#| msgid "Monthly" +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Monatlich" + +#: Settings/KpkSettings.cpp:65 +#, fuzzy +#| msgid "Never" +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Niemals" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "1 installiertes Paket" -msgstr[1] "1 installiertes Paket" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Nur Sicherheitsrelevantes" -#: KPackageKit/KpkInstallPackageName.cpp:68 +#: Settings/KpkSettings.cpp:68 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installieren" +#| msgid "All Updates" +msgid "All updates" +msgstr "Alle Aktualisierungen" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:69 #, fuzzy -#| msgid "Transactions" -msgid "Failed to start resolve transaction" -msgstr "Transaktionen" +#| msgid "None" +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Keine" -#: KPackageKit/KpkInstallPackageName.cpp:112 +#: Settings/KpkSettings.cpp:167 #, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " -"Softwarequellen gefunden." -msgstr[1] "" -"Das zu verändernde Paket wurde nicht auf dem System oder in einer der " -"Softwarequellen gefunden." +#| msgid "Failed to initialize" +msgid "Failed to set origin data" +msgstr "Fehler beim Initialisieren" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                  %1
                  Do " -"you want to search for a program to open this file type now?" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Updates" +msgid "Show updates" +msgstr "Aktualisierungen" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "Einstellungen anzeigen" -#: KPackageKit/KpkInstallMimeType.cpp:64 +#: KPackageKit/main.cpp:48 #, fuzzy -#| msgid "Search failed" -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Suche fehlgeschlagen" +#| msgid "Search package name" +msgid "Show backend details" +msgstr "Nach Paketnamen suchen" -#: KPackageKit/KpkInstallMimeType.cpp:78 +#: KPackageKit/main.cpp:49 #, fuzzy #| msgid "Failed to initialize" -msgid "Failed to search for provides" +msgid "Mime type installer" msgstr "Fehler beim Initialisieren" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "Zu installierende Paketdatei" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Package file to install" +msgid "Single file installer" +msgstr "Zu installierende Paketdatei" -#: KPackageKit/KpkInstallMimeType.cpp:108 +#: KPackageKit/main.cpp:52 #, fuzzy -#| msgid "Failed to finalize" -msgid "Failed to find software" -msgstr "Fehler beim Finalisieren" +#| msgctxt "The role of the transaction, in present tense" +#| msgid "Searching by package name" +msgid "Single package remover" +msgstr "Paketnamen werden gesucht" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Zu installierende Paketdatei" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" @@ -3393,7 +3765,7 @@ msgid "Your emails" msgstr "Details werden abgerufen" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3401,13 +3773,13 @@ msgid "Select all updates" msgstr "Sicherheitsrelevante Aktualisierung" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Aktualisieren" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3447,13 +3819,13 @@ msgid "Required by" msgstr "Wird benötigt von" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Hinzufügen und Entfernen von Software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 #, fuzzy @@ -3461,139 +3833,145 @@ msgid "Search packages" msgstr "Nach Paketnamen suchen" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filter" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Alle Pakete" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackagekit - Transaktion" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Transaktionen" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Aktion" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Pakete werden heruntergeladen" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Eine Bibliothek, die foo macht" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Aktion" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Name der Softwarequelle:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL der Signatur:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Schlüssel-Inhaber:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Schlüssel-Kennung:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Kennen Sie den Benutzer und vertrauen diesem Schlüssel?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Vertrauen Sie der Quelle dieser Pakete?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" "Bitte lesen Sie die folgenden wichtigen Informationen aufmerksam durch, " "bevor Sie fortfahren:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Einstellungen" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Einstellungen von KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Nach Aktualisierungen suchen:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "Aktualisieren ..." -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automatisch installieren:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Nach Aktualisierungen suchen:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Intelligentes Kontrollleistensymbol" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Automatisch installieren:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 #, fuzzy @@ -3601,33 +3979,29 @@ msgid "Notify when updates are available" msgstr "Benachrichtung bei neuen Aktualisierungen" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Benachrichtung nach Beendigung von zeitintensiven Vorgängen" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Herkunft der Pakete" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "Herkunft von Debug- und Entwicklerpaketen an&zeigen" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 #, fuzzy #| msgid "Package Name" msgid "Backend name:" @@ -3635,7 +4009,7 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package Name" msgid "backend name here" @@ -3643,13 +4017,21 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 #, fuzzy #| msgid "Package Name" msgid "Backend author:" msgstr "Paketname" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Description" +msgid "Backend description:" +msgstr "Beschreibung" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 #, fuzzy @@ -3657,257 +4039,320 @@ msgid "backend author name here" msgstr "Paketname" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package Name" +msgid "backend description here" +msgstr "Paketname" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Installation des Pakets blockiert" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Oberfläche" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Nur freie Software" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Aktualisierungen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgid "Updating packages" msgid "UpdatePackage" msgstr "Paketen werden aktualisiert" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 #, fuzzy #| msgid "Repository name:" msgid "GetRepositoryList" msgstr "Name der Softwarequelle:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Aktualisieren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "InstallPackage" msgstr "1 installiertes Paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 #, fuzzy #| msgid "Repository name:" msgid "RepositoryEnable" msgstr "Name der Softwarequelle:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgid "Update System" msgid "UpdateSystem" msgstr "System aktualisieren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgid "Failed to create a thread" msgid "RemovePackage" msgstr "Fehler beim Erzeugen eines Threads" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Name der Softwarequelle:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgid "Search failed" msgid "SearchName" msgstr "Suche fehlgeschlagen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Abhängig von" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 #, fuzzy #| msgid "Getting updates" msgid "WhatProvides" msgstr "Aktualisierungen werden abgerufen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Searching details" msgid "SearchDetails" msgstr "Details werden gesucht" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgid "Getting requires" msgid "GetRequires" msgstr "Abhängigkeiten werden abgerufen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Alle Pakete" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgid "Searching groups" msgid "SearchGroup" msgstr "Gruppen werden gesucht" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgid "Getting update detail" msgid "GetUpdateDetail" msgstr "Aktualisierungsdetails werden abgerufen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgid "Search killed" msgid "SearchFile" msgstr "Suche beendet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Beschreibung" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Details" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgid "Resolving" msgid "Resolve" msgstr "Auflösung ..." -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Installierte" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Installierte" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "SimulateInstallPackages" msgstr "1 installiertes Paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "Failed to create a thread" msgid "SimulateRemovePackages" msgstr "Fehler beim Erzeugen eines Threads" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "Updating packages" msgid "SimulateUpdatePackages" msgstr "Paketen werden aktualisiert" +#, fuzzy +#~| msgid "Transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Transaktionen" + +#, fuzzy +#~| msgid "This item is not supported by your backend or it is not a file" +#~| msgid_plural "" +#~| "These items are not supported by your backend or they are not files" +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Dieser Eintrag wird vom Hintergrundprogramm nicht unterstützt oder ist " +#~ "keine Datei" +#~ msgstr[1] "" +#~ "Diese Einträge werden vom Hintergrundprogramm nicht unterstützt oder sind " +#~ "keine Dateien" + +#, fuzzy +#~| msgid "
                  A system reboot is required" +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "
                  Ein Neustart des Rechners ist erforderlich" +#~ msgstr[1] "
                  Ein Neustart des Rechners ist erforderlich" + +#, fuzzy +#~| msgid "Do you want to install this file?" +#~| msgid_plural "Do you want to install these files?" +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Soll diese Datei installiert werden?" +#~ msgstr[1] "Sollen diese Dateien installiert werden?" + +#~ msgid "All packages" +#~ msgstr "Alle Pakete" + +#~ msgid "Package Name" +#~ msgstr "Paketname" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Einstellungen von KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Intelligentes Kontrollleistensymbol" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Benachrichtung nach Beendigung von zeitintensiven Vorgängen" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackagekit - Transaktion" + +#~ msgid "A library to do foo" +#~ msgstr "Eine Bibliothek, die foo macht" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "" #~ "Die folgenden Pakete werden aufgrund von Abhängigkeiten zusätzlich " @@ -3925,11 +4370,6 @@ #~ msgstr "Die folgenden Pakete wurden ebenfalls entfernt oder installiert:" #, fuzzy -#~| msgid "Getting package lists" -#~ msgid "Failed to update package lists" -#~ msgstr "Paketliste wird abgerufen" - -#, fuzzy #~| msgid "Refresh Packages List" #~ msgid "Failed to refresh package lists" #~ msgstr "Paketliste aktualisieren" @@ -3998,9 +4438,6 @@ #~ msgid "Downloading" #~ msgstr "Herunterladen ..." -#~ msgid "Updating" -#~ msgstr "Aktualisieren ..." - #~ msgid "Cleaning Up" #~ msgstr "Aufräumen ..." @@ -4078,11 +4515,6 @@ #~ msgid "Information" #~ msgstr "Informationen" -#, fuzzy -#~| msgid "Description" -#~ msgid "Find Description" -#~ msgstr "Beschreibung" - #~ msgid "Find File" #~ msgstr "Datei suchen" diff -Nru kpackagekit-0.5.4/po/el/kpackagekit.po kpackagekit-0.6.0/po/el/kpackagekit.po --- kpackagekit-0.5.4/po/el/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/el/kpackagekit.po 2010-01-30 09:00:16.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2008-12-01 11:27+0200\n" "Last-Translator: Toussis Manolis \n" "Language-Team: Greek \n" @@ -31,11 +31,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Λεπτομέρειες" @@ -100,30 +100,30 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "Distribution upgrade complete." msgstr "Ανάκτηση πληροφοριών ενημέρωσης διανομής" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "The distribution upgrade process failed to start." msgstr "Ανάκτηση πληροφοριών ενημέρωσης διανομής" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" @@ -217,30 +217,26 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Όνομα πακέτου" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Αρχική σελίδα" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Άδεια" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 #, fuzzy #| msgid "Group" msgctxt "Group of the package" msgid "Group" msgstr "Ομάδα" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Αρχική σελίδα" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Μέγεθος" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "" @@ -254,25 +250,23 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 #, fuzzy #| msgid "&Find" msgid "Find" msgstr "&Αναζήτηση" -#: AddRm/KpkAddRm.cpp:127 -#, fuzzy -#| msgid "All Packages" -msgid "All packages" -msgstr "Όλα τα πακέτα" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 #, fuzzy #| msgid "Testing changes" msgid "List of changes" msgstr "Έλεγχος τροποποιήσεων" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 #, fuzzy #| msgid "Group" msgctxt "Groups of packages" @@ -281,165 +275,165 @@ msgstr[0] "Ομάδα" msgstr[1] "Ομάδα" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 #, fuzzy #| msgid "&Cancel" msgid "&Cancel" msgstr "&Ακύρωση" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 #, fuzzy #| msgid "Description" msgid "Find by &name" msgstr "Περιγραφή" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 #, fuzzy #| msgid "Description" msgid "Find by &description" msgstr "Περιγραφή" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 #, fuzzy #| msgid "Change Log" msgid "Review Changes" msgstr "Καταγραφή αλλαγών" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Συλλογές" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Μόνο συλλογές" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Εξαίρεση συλλογών" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Εγκατεστημένο" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Μόνο εγκατεστημένα" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Μόνο διαθέσιμα" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Κανένα φίλτρο" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Ανάπτυξη" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Μόνο ανάπτυξης" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Μόνο αρχεία τελικού χρήστη" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Γραφικά" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Μόνο γραφικά" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Μόνο κειμένου" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 #, fuzzy #| msgid "Free" msgctxt "Filter for free packages" msgid "Free" msgstr "Ελεύθερα" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Μόνο ελεύθερο λογισμικό" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Μόνο μη ελεύθερο λογισμικό" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Αρχιτεκτονικές" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Μόνο εγγενείς αρχιτεκτονικές" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Μόνο μη εγγενείς αρχιτεκτονικές" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 #, fuzzy #| msgid "Source" msgctxt "Filter for source packages" msgid "Source" msgstr "Πηγαίος κώδικας" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Μόνο πηγαίο κώδικα" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Μόνο δυαδικά εκτελέσιμα" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Απόκρυψη υποπακέτων" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Εμφάνιση μόνο ενός πακέτου και όχι υποπακέτων" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Μόνο νεώτερα πακέτα" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Εμφάνιση μόνο νεώτερων διαθέσιμων πακέτων" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Προβολή σε ομάδες" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Εμφάνιση πακέτω σε ομάδες ανάλογα με την κατάστασή τους" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 #, fuzzy #| msgid "The following packages will also be installed as dependencies" msgid "The following package will be installed:" @@ -447,11 +441,11 @@ msgstr[0] "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" msgstr[1] "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Εγκατάσταση τώρα" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following package will be removed:" @@ -459,13 +453,13 @@ msgstr[0] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" msgstr[1] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 #, fuzzy #| msgid "Removing" msgid "Remove Now" msgstr "Αφαίρεση" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 #, fuzzy #| msgid "The following packages also have to be removed/installed:" msgid "The following package will be removed and installed:" @@ -473,49 +467,62 @@ msgstr[0] "Τα παρακάτω πακέτα θα πρέπει επίσης να αφαιρεθούν/εγκατασταθούν:" msgstr[1] "Τα παρακάτω πακέτα θα πρέπει επίσης να αφαιρεθούν/εγκατασταθούν:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Getting package lists" +msgid "Failed to simulate package removal" +msgstr "Ανάκτηση λίστας πακέτων" + +#: libkpackagekit/KpkReviewChanges.cpp:187 #, fuzzy #| msgid "Sorry, your backend does not support removing packages" msgid "The current backend does not support removing packages." msgstr "Δυστυχώς, το σύστημα υποστήριξης δεν υποστηρίζει την αφαίρεση πακέτων" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 #, fuzzy #| msgid "KPackageKit" msgid "KPackageKit Error" msgstr "KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Getting package lists" +msgid "Failed to simulate package install" +msgstr "Ανάκτηση λίστας πακέτων" + +#: libkpackagekit/KpkReviewChanges.cpp:224 #, fuzzy #| msgid "Sorry, your backend does not support installing packages" msgid "Current backend does not support installing packages." msgstr "" "Δυστυχώς, το σύστημα υποστήριξης δεν υποστηρίζει την εγκατάσταση πακέτων" -#: libkpackagekit/KpkReviewChanges.cpp:217 -#, fuzzy -#| msgid "Failed to create a thread" -msgid "Failed to remove package" -msgstr "Αποτυχία δημιουργίας ενός νήματος" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Failed to install package" msgstr "1 εγκατεστημένο πακέτο" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +#, fuzzy +#| msgid "Failed to create a thread" +msgid "Failed to remove package" +msgstr "Αποτυχία δημιουργίας ενός νήματος" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Απόκρυψη" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 #, fuzzy #| msgid "Allows you to hide the window but keeps running transaction task" msgid "" @@ -524,20 +531,20 @@ "Επιτρέπει την απόκρυψη του παραθύρου και τη διατήρηση εκτέλεσης της " "διεργασίας" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 #, fuzzy #| msgid "Installing signature" msgid "Installing unsigned software" msgstr "Εγκατάσταση υπογραφής" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 #, fuzzy #| msgid "
                  A system reboot is required" msgid "A media change is required" @@ -561,7 +568,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Απαιτείται αποδοχή άδειας χρήσης" @@ -576,15 +583,15 @@ msgid "Version" msgstr "Νέα έκδοση" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 #, fuzzy #| msgid "&Cancel" msgid "Cancel" msgstr "&Ακύρωση" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, fuzzy, kde-format #| msgid "Search finished in %1" msgid "Finished in %1." @@ -642,536 +649,546 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Απαιτείται υπογραφή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:31 +#: libkpackagekit/KpkStrings.cpp:32 #, fuzzy #| msgid "Unknown state" -msgctxt "The transaction state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Άγνωστη κατάσταση" -#: libkpackagekit/KpkStrings.cpp:33 +#: libkpackagekit/KpkStrings.cpp:35 #, fuzzy #| msgid "Waiting for service to start" -msgctxt "The transaction state" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Αναμονή εκκίνησης της υπηρεσίας" -#: libkpackagekit/KpkStrings.cpp:35 +#: libkpackagekit/KpkStrings.cpp:38 #, fuzzy #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Αναμονή για άλλες διεργασίες" -#: libkpackagekit/KpkStrings.cpp:37 +#: libkpackagekit/KpkStrings.cpp:41 #, fuzzy #| msgid "Running task" -msgctxt "The transaction state" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Εκτέλεση διεργασίας" -#: libkpackagekit/KpkStrings.cpp:39 +#: libkpackagekit/KpkStrings.cpp:44 #, fuzzy #| msgid "Querying" -msgctxt "The transaction state" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Αναζήτηση" -#: libkpackagekit/KpkStrings.cpp:41 +#: libkpackagekit/KpkStrings.cpp:47 #, fuzzy #| msgid "Getting information" -msgctxt "The transaction state" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Ανάκτηση πληροφοριών" -#: libkpackagekit/KpkStrings.cpp:43 +#: libkpackagekit/KpkStrings.cpp:50 #, fuzzy #| msgid "Failed to create a thread" -msgctxt "The transaction state" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Αποτυχία δημιουργίας ενός νήματος" -#: libkpackagekit/KpkStrings.cpp:45 +#: libkpackagekit/KpkStrings.cpp:53 #, fuzzy #| msgid "Downloading packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Λήψη πακέτων" -#: libkpackagekit/KpkStrings.cpp:47 +#: libkpackagekit/KpkStrings.cpp:56 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "1 εγκατεστημένο πακέτο" -#: libkpackagekit/KpkStrings.cpp:49 +#: libkpackagekit/KpkStrings.cpp:59 #, fuzzy #| msgid "Refreshing software list" -msgctxt "The transaction state" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Ανανέωση λίστας λογισμικού" -#: libkpackagekit/KpkStrings.cpp:51 +#: libkpackagekit/KpkStrings.cpp:62 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Ενημέρωση πακέτων" -#: libkpackagekit/KpkStrings.cpp:53 +#: libkpackagekit/KpkStrings.cpp:65 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Ενημέρωση πακέτων" -#: libkpackagekit/KpkStrings.cpp:55 +#: libkpackagekit/KpkStrings.cpp:68 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Ενημέρωση πακέτων" -#: libkpackagekit/KpkStrings.cpp:57 +#: libkpackagekit/KpkStrings.cpp:71 #, fuzzy #| msgid "Resolving dependencies" -msgctxt "The transaction state" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Επίλυση εξαρτήσεων" -#: libkpackagekit/KpkStrings.cpp:59 +#: libkpackagekit/KpkStrings.cpp:74 #, fuzzy #| msgid "Checking signatures" -msgctxt "The transaction state" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Έλεγχος υπογραφών" -#: libkpackagekit/KpkStrings.cpp:61 +#: libkpackagekit/KpkStrings.cpp:77 #, fuzzy #| msgid "Rolling back" -msgctxt "The transaction state" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Επαναφορά σε προηγούμενη έκδοση" -#: libkpackagekit/KpkStrings.cpp:63 +#: libkpackagekit/KpkStrings.cpp:80 #, fuzzy #| msgid "Testing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Έλεγχος τροποποιήσεων" -#: libkpackagekit/KpkStrings.cpp:65 +#: libkpackagekit/KpkStrings.cpp:83 #, fuzzy #| msgid "Committing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Υποβολή τροποποιήσεων" -#: libkpackagekit/KpkStrings.cpp:67 +#: libkpackagekit/KpkStrings.cpp:86 #, fuzzy #| msgid "Requesting data" -msgctxt "The transaction state" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Αίτηση δεδομένων" -#: libkpackagekit/KpkStrings.cpp:69 +#: libkpackagekit/KpkStrings.cpp:89 #, fuzzy #| msgid "Finished" -msgctxt "The transaction state" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Ολοκληρώθηκε" -#: libkpackagekit/KpkStrings.cpp:71 +#: libkpackagekit/KpkStrings.cpp:92 #, fuzzy #| msgid "Cancelling" -msgctxt "The transaction state" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Ακύρωση" -#: libkpackagekit/KpkStrings.cpp:73 +#: libkpackagekit/KpkStrings.cpp:95 #, fuzzy #| msgid "Downloading repository information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Λήψη πληροφοριών χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:75 +#: libkpackagekit/KpkStrings.cpp:98 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Λήψη λίστας των πακέτων" -#: libkpackagekit/KpkStrings.cpp:77 +#: libkpackagekit/KpkStrings.cpp:101 #, fuzzy #| msgid "Downloading file lists" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Λήψη λίστας των αρχείων" -#: libkpackagekit/KpkStrings.cpp:79 +#: libkpackagekit/KpkStrings.cpp:104 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Λήψη λίστας των πακέτων" -#: libkpackagekit/KpkStrings.cpp:81 +#: libkpackagekit/KpkStrings.cpp:107 #, fuzzy #| msgid "Downloading groups" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Λήψη ομάδων" -#: libkpackagekit/KpkStrings.cpp:83 +#: libkpackagekit/KpkStrings.cpp:110 #, fuzzy #| msgid "Downloading update information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Λήψη πληροφοριών ενημέρωσης" -#: libkpackagekit/KpkStrings.cpp:85 +#: libkpackagekit/KpkStrings.cpp:113 #, fuzzy #| msgid "Repackaging files" -msgctxt "The transaction state" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Αναδημιουργία πακέτων από αρχεία" -#: libkpackagekit/KpkStrings.cpp:87 +#: libkpackagekit/KpkStrings.cpp:116 #, fuzzy #| msgid "Loading cache" -msgctxt "The transaction state" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Φόρτωση λανθάνουσας μνήμης" -#: libkpackagekit/KpkStrings.cpp:89 +#: libkpackagekit/KpkStrings.cpp:119 #, fuzzy #| msgid "Scanning installed applications" -msgctxt "The transaction state" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Σάρωση εγκατεστημένων εφαρμογών" -#: libkpackagekit/KpkStrings.cpp:91 +#: libkpackagekit/KpkStrings.cpp:122 #, fuzzy #| msgid "Generating package lists" -msgctxt "The transaction state" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Δημιουργία λίστας πακέτων" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Αναμονή για άλλες διεργασίες" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Αναδημιουργία πακέτων από αρχεία" + +#: libkpackagekit/KpkStrings.cpp:150 #, fuzzy #| msgid "Downloading" msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Λήψη" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 #, fuzzy #| msgid "Updated" msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Ενημερώθηκε" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 #, fuzzy #| msgid "Installed" msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 #, fuzzy #| msgid "Removing" msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Αφαίρεση" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 #, fuzzy #| msgid "Cleaning Up" msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Καθαρισμός" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 #, fuzzy #| msgid "Obsoletes" msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Ξεπερασμένα" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Άγνωστη ομάδα" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 #, fuzzy #| msgid "Getting dependencies" msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Ανάκτηση εξαρτήσεων" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 #, fuzzy #| msgid "Getting update detail" msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Ανάκτηση λεπτομερειών ενημέρωσης" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 #, fuzzy #| msgid "Getting details" msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Ανάκτηση λεπτομερειών" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 #, fuzzy #| msgid "Getting requires" msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Ανάκτηση απαιτήσεων" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Ανάκτηση ενημερώσεων" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 #, fuzzy #| msgid "Searching details" msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Αναζήτηση λεπτομερειών" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 #, fuzzy #| msgid "Searching for file" msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Αναζήτηση αρχείου" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Αναζήτηση ομάδων" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 #, fuzzy #| msgid "Searching for package name" msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Αναζήτηση ονόματος πακέτου" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 #, fuzzy #| msgid "Removing" msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Αφαίρεση" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 #, fuzzy #| msgid "Installing" msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Εγκατάσταση" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 #, fuzzy #| msgid "Installing file" msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Εγκατάσταση αρχείου" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Ανανέωση λανθάνουσας μνήμης πακέτων" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 #, fuzzy #| msgid "Updating packages" msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Ενημέρωση πακέτων" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 #, fuzzy #| msgid "Updating system" msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Ενημέρωση συστήματος" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 #, fuzzy #| msgid "Canceling" msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Ακύρωση" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 #, fuzzy #| msgid "Rolling back" msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Επαναφορά σε προηγούμενη έκδοση" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 #, fuzzy #| msgid "Getting list of repositories" msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Ανάκτηση λίστας χώρων αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Ενεργοποίηση χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Ορισμός δεδομένων χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Επίλυση" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 #, fuzzy #| msgid "File List" msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Λίστα αρχείων" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 #, fuzzy #| msgid "Getting what provides" msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Ανάκτηση περιεχομένων" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Εγκατάσταση υπογραφής" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Ανάκτηση λίστας πακέτων" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Αποδοχή EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Λήψη πακέτων" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Ανάκτηση πληροφοριών ενημέρωσης διανομής" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Ανάκτηση ενημερώσεων" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 #, fuzzy #| msgid "Getting information" msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Ανάκτηση πληροφοριών" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Αποτυχία αρχικοποίησης" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Package file to install" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Αρχείο πακέτου για εγκατάσταση" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Searching for package name" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Αναζήτηση ονόματος πακέτου" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -1179,84 +1196,84 @@ msgid "Simulating the update" msgstr "1 σημαντική ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Άγνωστη ομάδα" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 #, fuzzy #| msgid "Getting dependencies" msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Ανάκτηση εξαρτήσεων" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 #, fuzzy #| msgid "Getting update detail" msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Ανάκτηση λεπτομερειών ενημέρωσης" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 #, fuzzy #| msgid "Getting details" msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Ανάκτηση λεπτομερειών" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 #, fuzzy #| msgid "Getting requires" msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Ανάκτηση απαιτήσεων" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Ανάκτηση ενημερώσεων" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 #, fuzzy #| msgid "Search package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Αναζήτηση ονόματος πακέτου" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 #, fuzzy #| msgid "Searching for file" msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Αναζήτηση αρχείου" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Αναζήτηση ομάδων" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 #, fuzzy #| msgid "Searching for package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Αναζήτηση ονόματος πακέτου" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 #, fuzzy #| msgid "Failed to create a thread" msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Αποτυχία δημιουργίας ενός νήματος" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -1264,428 +1281,438 @@ msgid "Installed packages" msgstr "1 εγκατεστημένο πακέτο" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 #, fuzzy #| msgid "Installing file" msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Εγκατάσταση αρχείου" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Ανανέωση λανθάνουσας μνήμης πακέτων" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 #, fuzzy #| msgid "Updating packages" msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Ενημέρωση πακέτων" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 #, fuzzy #| msgid "Update System" msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Ενημέρωση συστήματος" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 #, fuzzy #| msgid "&Cancel" msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "&Ακύρωση" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 #, fuzzy #| msgid "Rolling back" msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Επαναφορά σε προηγούμενη έκδοση" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 #, fuzzy #| msgid "Getting list of repositories" msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Ανάκτηση λίστας χώρων αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Ενεργοποίηση χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Ορισμός δεδομένων χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Επίλυση" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 #, fuzzy #| msgid "File List" msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Λίστα αρχείων" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 #, fuzzy #| msgid "Getting what provides" msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Ανάκτηση περιεχομένων" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Εγκατάσταση υπογραφής" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Ανάκτηση λίστας πακέτων" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Αποδοχή EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Λήψη πακέτων" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Ανάκτηση πληροφοριών ενημέρωσης διανομής" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 #, fuzzy #| msgid "Getting what provides" msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Ανάκτηση περιεχομένων" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 #, fuzzy #| msgid "Transactions" msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Συναλλαγές" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Αποτυχία αρχικοποίησης" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Αποτυχία αρχικοποίησης" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Searching for package name" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Αναζήτηση ονόματος πακέτου" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to create a thread" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Αποτυχία δημιουργίας ενός νήματος" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Μη διαθέσιμη σύνδεση δικτύου" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Μη διαθέσιμη λανθάνουσα μνήμη πακέτων" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Τέλος μνήμης" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Αποτυχία δημιουργίας ενός νήματος" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Δεν υποστηρίζεται από αυτό το σύστημα υποστήριξης" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Συνέβη ένα εσωτερικό σφάλμα του συστήματος" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Μια έμπιστη ασφάλεια συσχέτισης δεν είναι παρούσα" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Το πακέτο δεν είναι εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Το πακέτο δε βρέθηκε" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Το πακέτο είναι ήδη εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Αποτυχία λήψης του πακέτου" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Η ομάδα δε βρέθηκε" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Μη έγκυρη λίστα ομάδων" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Αποτυχία επίλυσης εξαρτήσεων" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Μη έγκυρο φίλτρο αναζήτησης" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Το αναγνωριστικό πακέτου δεν έχει σωστή μορφή" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Σφάλμα συναλλαγής" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Δε βρέθηκε το όνομα του χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Αδυναμία αφαίρεσης ενός προστατευμένου πακέτου του συστήματος" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Η εργασία ακυρώθηκε" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Η εργασία ακυρώθηκε με εξαναγκασμό" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Αποτυχία ανάγνωσης από αρχείο ρυθμίσεων" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Η εργασία δεν μπορεί να ακυρωθεί" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Αδυναμία εγκατάστασης πηγαίων πακέτων" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Αποτυχία αποδοχής άδειας χρήσης" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Σύγκρουση τοπικών αρχείων ανάμεσα σε πακέτα" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Τα πακέτα δεν είναι συμβατά" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Πρόβλημα κατά τη σύνδεση με μια πηγή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Αποτυχία αρχικοποίησης" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Αποτυχία ολοκλήρωσης" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Αδυναμία ανάκτησης κλειδώματος" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Κανένα πακέτο προς ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Αδυναμία εγγραφής ρυθμίσεων χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Αποτυχία τοπικής εγκατάστασης" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Κακή υπογραφή GPG" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Λείπει η υπογραφή GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Μη έγκυρες ρυθμίσεις του χώρου αποθήκευσης" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Μη έγκυρο αρχείο πακέτου" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Απαγόρευση εγκατάστασης πακέτου" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Το πακέτο είναι κατεστραμμένο" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Όλα τα πακέτα είναι ήδη εγκατεστημένα" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Το καθορισμένο αρχείο δεν βρέθηκε" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Δεν υπάρχουν άλλα διαθέσιμα αντίγραφα" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "No distribution upgrade data is available" msgstr "Ανάκτηση πληροφοριών ενημέρωσης διανομής" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "Package is incompatible with this system" msgstr "Το πακέτο που πρόκειται να εγκατασταθεί είναι ήδη εγκατεστημένο." -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 #, fuzzy #| msgid "Authentication failed" msgid "Authorization failed" msgstr "Αποτυχία ταυτοποίησης" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Το πακέτο δε βρέθηκε" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot install from untrusted origin" msgstr "" +"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot update from untrusted origin" msgstr "" +"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgid "File List" msgid "Cannot get the file list" msgstr "Λίστα αρχείων" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "
                  A system reboot is required" msgid "Cannot get package requires" msgstr "
                  Απαιτείται επανεκκίνηση του συστήματος" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Αποτυχία λήψης του πακέτου" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Αρχείο πακέτου για εγκατάσταση" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Αρχείο πακέτου για εγκατάσταση" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Αρχείο πακέτου για εγκατάσταση" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Αρχείο πακέτου για εγκατάσταση" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Άγνωστο σφάλμα" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1693,7 +1720,7 @@ "Δεν υπάρχει διαθέσιμη σύνδεση δικτύου.\n" "
Παρακαλώ ελέγξτε τις ρυθμίσεις δικτύου και προσπαθήστε ξανά" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1701,7 +1728,7 @@ "Η λίστα πακέτων απαιτεί ανακατασκευή.\n" "
Αυτό θα έπρεπε να γίνει από το σύστημα υποστήριξης αυτόματα." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 #, fuzzy #| msgid "" #| "The service that is responsible for handling user requests is out of " @@ -1715,12 +1742,12 @@ "Η υπηρεσία που είναι υπεύθυνη για το χειρισμό των αιτήσεων του χρήστη δεν 
έχει διαθέσιμη μνήμη.\n" "
Παρακαλώ επανεκκινήστε τον υπολογιστή σας." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Αδυναμία δημιουργίας νήματος προς την υπηρεσία που αιτήθηκε από το χρήστη." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 #, fuzzy #| msgid "" #| "The action is not supported by this backend.\n" @@ -1733,7 +1760,7 @@ "
Παρακαλώ αναφέρετε ένα σφάλμα κώδικα καθώς δε θα έπρεπε να συμβεί κάτι " "τέτοιο." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1741,40 +1768,40 @@ "Συνέβη ένα μη αναμενόμενο σφάλμα.\n" "
Παρακαλώ αναφέρετε αυτό το σφάλμα κώδικα μαζί με αναλυτική περιγραφή του." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with software source.\n" #| "Please check your security settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Αδυναμία συσχέτισης εμπιστοσύνης ασφαλείας με την πηγή λογισμικού.\n" "
Παρακαλώ ελέγξτε τις ρυθμίσεις ασφαλείας σας." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Το πακέτο που πρόκειται να διαγραφεί ή να ενημερωθεί δεν είναι εγκατεστημένο." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Το πακέτο που πρόκειται να εγκατασταθεί είναι ήδη εγκατεστημένο." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1782,7 +1809,7 @@ "Αποτυχία λήψης του πακέτου.\n" "
Παρακαλώ ελέγξτε τη σύνδεση του δικτύου." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1790,7 +1817,7 @@ "Δε βρέθηκε ο τύπος ομάδας.\n" "
Παρακαλώ ελέγξτε τη λίστα ομάδων σας και προσπαθήστε ξανά." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1798,14 +1825,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Αδυναμία φόρτωσης της λίστας ομάδων.\n" "
Η ανανέωση της λανθάνουσας μνήμης μπορεί να βοηθήσει, αλλά συνήθως πρόκειται " "για 
σφάλμα της πηγής λογισμικού." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 #, fuzzy #| msgid "" #| "A package could not be found that allows the task to complete.\n" @@ -1817,11 +1844,11 @@ "Αδυναμία εύρεσης ενός πακέτου για την ολοκλήρωση της διεργασίας.\n" "
Περισσότερες πληροφορίες βρίσκονται στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Το φίλτρο αναζήτησης δεν έχει σωστή μορφή." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 #, fuzzy #| msgid "" #| "The package identifier was not well formed when sent to the server.\n" @@ -1834,7 +1861,7 @@ "εξυπηρετητή. \n" "
Αυτό υποδηλώνει συνήθως ένα εσωτερικό σφάλμα και θα πρέπει να αναφερθεί." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 #, fuzzy #| msgid "" #| "An unspecified task error has occurred.\n" @@ -1846,27 +1873,27 @@ "Συνέβη ένα ακαθόριστο σφάλμα εργασίας.\n" "
Περισσότερες πληροφορίες βρίσκονται στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Δε βρέθηκε το όνομα της απομακρυσμένης πηγής λογισμικού.\n" "
Ίσως να χρειάζεται η ενεργοποίηση κάποιου αντικειμένου στις πηγές λογισμικού." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Δεν επιτρέπεται η αφαίρεση ενός προστατευμένου πακέτου του συστήματος." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Η διεργασία ακυρώθηκε με επιτυχία και δεν τροποποιήθηκε κανένα πακέτο." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1874,7 +1901,7 @@ "Η διεργασία ακυρώθηκε με επιτυχία και δεν τροποποιήθηκε κανένα πακέτο.\n" "
Το σύστημα υποστήριξης δεν τερμάτισε χωρίς πρόβλημα." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 #, fuzzy #| msgid "" #| "The native package configuration file could not be opened.\n" @@ -1886,11 +1913,11 @@ "Το αρχείο ρυθμίσεων εγγενών πακέτων δεν μπορεί να ανοιχτεί.\n" "
Παρακαλώ σιγουρευτείτε ότι οι ρυθμίσεις είναι σωστές." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Μη ασφαλής η ακύρωση της διεργασίας αυτήν τη στιγμή." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1898,7 +1925,7 @@ "Τα πακέτα πηγαίου κώδικα συνήθως εγκαθιστώνται με αυτή τη μέθοδο.\n" "
Ελέγξτε την επέκταση του αρχείου που προσπαθείτε να εγκαταστήσετε." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1906,46 +1933,46 @@ "Η άδεια χρήσης δεν έγινε αποδεκτή.\n" "
Για τη χρήση αυτού του λογισμικού θα πρέπει να αποδεκτείτε την άδεια." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Δύο πακέτα προσφέρουν το ίδιο αρχείο.\n" "
Αυτό συνήθως συμβαίνει από μίξη πακέτων από δύο διαφορετικές πηγές " "λογισμικού." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Υπάρχουν πολλαπλά πακέτα μη συμβατά μεταξύ τους.\n" "
Αυτό συνήθως συμβαίνει από μίξη πακέτων από δύο διαφορετικές πηγές " "λογισμικού.
" -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software source\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Υπήρξε ένα (πιθανότατα προσωρινό) πρόβλημα κατά τη σύνδεση με μια πηγή " "λογισμικού\n" "
Παρακαλώ ελέγξτε το σφάλμα για περισσότερες λεπτομέρειες." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1954,7 +1981,7 @@ "
Αυτό μπορεί να συμβεί αν γίνεται χρήση και άλλων εργαλείων πακέτων " "ταυτόχρονα." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1962,7 +1989,7 @@ "Αποτυχία κλεισίματος του αντιγράφου του συστήματος υποστήριξης.\n" "
Αυτό σφάλμα συνήθως μπορεί απλά να αγνοηθεί." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1970,15 +1997,15 @@ "Αδυναμία αποκλειστικού κλειδώματος στο σύστημα υποστήριξης πακέτων.\n" "
Παρακαλώ κλείστε κάθε παλιό εργαλείο πακέτων που μπορεί να είναι ανοιχτό." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Κανένα από τα επιλεγμένα πακέτα δεν μπορεί να ενημερωθεί." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Οι ρυθμίσεις του χώρου αποθήκευσης δεν μπορούν να τροποποιηθούν." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1986,11 +2013,11 @@ "Αποτυχία εγκατάστασης του τοπικού αρχείου.\n" "
Περισσότερες πληροφορίες είναι διαθέσιμες στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Αδυναμία επαλήθευσης της υπογραφής του πακέτου." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1998,11 +2025,11 @@ "Λείπει η υπογραφή του πακέτου και επομένως αυτό δεν είναι έμπιστο.\n" "
Το πακέτο δεν έχει υπογραφεί με ένα κλειδί GPG κατά τη δημιουργία του." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Μη έγκυρες ρυθμίσεις χώρου αποθήκευσης και αδυναμία ανάγνωσης." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -2010,7 +2037,7 @@ "Το πακέτο που προσπαθείτε να εγκαταστήσετε δεν είναι έγκυρο.\n" "
Το αρχείο του πακέτου μπορεί να είναι κατεστραμμένο ή λανθασμένης μορφής." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 #, fuzzy #| msgid "" #| "Installation of this package prevented by your packaging system's " @@ -2021,20 +2048,20 @@ msgstr "" "Η εγκατάσταση αυτού του πακέτου αποτράπηκε από τις ρυθμίσεις πακέτων του 
συστήματός σας." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "Το πακέτο που λήφθηκε είναι κατεστραμμένο και θα πρέπει να ληφθεί ξανά." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Όλα τα επιλεγμένα προς εγκατάσταση πακέτα είναι ήδη εγκατεστημένα στο " "σύστημά σας." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 #, fuzzy #| msgid "" #| "The specified file could not be found on the system.\n" @@ -2046,21 +2073,21 @@ "Το καθορισμένο αρχείο δε βρέθηκε στο σύστημά σας.\n" "
Ελέγξτε ότι το αρχείο υπάρχει ακόμη και δεν έχει διαγραφεί." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Απαιτούμενα δεδομένα δεν μπορούν να βρεθούν σε καμία από τις πηγές " "λογισμικού.\n" "
Δεν υπάρχουν άλλα αντίγραφα τοποθεσιών πηγής για νέα προσπάθεια σύνδεσης." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " @@ -2068,78 +2095,78 @@ #| "There were no more download mirrors that could be tried." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Απαιτούμενα δεδομένα δεν μπορούν να βρεθούν σε καμία από τις πηγές " "λογισμικού.\n" "
Δεν υπάρχουν άλλα αντίγραφα τοποθεσιών πηγής για νέα προσπάθεια σύνδεσης." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Το πακέτο που πρόκειται να εγκατασταθεί είναι ήδη εγκατεστημένο." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "" "Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "" "Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The specified file could not be found" msgid "The file list is not available for this package." msgstr "Το καθορισμένο αρχείο δεν βρέθηκε" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Το καθορισμένο αρχείο δεν βρέθηκε" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package could not be found that allows the task to complete.\n" @@ -2151,7 +2178,7 @@ "Αδυναμία εύρεσης ενός πακέτου για την ολοκλήρωση της διεργασίας.\n" "
Περισσότερες πληροφορίες βρίσκονται στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2163,7 +2190,7 @@ "Αποτυχία εγκατάστασης του τοπικού αρχείου.\n" "
Περισσότερες πληροφορίες είναι διαθέσιμες στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2175,7 +2202,7 @@ "Αποτυχία εγκατάστασης του τοπικού αρχείου.\n" "
Περισσότερες πληροφορίες είναι διαθέσιμες στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2187,7 +2214,7 @@ "Αποτυχία εγκατάστασης του τοπικού αρχείου.\n" "
Περισσότερες πληροφορίες είναι διαθέσιμες στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2199,7 +2226,7 @@ "Αποτυχία εγκατάστασης του τοπικού αρχείου.\n" "
Περισσότερες πληροφορίες είναι διαθέσιμες στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -2207,327 +2234,327 @@ "Άγνωστο σφάλμα, παρακαλώ αναφέρετε ένα σφάλμα κώδικα.\n" "
Περισσότερες πληροφορίες είναι διαθέσιμες στη λεπτομερή αναφορά." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 #, fuzzy #| msgid "Accessibility" msgctxt "The group type" msgid "Accessibility" msgstr "Προσιτότητα" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 #, fuzzy #| msgid "Accessories" msgctxt "The group type" msgid "Accessories" msgstr "Βοηθήματα" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 #, fuzzy #| msgid "Education" msgctxt "The group type" msgid "Education" msgstr "Εκπαίδευση" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 #, fuzzy #| msgid "Games" msgctxt "The group type" msgid "Games" msgstr "Παιχνίδια" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 #, fuzzy #| msgid "Graphics" msgctxt "The group type" msgid "Graphics" msgstr "Γραφικά" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 #, fuzzy #| msgid "Internet" msgctxt "The group type" msgid "Internet" msgstr "Διαδίκτυο" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 #, fuzzy #| msgid "Office" msgctxt "The group type" msgid "Office" msgstr "Γραφείο" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 #, fuzzy #| msgid "Other" msgctxt "The group type" msgid "Other" msgstr "Άλλα" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 #, fuzzy #| msgid "Development" msgctxt "The group type" msgid "Development" msgstr "Ανάπτυξη" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 #, fuzzy #| msgid "Multimedia" msgctxt "The group type" msgid "Multimedia" msgstr "Πολυμέσα" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 #, fuzzy #| msgid "System" msgctxt "The group type" msgid "System" msgstr "Σύστημα" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 #, fuzzy #| msgid "GNOME desktop" msgctxt "The group type" msgid "GNOME desktop" msgstr "Επιφάνεια εργασίας GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 #, fuzzy #| msgid "KDE desktop" msgctxt "The group type" msgid "KDE desktop" msgstr "Επιφάνεια εργασίας KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 #, fuzzy #| msgid "XFCE desktop" msgctxt "The group type" msgid "XFCE desktop" msgstr "Επιφάνεια εργασίας XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 #, fuzzy #| msgid "Other desktops" msgctxt "The group type" msgid "Other desktops" msgstr "Άλλες επιφάνειες εργασίας" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 #, fuzzy #| msgid "Publishing" msgctxt "The group type" msgid "Publishing" msgstr "Τυπογραφία" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 #, fuzzy #| msgid "Servers" msgctxt "The group type" msgid "Servers" msgstr "Εξυπηρετητές" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 #, fuzzy #| msgid "Fonts" msgctxt "The group type" msgid "Fonts" msgstr "Γραμματοσειρές" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 #, fuzzy #| msgid "Admin tools" msgctxt "The group type" msgid "Admin tools" msgstr "Εργαλεία διαχείρισης" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 #, fuzzy #| msgid "Legacy" msgctxt "The group type" msgid "Legacy" msgstr "Παλαιότερα" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 #, fuzzy #| msgid "Localization" msgctxt "The group type" msgid "Localization" msgstr "Εντοπιότητα" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 #, fuzzy #| msgid "Virtualization" msgctxt "The group type" msgid "Virtualization" msgstr "Εικονικές μηχανές" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 #, fuzzy #| msgid "Security" msgctxt "The group type" msgid "Security" msgstr "Ασφάλεια" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 #, fuzzy #| msgid "Power management" msgctxt "The group type" msgid "Power management" msgstr "Διαχείριση ενέργειας" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 #, fuzzy #| msgid "Communication" msgctxt "The group type" msgid "Communication" msgstr "Επικοινωνίες" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 #, fuzzy #| msgid "Network" msgctxt "The group type" msgid "Network" msgstr "Δίκτυο" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 #, fuzzy #| msgid "Maps" msgctxt "The group type" msgid "Maps" msgstr "Χάρτες" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 #, fuzzy #| msgid "Software sources" msgctxt "The group type" msgid "Software sources" msgstr "Πηγές λογισμικού" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 #, fuzzy #| msgid "Science" msgctxt "The group type" msgid "Science" msgstr "Επιστήμη" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 #, fuzzy #| msgid "Documentation" msgctxt "The group type" msgid "Documentation" msgstr "Τεκμηρίωση" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 #, fuzzy #| msgid "Electronics" msgctxt "The group type" msgid "Electronics" msgstr "Ηλεκτρονικά" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 #, fuzzy #| msgid "Package collections" msgctxt "The group type" msgid "Package collections" msgstr "Συλλογές πακέτων" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 #, fuzzy #| msgid "Only newest packages" msgctxt "The group type" msgid "Newest packages" msgstr "Μόνο νεώτερα πακέτα" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 #, fuzzy #| msgid "Unknown group" msgctxt "The group type" msgid "Unknown group" msgstr "Άγνωστη ομάδα" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 #, fuzzy #| msgid "Trivial update" msgctxt "The type of update" msgid "Trivial update" msgstr "Μη σημαντική ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 #, fuzzy #| msgid "Trivial update" msgctxt "The type of update" msgid "Normal update" msgstr "Μη σημαντική ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 #, fuzzy #| msgid "Important update" msgctxt "The type of update" msgid "Important update" msgstr "Σημαντική ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 #, fuzzy #| msgid "Security update" msgctxt "The type of update" msgid "Security update" msgstr "Ενημέρωση ασφαλείας" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 #, fuzzy #| msgid "Bug fix update" msgctxt "The type of update" msgid "Bug fix update" msgstr "Ενημέρωση διόρθωσης σφάλματος" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 #, fuzzy #| msgid "Enhancement update" msgctxt "The type of update" msgid "Enhancement update" msgstr "Ενημέρωση βελτίωσης" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 #, fuzzy #| msgid "Blocked update" msgctxt "The type of update" msgid "Blocked update" msgstr "Ενημέρωση φραγής" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 #, fuzzy #| msgid "Installed" msgctxt "The type of update" msgid "Installed" msgstr "Εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 #, fuzzy #| msgid "Available" msgctxt "The type of update" msgid "Available" msgstr "Διαθέσιμο" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 #, fuzzy #| msgid "Unknown update" msgctxt "The type of update" msgid "Unknown update" msgstr "Άγνωστη ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 μη σημαντική ενημέρωση" msgstr[1] "%1 μη σημαντικές ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2537,63 +2564,63 @@ msgstr[0] "1 ενημέρωση" msgstr[1] "%1 ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 σημαντική ενημέρωση" msgstr[1] "%1 σημαντικές ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 ενημέρωση ασφαλείας" msgstr[1] "%1 ενημερώσεις ασφαλείας" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 ενημέρωση διόρθωσης σφάλματος" msgstr[1] "%1 ενημερώσεις διόρθωσης σφάλματος" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 ενημέρωση βελτίωσης" msgstr[1] "%1 ενημερώσεις βελτίωσης" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 ενημέρωση φραγής" msgstr[1] "%1 ενημερώσεις φραγής" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 εγκατεστημένο πακέτο" msgstr[1] "%1 εγκατεστημένα πακέτα" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 διαθέσιμο πακέτο" msgstr[1] "%1 διαθέσιμα πακέτα" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 άγνωστη ενημέρωση" msgstr[1] "%1 άγνωστες ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2602,7 +2629,7 @@ msgstr[0] "1 μη σημαντική ενημέρωση" msgstr[1] "%1 μη σημαντικές ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2612,7 +2639,7 @@ msgstr[0] "1 ενημέρωση" msgstr[1] "%1 ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2621,7 +2648,7 @@ msgstr[0] "1 σημαντική ενημέρωση" msgstr[1] "%1 σημαντικές ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2630,7 +2657,7 @@ msgstr[0] "1 ενημέρωση ασφαλείας" msgstr[1] "%1 ενημερώσεις ασφαλείας" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2639,7 +2666,7 @@ msgstr[0] "1 ενημέρωση διόρθωσης σφάλματος" msgstr[1] "%1 ενημερώσεις διόρθωσης σφάλματος" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2648,7 +2675,7 @@ msgstr[0] "1 ενημέρωση βελτίωσης" msgstr[1] "%1 ενημερώσεις βελτίωσης" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2657,7 +2684,7 @@ msgstr[0] "1 εγκατεστημένο πακέτο" msgstr[1] "%1 εγκατεστημένα πακέτα" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "All packages are already installed" msgid "1 available package selected to be installed" @@ -2665,7 +2692,7 @@ msgstr[0] "Όλα τα πακέτα είναι ήδη εγκατεστημένα" msgstr[1] "Όλα τα πακέτα είναι ήδη εγκατεστημένα" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2674,7 +2701,7 @@ msgstr[0] "1 μη σημαντική ενημέρωση" msgstr[1] "%1 μη σημαντικές ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2684,7 +2711,7 @@ msgstr[0] "1 ενημέρωση" msgstr[1] "%1 ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2693,7 +2720,7 @@ msgstr[0] "1 σημαντική ενημέρωση" msgstr[1] "%1 σημαντικές ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2702,7 +2729,7 @@ msgstr[0] "1 ενημέρωση ασφαλείας" msgstr[1] "%1 ενημερώσεις ασφαλείας" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2711,7 +2738,7 @@ msgstr[0] "1 ενημέρωση διόρθωσης σφάλματος" msgstr[1] "%1 ενημερώσεις διόρθωσης σφάλματος" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2720,7 +2747,7 @@ msgstr[0] "1 ενημέρωση βελτίωσης" msgstr[1] "%1 ενημερώσεις βελτίωσης" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, fuzzy, kde-format #| msgid "1 blocked update" #| msgid_plural "%1 blocked updates" @@ -2729,7 +2756,7 @@ msgstr[0] "1 ενημέρωση φραγής" msgstr[1] "%1 ενημερώσεις φραγής" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2738,7 +2765,7 @@ msgstr[0] "1 εγκατεστημένο πακέτο" msgstr[1] "%1 εγκατεστημένα πακέτα" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2747,7 +2774,7 @@ msgstr[0] "1 διαθέσιμο πακέτο" msgstr[1] "%1 διαθέσιμα πακέτα" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, fuzzy, kde-format #| msgid "1 unknown update" #| msgid_plural "%1 unknown updates" @@ -2756,244 +2783,341 @@ msgstr[0] "1 άγνωστη ενημέρωση" msgstr[1] "%1 άγνωστες ενημερώσεις" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 #, fuzzy #| msgid "No restart is necessary for this update" msgid "No restart is necessary" msgstr "Δεν απαιτείται επανεκκίνηση γι' αυτήν την ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to restart this application" msgstr "Απαιτείται αποσύνδεση του χρήστη μετά από αυτήν την ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in" msgstr "Απαιτείται αποσύνδεση του χρήστη μετά από αυτήν την ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 #, fuzzy #| msgid "Software signature is required" msgid "A restart will be required" msgstr "Απαιτείται υπογραφή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." msgstr "Απαιτείται αποσύνδεση του χρήστη μετά από αυτήν την ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "Software signature is required" msgid "A restart will be required due to a security update." msgstr "Απαιτείται υπογραφή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 #, fuzzy #| msgid "Software signature is required" msgid "No restart is required" msgstr "Απαιτείται υπογραφή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "Software signature is required" msgid "A restart is required" msgstr "Απαιτείται υπογραφή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You need to log out and log back in" msgstr "Απαιτείται αποσύνδεση του χρήστη μετά από αυτήν την ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You need to log out and log back in to remain secure." msgstr "Απαιτείται αποσύνδεση του χρήστη μετά από αυτήν την ενημέρωση" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "Software signature is required" msgid "A restart is required to remain secure." msgstr "Απαιτείται υπογραφή λογισμικού" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Σταθερό" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Ασταθές" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Δοκιμαστικό" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "Μη έγκυρο φίλτρο αναζήτησης" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "Μη έγκυρη λίστα ομάδων" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Μη διαθέσιμη λανθάνουσα μνήμη πακέτων" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "Το πακέτο δεν είναι εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgid "Generating package lists" msgid "A newer package exists" msgstr "Δημιουργία λίστας πακέτων" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Could not find package" msgstr "1 εγκατεστημένο πακέτο" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "Το πακέτο είναι ήδη εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Αποτυχία λήψης του πακέτου" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Αδυναμία αφαίρεσης ενός προστατευμένου πακέτου του συστήματος" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Αδυναμία επαλήθευσης της υπογραφής του πακέτου." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." msgstr "Μη έγκυρη λίστα ομάδων" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The package is not installed" msgid "The file is not valid." msgstr "Το πακέτο δεν είναι εγκατεστημένο" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Could not talk to packagekitd." msgstr "1 εγκατεστημένο πακέτο" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Άγνωστο σφάλμα" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                  • %2
                  Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                  • %2
                  Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Εγκατάσταση" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to start search file transaction" +msgstr "Αποτυχία αρχικοποίησης" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The %1 package already provides this file" +msgstr "Το πακέτο είναι ήδη εγκατεστημένο" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Αποτυχία αρχικοποίησης" +msgstr[1] "Αποτυχία αρχικοποίησης" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +#, fuzzy +#| msgid "The following packages will also be installed as dependencies" +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" +msgstr[1] "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Το καθορισμένο αρχείο δεν βρέθηκε" +msgstr[1] "Το καθορισμένο αρχείο δεν βρέθηκε" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Failed to find package" +msgstr "1 εγκατεστημένο πακέτο" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, fuzzy, kde-format #| msgid "You have one update:" #| msgid_plural "You have %1 updates:" @@ -3002,55 +3126,169 @@ msgstr[0] "Έχετε μία ενημέρωση:" msgstr[1] "Έχετε %1 ενημερώσεις:" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 #, fuzzy #| msgid "Trivial update" msgid "Review and update" msgstr "Μη σημαντική ενημέρωση" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Όχι τώρα" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 #, fuzzy #| msgid "Don't notify me again" msgid "Do not ask again" msgstr "Να μη γίνει ειδοποίηση ξανά" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 #, fuzzy #| msgid "
                  Updates are being automatically installed" msgid "Updates are being automatically installed." msgstr "
                  Γίνεται αυτόματη εγκατάσταση των ενημερώσεων" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 #, fuzzy #| msgid "
                  Updates are being automatically installed" msgid "Security updates are being automatically installed." msgstr "
                  Γίνεται αυτόματη εγκατάσταση των ενημερώσεων" -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "" -#: SmartIcon/KpkDistroUpgrade.cpp:68 +#: SmartIcon/KpkInstallProvideFile.cpp:47 +#, fuzzy +#| msgid "The following packages will also be removed for dependencies" +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" +msgstr[1] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "Distribution upgrade finished. " msgstr "Ανάκτηση πληροφοριών ενημέρωσης διανομής" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +#, fuzzy +#| msgid "Transactions" +msgid "Failed to start resolve transaction" +msgstr "Συναλλαγές" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgid "Transactions" +msgid "User canceled the transaction" +msgstr "Συναλλαγές" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Άγνωστο σφάλμα" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                  • %2
                  Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                  • %2
                  Do you want to search " +"for and install these packages now?" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "1 εγκατεστημένο πακέτο" +msgstr[1] "1 εγκατεστημένο πακέτο" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "1 εγκατεστημένο πακέτο" +msgstr[1] "1 εγκατεστημένο πακέτο" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Εγκατάσταση" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Το πακέτο είναι ήδη εγκατεστημένο" +msgstr[1] "Το πακέτο είναι ήδη εγκατεστημένο" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Failed to install packages" +msgstr "1 εγκατεστημένο πακέτο" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." +msgstr[1] "" +"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -3077,239 +3315,304 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt και άλλα στοιχεία" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Συναλλαγές" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Refresh Packages List" -msgid "Refresh package list" -msgstr "Ανανέωση λίστας πακέτων" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy -#| msgid "Updates" -msgid "Show messages" -msgstr "Ενημερώσεις" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format -#| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Όνομα πακέτου" -msgstr[1] "Όνομα πακέτου" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" -msgstr[0] "" -msgstr[1] "" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 #, fuzzy -#| msgid "The update has completed" -msgid "The system update has completed" -msgstr "Η ενημέρωση ολοκληρώθηκε" +#| msgid "Search failed" +msgctxt "Search for packages" +msgid "Search" +msgstr "Αποτυχία αναζήτησης" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 #, fuzzy -#| msgid "Restart" -msgctxt "Restart the computer" -msgid "Restart" -msgstr "Επανεκκίνηση" +#| msgid "Failed to initialize" +msgid "Failed to search for provides" +msgstr "Αποτυχία αρχικοποίησης" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to find font" +msgstr "Αποτυχία ολοκλήρωσης" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend or it is not a file" +#| msgid_plural "" +#| "These items are not supported by your backend or they are not files" +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Το αντικείμενο δεν υποστηρίζεται από το σύστημα υποστήριξης ή δεν πρόκειται " +"για αρχείο" +msgstr[1] "" +"Τα αντικείμενα δεν υποστηρίζονται από το σύστημα υποστήριξης ή δεν πρόκειται " +"για αρχεία" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Αδύνατη η εγκατάσταση" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -#, fuzzy -#| msgid "KPackageKit Settings" -msgid "KPackageKit settings" -msgstr "Ρυθμίσεις KPackageKit" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Εγκατάσταση" -#: Settings/KpkSettings.cpp:60 -#, fuzzy -#| msgid "Hourly" -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Ωριαία" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" -#: Settings/KpkSettings.cpp:61 -#, fuzzy -#| msgid "Daily" -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Καθημερινά" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Εγκατάσταση;" -#: Settings/KpkSettings.cpp:62 +#: SmartIcon/PkInstallPackageFiles.cpp:149 #, fuzzy -#| msgid "Weekly" -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Εβδομαδιαία" +#| msgid "The package is not installed" +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Το πακέτο δεν είναι εγκατεστημένο" +msgstr[1] "Το πακέτο δεν είναι εγκατεστημένο" -#: Settings/KpkSettings.cpp:63 +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 #, fuzzy -#| msgid "Monthly" -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Μηνιαία" +#| msgid "Failed to initialize" +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Αποτυχία αρχικοποίησης" +msgstr[1] "Αποτυχία αρχικοποίησης" -#: Settings/KpkSettings.cpp:64 +#: SmartIcon/PkInstallPackageFiles.cpp:235 #, fuzzy -#| msgid "Never" -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Ποτέ" +#| msgid "Sorry an error occurred" +msgid "An error occurred." +msgstr "Δυστυχώς συνέβη ένα σφάλμα" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Μόνο ασφαλείας" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                  • %2
                  Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                  • %2
                  Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Όλες τις ενημερώσεις" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:68 -#, fuzzy -#| msgid "None" -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Κανένα" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:164 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to set origin data" -msgstr "Αποτυχία αρχικοποίησης" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -#, fuzzy -#| msgid "The following packages will also be removed for dependencies" -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" -msgstr[1] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -#, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" -msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:57 +#: SmartIcon/PkInstallGStreamerResources.cpp:155 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" -msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, fuzzy, kde-format -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" -#: KPackageKit/KpkInstallProvideFile.cpp:68 +#: SmartIcon/PkInstallGStreamerResources.cpp:165 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Εγκατάσταση" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Could not find plugin in any configured software source" +msgstr "" +"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 +#: SmartIcon/PkInstallGStreamerResources.cpp:167 #, fuzzy #| msgid "Failed to initialize" -msgid "Failed to start search file transaction" +msgid "Failed to search for plugin" msgstr "Αποτυχία αρχικοποίησης" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "Το πακέτο είναι ήδη εγκατεστημένο" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 +#: SmartIcon/PkSearchFile.cpp:91 #, fuzzy -#| msgid "The following packages will also be installed as dependencies" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" -msgstr[1] "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The file name could not be found in any software source" +msgstr "" +"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Συναλλαγές" -#: KPackageKit/KpkInstallProvideFile.cpp:116 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Το καθορισμένο αρχείο δεν βρέθηκε" -msgstr[1] "Το καθορισμένο αρχείο δεν βρέθηκε" +#| msgid "Refresh Packages List" +msgid "Refresh package list" +msgstr "Ανανέωση λίστας πακέτων" -#: KPackageKit/KpkInstallProvideFile.cpp:118 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "Failed to find package" -msgstr "1 εγκατεστημένο πακέτο" +#| msgid "Updates" +msgid "Show messages" +msgstr "Ενημερώσεις" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package Name" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Όνομα πακέτου" +msgstr[1] "Όνομα πακέτου" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +#, fuzzy +#| msgid "The update has completed" +msgid "The system update has completed" +msgstr "Η ενημέρωση ολοκληρώθηκε" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +#, fuzzy +#| msgid "Restart" +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Επανεκκίνηση" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Όχι τώρα" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +msgid "%1" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#: SmartIcon/PkRemovePackageByFiles.cpp:63 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following file is going to be removed:" @@ -3317,7 +3620,7 @@ msgstr[0] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" msgstr[1] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -3326,14 +3629,14 @@ msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 #, fuzzy #| msgid "Search failed" msgctxt "Search for a package and remove" msgid "Search" msgstr "Αποτυχία αναζήτησης" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following package will be removed" @@ -3341,7 +3644,7 @@ msgstr[0] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" msgstr[1] "Τα παρακάτω πακέτα θα αφαιρεθούν επίσης λόγω εξαρτήσεων" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -3349,233 +3652,223 @@ msgstr[0] "Το καθορισμένο αρχείο δεν βρέθηκε" msgstr[1] "Το καθορισμένο αρχείο δεν βρέθηκε" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" +msgid "" +"An additional program is required to open this type of file:
                  • %1
                  • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" -msgstr "" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Updates" -msgid "Show updates" -msgstr "Ενημερώσεις" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:47 +#: SmartIcon/PkInstallMimeTypes.cpp:68 #, fuzzy -#| msgid "Settings" -msgid "Show settings" -msgstr "Ρυθμίσεις" +#| msgid "Search failed" +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Αποτυχία αναζήτησης" -#: KPackageKit/main.cpp:48 -#, fuzzy -#| msgid "Search package name" -msgid "Show backend details" -msgstr "Αναζήτηση ονόματος πακέτου" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" -#: KPackageKit/main.cpp:49 +#: SmartIcon/PkInstallMimeTypes.cpp:123 #, fuzzy -#| msgid "Failed to initialize" -msgid "Mime type installer" -msgstr "Αποτυχία αρχικοποίησης" +#| msgid "Failed to finalize" +msgid "Failed to find software" +msgstr "Αποτυχία ολοκλήρωσης" -#: KPackageKit/main.cpp:50 -#, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "Αρχείο πακέτου για εγκατάσταση" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                    Do you want to install this catalog?

                    • %2
                    " +msgid_plural "" +"

                    Do you want to install these catalogs?

                    • %2
                    " +msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" -#: KPackageKit/main.cpp:51 +#: SmartIcon/PkInstallCatalogs.cpp:58 #, fuzzy -#| msgid "Package file to install" -msgid "Single file installer" -msgstr "Αρχείο πακέτου για εγκατάσταση" +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Εγκατάσταση τώρα" +msgstr[1] "Εγκατάσταση τώρα" -#: KPackageKit/main.cpp:52 +#: SmartIcon/PkInstallCatalogs.cpp:62 #, fuzzy -#| msgid "Searching for package name" -msgid "Single package remover" -msgstr "Αναζήτηση ονόματος πακέτου" - -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Αρχείο πακέτου για εγκατάσταση" +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Εγκατάσταση" -#: KPackageKit/KpkInstallFiles.cpp:81 +#: SmartIcon/PkInstallCatalogs.cpp:99 #, fuzzy -#| msgid "This item is not supported by your backend or it is not a file" -#| msgid_plural "" -#| "These items are not supported by your backend or they are not files" -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Το αντικείμενο δεν υποστηρίζεται από το σύστημα υποστήριξης ή δεν πρόκειται " -"για αρχείο" -msgstr[1] "" -"Τα αντικείμενα δεν υποστηρίζονται από το σύστημα υποστήριξης ή δεν πρόκειται " -"για αρχεία" +#| msgid "Sorry, your backend does not support installing packages" +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Δυστυχώς, το σύστημα υποστήριξης δεν υποστηρίζει την εγκατάσταση πακέτων" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Αδύνατη η εγκατάσταση" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Δεν υποστηρίζεται από αυτό το σύστημα υποστήριξης" -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Εγκατάσταση" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Αρχείο πακέτου για εγκατάσταση" +msgstr[1] "Αρχείο πακέτου για εγκατάσταση" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" -msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Αποτυχία ολοκλήρωσης" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Εγκατάσταση;" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Αδυναμία εγκατάστασης πηγαίων πακέτων" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 +#: SmartIcon/PkInstallCatalogs.cpp:206 #, fuzzy -#| msgid "The package is not installed" -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Το πακέτο δεν είναι εγκατεστημένο" -msgstr[1] "Το πακέτο δεν είναι εγκατεστημένο" +#| msgid "Transactions" +msgid "Failed to start setup transaction" +msgstr "Συναλλαγές" -#: KPackageKit/KpkInstallFiles.cpp:172 +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 #, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Αποτυχία αρχικοποίησης" -msgstr[1] "Αποτυχία αρχικοποίησης" +#| msgid "KPackageKit Settings" +msgid "KPackageKit settings" +msgstr "Ρυθμίσεις KPackageKit" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 +#: Settings/KpkSettings.cpp:61 #, fuzzy -#| msgid "Failed to initialize" -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Αποτυχία αρχικοποίησης" -msgstr[1] "Αποτυχία αρχικοποίησης" +#| msgid "Hourly" +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Ωριαία" -#: KPackageKit/KpkInstallFiles.cpp:197 +#: Settings/KpkSettings.cpp:62 #, fuzzy -#| msgid "Sorry an error occurred" -msgid "An error occurred." -msgstr "Δυστυχώς συνέβη ένα σφάλμα" +#| msgid "Daily" +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Καθημερινά" -#: KPackageKit/KpkInstallPackageName.cpp:47 +#: Settings/KpkSettings.cpp:63 #, fuzzy -#| msgid "
                    A system reboot is required" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "
                    Απαιτείται επανεκκίνηση του συστήματος" -msgstr[1] "
                    Απαιτείται επανεκκίνηση του συστήματος" +#| msgid "Weekly" +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Εβδομαδιαία" -#: KPackageKit/KpkInstallPackageName.cpp:50 +#: Settings/KpkSettings.cpp:64 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" -msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" +#| msgid "Monthly" +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Μηνιαία" -#: KPackageKit/KpkInstallPackageName.cpp:57 +#: Settings/KpkSettings.cpp:65 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "1 εγκατεστημένο πακέτο" -msgstr[1] "1 εγκατεστημένο πακέτο" +#| msgid "Never" +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Ποτέ" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "1 εγκατεστημένο πακέτο" -msgstr[1] "1 εγκατεστημένο πακέτο" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Μόνο ασφαλείας" -#: KPackageKit/KpkInstallPackageName.cpp:68 +#: Settings/KpkSettings.cpp:68 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Εγκατάσταση" +#| msgid "All Updates" +msgid "All updates" +msgstr "Όλες τις ενημερώσεις" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:69 #, fuzzy -#| msgid "Transactions" -msgid "Failed to start resolve transaction" -msgstr "Συναλλαγές" +#| msgid "None" +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Κανένα" -#: KPackageKit/KpkInstallPackageName.cpp:112 +#: Settings/KpkSettings.cpp:167 #, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." -msgstr[1] "" -"Το πακέτο που τροποποιείται δε βρέθηκε στο σύστημά σας ή σε οποιαδήποτε πηγή 
λογισμικού." +#| msgid "Failed to initialize" +msgid "Failed to set origin data" +msgstr "Αποτυχία αρχικοποίησης" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                    %1
                    Do " -"you want to search for a program to open this file type now?" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Updates" +msgid "Show updates" +msgstr "Ενημερώσεις" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:47 +#, fuzzy +#| msgid "Settings" +msgid "Show settings" +msgstr "Ρυθμίσεις" -#: KPackageKit/KpkInstallMimeType.cpp:64 +#: KPackageKit/main.cpp:48 #, fuzzy -#| msgid "Search failed" -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Αποτυχία αναζήτησης" +#| msgid "Search package name" +msgid "Show backend details" +msgstr "Αναζήτηση ονόματος πακέτου" -#: KPackageKit/KpkInstallMimeType.cpp:78 +#: KPackageKit/main.cpp:49 #, fuzzy #| msgid "Failed to initialize" -msgid "Failed to search for provides" +msgid "Mime type installer" msgstr "Αποτυχία αρχικοποίησης" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "Αρχείο πακέτου για εγκατάσταση" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Package file to install" +msgid "Single file installer" +msgstr "Αρχείο πακέτου για εγκατάσταση" -#: KPackageKit/KpkInstallMimeType.cpp:108 +#: KPackageKit/main.cpp:52 #, fuzzy -#| msgid "Failed to finalize" -msgid "Failed to find software" -msgstr "Αποτυχία ολοκλήρωσης" +#| msgid "Searching for package name" +msgid "Single package remover" +msgstr "Αναζήτηση ονόματος πακέτου" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Αρχείο πακέτου για εγκατάσταση" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" @@ -3589,7 +3882,7 @@ msgid "Your emails" msgstr "Ανάκτηση λεπτομερειών" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3597,13 +3890,13 @@ msgid "Select all updates" msgstr "Ενημέρωση ασφαλείας" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Ανανέωση" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3643,13 +3936,13 @@ msgid "Required by" msgstr "Απαιτείται από" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Προσθήκη και αφαίρεση λογισμικού" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 #, fuzzy @@ -3657,138 +3950,144 @@ msgid "Search packages" msgstr "Αναζήτηση ονόματος πακέτου" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Φίλτρα" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Όλα τα πακέτα" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - διεργασία" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Συναλλαγές" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Education" +msgid "icon" +msgstr "Εκπαίδευση" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Λήψη πακέτων" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Μια βιβλιοθήκη χωρίς λειτουργία" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Education" msgid "Actions" msgstr "Εκπαίδευση" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Όνομα χώρου αποθήκευσης:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL υπογραφής:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Αναγνωριστικό χρήστη υπογραφής:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Αναγνωριστικό υπογραφής:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Αναγνωρίζετε τον χρήστη και εμπιστεύεστε το κλειδί του;" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Εμπιστεύεστε την προέλευση των πακέτων;" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" "Παρακαλώ διαβάστε τις παρακάτω σημαντικές πληροφορίες πριν τη συνέχεια:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Ρυθμίσεις" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Ρυθμίσεις KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Έλεγχος ενημερώσεων:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "Ενημέρωση" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Αυτόματη εγκατάσταση:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Έλεγχος ενημερώσεων:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Έξυπνο εικονίδιο συστήματος" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Αυτόματη εγκατάσταση:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 #, fuzzy @@ -3796,33 +4095,29 @@ msgid "Notify when updates are available" msgstr "Ειδοποίηση διαθεσιμότητας ενημερώσεων" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Ειδοποίηση ολοκλήρωσης χρονοβόρων διεργασιών" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Προέλευση πακέτων" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Εμφάνιση προέλευσης πακέτων αποσφαλμάτωσης και ανάπτυξης" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 #, fuzzy #| msgid "Package Name" msgid "Backend name:" @@ -3830,7 +4125,7 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package Name" msgid "backend name here" @@ -3838,13 +4133,21 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 #, fuzzy #| msgid "Package Name" msgid "Backend author:" msgstr "Όνομα πακέτου" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Description" +msgid "Backend description:" +msgstr "Περιγραφή" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 #, fuzzy @@ -3852,256 +4155,321 @@ msgid "backend author name here" msgstr "Όνομα πακέτου" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package Name" +msgid "backend description here" +msgstr "Όνομα πακέτου" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Απαγόρευση εγκατάστασης πακέτου" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Μόνο ελεύθερο λογισμικό" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Ενημερώσεις" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgid "Updating packages" msgid "UpdatePackage" msgstr "Ενημέρωση πακέτων" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 #, fuzzy #| msgid "Repository name:" msgid "GetRepositoryList" msgstr "Όνομα χώρου αποθήκευσης:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Ανανέωση" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "InstallPackage" msgstr "1 εγκατεστημένο πακέτο" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 #, fuzzy #| msgid "Repository name:" msgid "RepositoryEnable" msgstr "Όνομα χώρου αποθήκευσης:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgid "Update System" msgid "UpdateSystem" msgstr "Ενημέρωση συστήματος" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgid "Failed to create a thread" msgid "RemovePackage" msgstr "Αποτυχία δημιουργίας ενός νήματος" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Όνομα χώρου αποθήκευσης:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgid "Search failed" msgid "SearchName" msgstr "Αποτυχία αναζήτησης" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Εξαρτάται από" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 #, fuzzy #| msgid "Getting what provides" msgid "WhatProvides" msgstr "Ανάκτηση περιεχομένων" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgid "Searching details" msgid "SearchDetails" msgstr "Αναζήτηση λεπτομερειών" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgid "Getting requires" msgid "GetRequires" msgstr "Ανάκτηση απαιτήσεων" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Όλα τα πακέτα" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgid "Searching groups" msgid "SearchGroup" msgstr "Αναζήτηση ομάδων" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgid "Getting update detail" msgid "GetUpdateDetail" msgstr "Ανάκτηση λεπτομερειών ενημέρωσης" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgid "Search killed" msgid "SearchFile" msgstr "Τερματισμός αναζήτησης" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Περιγραφή" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Λεπτομέρειες" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgid "Resolving" msgid "Resolve" msgstr "Επίλυση" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Εγκατεστημένο" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Εγκατεστημένο" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "SimulateInstallPackages" msgstr "1 εγκατεστημένο πακέτο" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "Failed to create a thread" msgid "SimulateRemovePackages" msgstr "Αποτυχία δημιουργίας ενός νήματος" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "Updating packages" msgid "SimulateUpdatePackages" msgstr "Ενημέρωση πακέτων" +#, fuzzy +#~| msgid "Transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Συναλλαγές" + +#, fuzzy +#~| msgid "This item is not supported by your backend or it is not a file" +#~| msgid_plural "" +#~| "These items are not supported by your backend or they are not files" +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Το αντικείμενο δεν υποστηρίζεται από το σύστημα υποστήριξης ή δεν " +#~ "πρόκειται για αρχείο" +#~ msgstr[1] "" +#~ "Τα αντικείμενα δεν υποστηρίζονται από το σύστημα υποστήριξης ή δεν " +#~ "πρόκειται για αρχεία" + +#, fuzzy +#~| msgid "
                    A system reboot is required" +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "
                    Απαιτείται επανεκκίνηση του συστήματος" +#~ msgstr[1] "
                    Απαιτείται επανεκκίνηση του συστήματος" + +#, fuzzy +#~| msgid "Do you want to install this file?" +#~| msgid_plural "Do you want to install these files?" +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Επιθυμείτε την εγκατάσταση του αρχείου;" +#~ msgstr[1] "Επιθυμείτε την εγκατάσταση αυτών των αρχείων;" + +#, fuzzy +#~| msgid "All Packages" +#~ msgid "All packages" +#~ msgstr "Όλα τα πακέτα" + +#~ msgid "Package Name" +#~ msgstr "Όνομα πακέτου" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Ρυθμίσεις KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Έξυπνο εικονίδιο συστήματος" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Ειδοποίηση ολοκλήρωσης χρονοβόρων διεργασιών" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - διεργασία" + +#~ msgid "A library to do foo" +#~ msgstr "Μια βιβλιοθήκη χωρίς λειτουργία" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Τα παρακάτω πακέτα θα εγκατασταθούν επίσης λόγω εξαρτήσεων" @@ -4115,11 +4483,6 @@ #~ msgstr "Τα παρακάτω πακέτα θα πρέπει επίσης να αφαιρεθούν/εγκατασταθούν:" #, fuzzy -#~| msgid "Getting package lists" -#~ msgid "Failed to update package lists" -#~ msgstr "Ανάκτηση λίστας πακέτων" - -#, fuzzy #~| msgid "Refresh Packages List" #~ msgid "Failed to refresh package lists" #~ msgstr "Ανανέωση λίστας πακέτων" @@ -4182,9 +4545,6 @@ #~ msgid "Downloading" #~ msgstr "Λήψη" -#~ msgid "Updating" -#~ msgstr "Ενημέρωση" - #~ msgid "Cleaning Up" #~ msgstr "Καθαρισμός" @@ -4254,11 +4614,6 @@ #~ msgid "Information" #~ msgstr "Πληροφορίες" -#, fuzzy -#~| msgid "Description" -#~ msgid "Find Description" -#~ msgstr "Περιγραφή" - #~ msgid "Search canceled" #~ msgstr "Ακύρωση αναζήτησης" diff -Nru kpackagekit-0.5.4/po/en_GB/kpackagekit.po kpackagekit-0.6.0/po/en_GB/kpackagekit.po --- kpackagekit-0.5.4/po/en_GB/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/en_GB/kpackagekit.po 2010-01-30 09:00:21.000000000 +0000 @@ -6,8 +6,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-05-22 16:49+0100\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-08 11:07+0000\n" "Last-Translator: Andrew Coles \n" "Language-Team: British English \n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Details" @@ -45,14 +45,12 @@ msgstr "Application" #: Updater/KcmKpkUpdate.cpp:37 -#, fuzzy -#| msgid "Show updates" msgid "Software update" -msgstr "Show updates" +msgstr "Software update" #: Updater/KcmKpkUpdate.cpp:39 msgid "KDE interface for updating software" -msgstr "" +msgstr "KDE interface for updating software" #: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 #: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 @@ -95,20 +93,20 @@ "It is recommended that you keep your computer plugged in while the upgrade " "is being performed." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Distribution upgrade complete." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Distribution upgrade process exited with code %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "The distribution upgrade process failed to start." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -116,7 +114,7 @@ "The distribution upgrade process crashed some time after starting " "successfully." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "The distribution upgrade process failed with an unknown error." @@ -196,288 +194,286 @@ msgid "Time since last cache refresh: %1" msgstr "Time since last cache refresh: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Package Name" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Home Page" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licence" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Group" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Home Page" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr " " -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "No files were found." #: AddRm/KcmKpkAddRm.cpp:37 -#, fuzzy -#| msgid "Add and Remove Software" msgid "Add and remove software" -msgstr "Add and Remove Software" +msgstr "Add and remove software" #: AddRm/KcmKpkAddRm.cpp:39 msgid "KDE interface for managing software" -msgstr "" +msgstr "KDE interface for managing software" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Find" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "All packages" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Text search" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "List of changes" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Group:" msgstr[1] "Groups:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cancel" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Find by &name" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Find by f&ile name" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Find by &description" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Review Changes" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Collections" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Only collections" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Exclude collections" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installed" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Only installed" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Only available" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "No filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Development" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Only development" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Only end user files" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Graphical" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Only graphical" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Only text" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Free" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Only free software" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Only non-free software" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architectures" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Only native architectures" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Only non-native architectures" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Source" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Only sourcecode" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Only non-sourcecode" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Hide subpackages" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Only show one package, not subpackages" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Only newest packages" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Only show the newest available package" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "View in groups" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Display packages in groups according to status" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "The following package will be installed:" msgstr[1] "The following packages will be installed:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Install Now" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "The following package will be removed:" msgstr[1] "The following packages will be removed:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Remove Now" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "The following package will be removed and installed:" msgstr[1] "The following packages will be removed and installed:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Apply Now" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Failed to simulate package removal" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "The current backend does not support removing packages." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit Error" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Failed to simulate package install" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Current backend does not support installing packages." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Failed to remove package" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Failed to install package" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Failed to remove package" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Hide" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Allows you to hide the window whilst keeping the transaction task running." -#: libkpackagekit/KpkTransaction.cpp:330 -#, fuzzy -#| msgid "" -#| "
                    Installing unsigned packages can compromise your system, as it is " -#| "impossible to verify if the software came from a trusted source. Are you " -#| "sure you want to continue installation?" +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -"
                    Installing unsigned packages can compromise your system, as it is " -"impossible to verify if the software came from a trusted source. Are you " -"sure you want to continue installation?" +"You are about to install unsigned packages can compromise your system, as it " +"is impossible to verify if the software came from a trusted source.\n" +" Are you sure you want to continue installation?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Installing unsigned software" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "A media change is required" @@ -488,10 +484,8 @@ #: libkpackagekit/KpkPackageModel.cpp:142 #: libkpackagekit/KpkSimulateModel.cpp:122 -#, fuzzy -#| msgid "KPackageKit" msgid "Package" -msgstr "KPackageKit" +msgstr "Package" #: libkpackagekit/KpkLicenseAgreement.cpp:34 msgid "Accept Agreement" @@ -499,7 +493,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Licence Agreement Required" @@ -509,917 +503,874 @@ msgstr "Licence required for %1 by %2" #: libkpackagekit/KpkSimulateModel.cpp:124 -#, fuzzy -#| msgid "New version" msgid "Version" -msgstr "New version" +msgstr "Version" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cancel" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Finished in %1." #: libkpackagekit/KpkRequirements.cpp:219 -#, fuzzy -#| msgid "List of changes" msgid "Additional changes" -msgstr "List of changes" +msgstr "Additional changes" #: libkpackagekit/KpkRequirements.cpp:221 msgid "Continue" -msgstr "" +msgstr "Continue" #: libkpackagekit/KpkRequirements.cpp:252 -#, fuzzy, kde-format -#| msgid "Single package remover" +#, kde-format msgid "1 package to remove" msgid_plural "%1 packages to remove" -msgstr[0] "Single package remover" -msgstr[1] "Single package remover" +msgstr[0] "1 package to remove" +msgstr[1] "%1 packages to remove" #: libkpackagekit/KpkRequirements.cpp:261 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to downgrade" msgid_plural "%1 packages to downgrade" -msgstr[0] "No packages to update" -msgstr[1] "No packages to update" +msgstr[0] "1 package to downgrade" +msgstr[1] "%1 packages to downgrade" #: libkpackagekit/KpkRequirements.cpp:272 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to reinstall" msgid_plural "%1 packages to reinstall" -msgstr[0] "Package file to install" -msgstr[1] "Package file to install" +msgstr[0] "1 package to reinstall" +msgstr[1] "%1 packages to reinstall" #: libkpackagekit/KpkRequirements.cpp:283 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to install" msgid_plural "%1 packages to install" -msgstr[0] "Package file to install" -msgstr[1] "Package file to install" +msgstr[0] "1 package to install" +msgstr[1] "%1 packages to install" #: libkpackagekit/KpkRequirements.cpp:294 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to update" msgid_plural "%1 packages to update" -msgstr[0] "No packages to update" -msgstr[1] "No packages to update" +msgstr[0] "1 package to update" +msgstr[1] "%1 packages to update" #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Software signature is required" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Unknown state" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Waiting for service to start" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Waiting for other tasks" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Running task" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Querying" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Getting information" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Removing packages" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Downloading packages" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Installing packages" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Refreshing software list" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Updating packages" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Cleaning up packages" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Obsoleting packages" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Resolving dependencies" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Checking signatures" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Rolling back" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Testing changes" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Committing changes" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Requesting data" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Finished" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Cancelling" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Downloading repository information" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Downloading list of packages" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Downloading file lists" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Downloading lists of changes" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Downloading groups" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Downloading update information" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Repackaging files" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Loading cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Scanning installed applications" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generating package lists" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Waiting for package manager lock" -#: libkpackagekit/KpkStrings.cpp:95 -#, fuzzy -#| msgctxt "The transaction state" -#| msgid "Waiting for other tasks" -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" -msgstr "Waiting for other tasks" +msgstr "Waiting for authentication" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" -msgstr "" +msgstr "Updating the list of running applications" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" -msgstr "" +msgstr "Checking for applications currently in use" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" -msgstr "" +msgstr "Checking for libraries currently in use" + +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Copying files" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Downloaded" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Updated" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installed" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Removed" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Cleaned Up" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Obsoleted" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Unknown role type" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Getting dependencies" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Getting update detail" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Getting details" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Getting requires" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Getting updates" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Searching details" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Searching for file" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Searching groups" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Searching by package name" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Removing" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installing" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Installing file" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Refreshing package cache" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Updating packages" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Updating system" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Canceling" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Rolling back" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Getting list of repositories" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Enabling repository" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Setting repository data" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Resolving" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Getting file list" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Getting what provides" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Installing signature" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Getting package lists" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Accepting EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Downloading packages" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Getting distribution upgrade information" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Getting categories" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Getting old transactions" -#: libkpackagekit/KpkStrings.cpp:194 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" -msgstr "Failed to install file" +msgstr "Simulating the install of files" -#: libkpackagekit/KpkStrings.cpp:196 -#, fuzzy -#| msgid "Single file installer" +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" -msgstr "Single file installer" +msgstr "Simulating the install" -#: libkpackagekit/KpkStrings.cpp:198 -#, fuzzy -#| msgid "Single package remover" +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" -msgstr "Single package remover" +msgstr "Simulating the remove" -#: libkpackagekit/KpkStrings.cpp:200 -#, fuzzy -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" -msgstr "1 important update" +msgstr "Simulating the update" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Unknown role type" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Got dependencies" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Got update detail" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Got details" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Got requires" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Got updates" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Searched for package details" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Searched for file" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Searched groups" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Searched for package name" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Removed packages" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Installed packages" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Installed local files" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Refreshed package cache" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Updated packages" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Updated system" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Canceled" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Rolled back" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Got list of repositories" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Enabled repository" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Set repository data" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Resolved" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Got file list" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Got what provides" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Installed signature" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Got package lists" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Accepted EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Downloaded packages" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Got distribution upgrades" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Got categories" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Got old transactions" -#: libkpackagekit/KpkStrings.cpp:272 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" -msgstr "Failed to install file" +msgstr "Simulated the install of files" -#: libkpackagekit/KpkStrings.cpp:274 -#, fuzzy -#| msgid "Mime type installer" +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" -msgstr "Mime type installer" +msgstr "Simulated the install" -#: libkpackagekit/KpkStrings.cpp:276 -#, fuzzy -#| msgid "Single package remover" +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" -msgstr "Single package remover" +msgstr "Simulated the remove" -#: libkpackagekit/KpkStrings.cpp:278 -#, fuzzy -#| msgid "Failed to update system" +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" -msgstr "Failed to update system" +msgstr "Simulated the update" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "No network connection available" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "No package cache is available" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Out of memory" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Failed to create a thread" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Not supported by this backend" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "An internal system error has occurred" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "A security trust relationship is not present" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "The package is not installed" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "The package was not found" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "The package is already installed" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "The package download failed" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "The group was not found" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "The group list was invalid" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Dependency resolution failed" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Search filter was invalid" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "The package identifier was not well formed" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Transaction error" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Repository name was not found" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Could not remove a protected system package" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "The task was cancelled" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "The task was forcibly cancelled" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Reading the config file failed" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "The task cannot be cancelled" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Source packages cannot be installed" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "The licence agreement failed" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Local file conflict between packages" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Packages are not compatible" -#: libkpackagekit/KpkStrings.cpp:342 -#, fuzzy -#| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" -msgstr "Problem connecting to a software source" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "Problem connecting to a software origin" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Failed to initialise" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Failed to finalise" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Cannot get lock" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "No packages to update" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Cannot write repository configuration" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Local install failed" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Bad GPG signature" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Missing GPG signature" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Repository configuration invalid" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Invalid package file" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Package install blocked" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Package is corrupt" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "All packages are already installed" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "The specified file could not be found" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "No more mirrors are available" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "No distribution upgrade data is available" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Package is incompatible with this system" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "No space is left on the disk" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" -msgstr "" +msgstr "Authorisation failed" -#: libkpackagekit/KpkStrings.cpp:384 -#, fuzzy -#| msgid "The package was not found" +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" -msgstr "The package was not found" +msgstr "Update not found" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "Cannot install from untrusted origin" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "Cannot update from untrusted origin" -#: libkpackagekit/KpkStrings.cpp:390 -#, fuzzy -#| msgctxt "The role of the transaction, in past tense" -#| msgid "Got file list" +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" -msgstr "Got file list" +msgstr "Cannot get the file list" -#: libkpackagekit/KpkStrings.cpp:392 -#, fuzzy -#| msgid "An additional package is required:" -#| msgid_plural "Additional packages are required:" +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" -msgstr "An additional package is required:" +msgstr "Cannot get package requires" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "Cannot disable origin" -#: libkpackagekit/KpkStrings.cpp:396 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" -msgstr "The package download failed" +msgstr "The download failed" -#: libkpackagekit/KpkStrings.cpp:398 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" -msgstr "Package file to install" +msgstr "Package failed to configure" -#: libkpackagekit/KpkStrings.cpp:400 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" -msgstr "Package file to install" +msgstr "Package failed to build" -#: libkpackagekit/KpkStrings.cpp:402 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" -msgstr "Package file to install" +msgstr "Package failed to install" -#: libkpackagekit/KpkStrings.cpp:404 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" -msgstr "Package file to install" +msgstr "Package failed to be removed" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Unknown error" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1427,7 +1378,7 @@ "There is no network connection available.\n" "Please check your connection settings and try again" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1435,7 +1386,7 @@ "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1445,11 +1396,11 @@ "memory.\n" "Please close some programs or restart your computer." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "A thread could not be created to service the user request." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1457,7 +1408,7 @@ "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1465,42 +1416,33 @@ "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." -#: libkpackagekit/KpkStrings.cpp:433 -#, fuzzy -#| msgid "" -#| "A security trust relationship could not be made with the software " -#| "source.\n" -#| "Please check your software signature settings." +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -"A security trust relationship could not be made with the software source.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "The package that is trying to be removed or updated is not already installed." -#: libkpackagekit/KpkStrings.cpp:438 -#, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "The package that is being modified was not found on your system or in any " -"software source." +"software origin." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "The package that is trying to be installed is already installed." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1508,7 +1450,7 @@ "The package download failed.\n" "Please check your network connectivity." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1516,22 +1458,17 @@ "The group type was not found.\n" "Please check your group list and try again." -#: libkpackagekit/KpkStrings.cpp:448 -#, fuzzy -#| msgid "" -#| "The group list could not be loaded.\n" -#| "Refreshing your cache may help, although this is normally a software " -#| "source error." +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software source " +"Refreshing your cache may help, although this is normally a software origin " "error." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1539,11 +1476,11 @@ "A package dependency could not be found.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "The search filter was not correctly formed." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1551,7 +1488,7 @@ "The package identifier was not well formed when sent to the system dæmon.\n" "This normally indicates an internal bug and should be reported." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1559,27 +1496,23 @@ "An error occurred while running the transaction.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:463 -#, fuzzy -#| msgid "" -#| "The remote software source name was not found.\n" -#| "You may need to enable an item in Software Sources." +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -"The remote software source name was not found.\n" -"You may need to enable an item in Software Sources." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Removing a protected system package is not allowed." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "The task was canceled successfully and no packages were changed." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1587,7 +1520,7 @@ "The task was cancelled successfully and no packages were changed.\n" "The backend did not exit cleanly." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1595,11 +1528,11 @@ "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "The task is not safe to be cancelled at this time." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1607,7 +1540,7 @@ "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1615,44 +1548,31 @@ "The licence agreement was not agreed to.\n" "To use this software you have to accept the licence." -#: libkpackagekit/KpkStrings.cpp:484 -#, fuzzy -#| msgid "" -#| "Two packages provide the same file.\n" -#| "This is usually due to mixing packages for different software sources." +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software sources." +"This is usually due to mixing packages for different software origins." -#: libkpackagekit/KpkStrings.cpp:487 -#, fuzzy -#| msgid "" -#| "Multiple packages exist that are not compatible with each other.\n" -#| "This is usually due to mixing packages from different software sources." +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software sources." +"This is usually due to mixing packages from different software origins." -#: libkpackagekit/KpkStrings.cpp:490 -#, fuzzy -#| msgid "" -#| "There was a (possibly temporary) problem connecting to a software " -#| "source.\n" -#| "Please check the detailed error for further details." +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -"There was a (possibly temporary) problem connecting to a software source.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1660,7 +1580,7 @@ "Failed to initialise packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1668,7 +1588,7 @@ "Failed to close down the backend instance.\n" "This error can normally be ignored." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1676,15 +1596,15 @@ "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "None of the selected packages could be updated." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "The repository configuration could not be modified." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1692,11 +1612,11 @@ "Installing the local file failed.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "The package signature could not be verified." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1704,11 +1624,11 @@ "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Repository configuration was invalid and could not be read." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1716,7 +1636,7 @@ "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1724,19 +1644,19 @@ "Installation of this package was prevented by your packaging system's " "configuration." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "The package that was downloaded is corrupt and needs to be downloaded again." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "All of the packages selected for install are already installed on the system." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1744,41 +1664,31 @@ "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." -#: libkpackagekit/KpkStrings.cpp:528 -#, fuzzy -#| msgid "" -#| "Required data could not be found on any of the configured software " -#| "sources.\n" -#| "There were no more download mirrors that could be tried." +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -"Required data could not be found on any of the configured software sources.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." -#: libkpackagekit/KpkStrings.cpp:531 -#, fuzzy -#| msgid "" -#| "Required upgrade data could not be found in any of the configured " -#| "software sources.\n" -#| "The list of distribution upgrades will be unavailable." +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Required upgrade data could not be found in any of the configured software " -"sources.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "The package that is trying to be installed is incompatible with this system." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1786,115 +1696,90 @@ "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Additional media are required to complete the transaction." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" +"You have failed to provide correct authentication.\n" +"Please check any passwords or account settings." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" +"The specified update could not be found.\n" +"It could have already been installed or no longer available on the remote " +"server." -#: libkpackagekit/KpkStrings.cpp:547 -#, fuzzy -#| msgid "The package could not be found in any software source" -#| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." -msgstr "The package could not be found in any software source" - -#: libkpackagekit/KpkStrings.cpp:549 -#, fuzzy -#| msgid "The package could not be found in any software source" -#| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." -msgstr "The package could not be found in any software source" +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "The package could not be installed from untrusted origin." + +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." +msgstr "The package could not be updated from untrusted origin." -#: libkpackagekit/KpkStrings.cpp:551 -#, fuzzy -#| msgid "The file could not be found in any packages" -#| msgid_plural "The files could not be found in any packages" +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." -msgstr "The file could not be found in any packages" +msgstr "The file list is not available for this package." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" +"The information about what requires this package could not be obtained." -#: libkpackagekit/KpkStrings.cpp:555 -#, fuzzy -#| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." -msgstr "The specified file could not be found" +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "The specified software origin could not be disabled." -#: libkpackagekit/KpkStrings.cpp:557 -#, fuzzy -#| msgid "" -#| "A package dependency could not be found.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -"A package dependency could not be found.\n" +"The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:560 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -"Installing the local file failed.\n" +"One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:563 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -"Installing the local file failed.\n" +"One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:566 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -"Installing the local file failed.\n" +"One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:569 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -"Installing the local file failed.\n" +"One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1902,239 +1787,239 @@ "Unknown error, please report a bug.\n" "More information is available in the detailed report." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Accessibility" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Accessories" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Education" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Games" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Graphics" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Office" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Other" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Development" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "System" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME desktop" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE desktop" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE desktop" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Other desktops" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publishing" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servers" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Fonts" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Admin tools" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Legacy" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Localisation" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualisation" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Security" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Power management" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Communication" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Network" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Maps" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Software sources" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Science" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentation" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Electronics" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Package collections" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Vendor" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Newest packages" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Unknown group" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Trivial update" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normal update" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Important update" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Security update" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Bug fix update" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Enhancement update" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blocked update" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Installed" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Available" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Unknown update" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 trivial update" msgstr[1] "%1 trivial updates" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2142,70 +2027,70 @@ msgstr[0] "1 update" msgstr[1] "%1 updates" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 important update" msgstr[1] "%1 important updates" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 security update" msgstr[1] "%1 security updates" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 bug fix update" msgstr[1] "%1 bug fix updates" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 enhancement update" msgstr[1] "%1 enhancement updates" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blocked update" msgstr[1] "%1 blocked updates" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 installed package" msgstr[1] "%1 installed packages" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 available package" msgstr[1] "%1 available packages" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 unknown update" msgstr[1] "%1 unknown updates" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 trivial update selected" msgstr[1] "%1 trivial updates selected" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2213,396 +2098,518 @@ msgstr[0] "1 update selected" msgstr[1] "%1 updates selected" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 important update selected" msgstr[1] "%1 important updates selected" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 security update selected" msgstr[1] "%1 security updates selected" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 bug fix update selected" msgstr[1] "%1 bug fix updates selected" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 enhancement update selected" msgstr[1] "%1 enhancement updates selected" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 installed package selected to be removed" msgstr[1] "%1 installed packages selected to be removed" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 available package selected to be installed" msgstr[1] "%1 available packages selected to be installed" -#: libkpackagekit/KpkStrings.cpp:748 -#, fuzzy, kde-format -#| msgid "1 trivial update" -#| msgid_plural "%1 trivial updates" +#: libkpackagekit/KpkStrings.cpp:787 +#, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" -msgstr[0] "1 trivial update" -msgstr[1] "%1 trivial updates" +msgstr[0] "%1 trivial update" +msgstr[1] "%1 trivial updates, %2 selected" -#: libkpackagekit/KpkStrings.cpp:751 -#, fuzzy, kde-format -#| msgctxt "Type of update, in the case it's just an update" -#| msgid "1 update" -#| msgid_plural "%1 updates" +#: libkpackagekit/KpkStrings.cpp:790 +#, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" msgid_plural "%1 updates, %2 selected" -msgstr[0] "1 update" -msgstr[1] "%1 updates" +msgstr[0] "%1 update" +msgstr[1] "%1 updates, %2 selected" -#: libkpackagekit/KpkStrings.cpp:753 -#, fuzzy, kde-format -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:792 +#, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" -msgstr[0] "1 important update" -msgstr[1] "%1 important updates" +msgstr[0] "%1 important update" +msgstr[1] "%1 important updates, %2 selected" -#: libkpackagekit/KpkStrings.cpp:755 -#, fuzzy, kde-format -#| msgid "1 security update" -#| msgid_plural "%1 security updates" +#: libkpackagekit/KpkStrings.cpp:794 +#, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" -msgstr[0] "1 security update" -msgstr[1] "%1 security updates" +msgstr[0] "%1 security update" +msgstr[1] "%1 security updates, %2 selected" -#: libkpackagekit/KpkStrings.cpp:757 -#, fuzzy, kde-format -#| msgid "1 bug fix update" -#| msgid_plural "%1 bug fix updates" +#: libkpackagekit/KpkStrings.cpp:796 +#, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" -msgstr[0] "1 bug fix update" -msgstr[1] "%1 bug fix updates" +msgstr[0] "%1 bug fix update" +msgstr[1] "%1 bug fix updates, %2 selected" -#: libkpackagekit/KpkStrings.cpp:759 -#, fuzzy, kde-format -#| msgid "1 enhancement update" -#| msgid_plural "%1 enhancement updates" +#: libkpackagekit/KpkStrings.cpp:798 +#, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" -msgstr[0] "1 enhancement update" -msgstr[1] "%1 enhancement updates" +msgstr[0] "%1 enhancement update" +msgstr[1] "%1 enhancement updates, %2 selected" -#: libkpackagekit/KpkStrings.cpp:762 -#, fuzzy, kde-format -#| msgid "1 blocked update" -#| msgid_plural "%1 blocked updates" +#: libkpackagekit/KpkStrings.cpp:801 +#, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" -msgstr[0] "1 blocked update" +msgstr[0] "%1 blocked update" msgstr[1] "%1 blocked updates" -#: libkpackagekit/KpkStrings.cpp:764 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: libkpackagekit/KpkStrings.cpp:803 +#, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" -msgstr[0] "1 installed package" -msgstr[1] "%1 installed packages" +msgstr[0] "%1 installed package" +msgstr[1] "%1 installed packages, %2 selected to be removed" -#: libkpackagekit/KpkStrings.cpp:766 -#, fuzzy, kde-format -#| msgid "1 available package" -#| msgid_plural "%1 available packages" +#: libkpackagekit/KpkStrings.cpp:805 +#, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" -msgstr[0] "1 available package" -msgstr[1] "%1 available packages" +msgstr[0] "%1 available package" +msgstr[1] "%1 available packages, %2 selected to be installed" -#: libkpackagekit/KpkStrings.cpp:769 -#, fuzzy, kde-format -#| msgid "1 unknown update" -#| msgid_plural "%1 unknown updates" +#: libkpackagekit/KpkStrings.cpp:808 +#, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" -msgstr[0] "1 unknown update" +msgstr[0] "%1 unknown update" msgstr[1] "%1 unknown updates" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "No restart is necessary" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "You will be required to restart this application" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "You will be required to log out and back in" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "A restart will be required" -#: libkpackagekit/KpkStrings.cpp:786 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." -msgstr "You will be required to log off and back on after this update" +msgstr "You will be required to log out and back in due to a security update." -#: libkpackagekit/KpkStrings.cpp:788 -#, fuzzy -#| msgid "A restart will be required" +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." -msgstr "A restart will be required" +msgstr "A restart will be required due to a security update." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "No restart is required" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "A restart is required" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "You need to log out and log back in" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "You need to restart the application" -#: libkpackagekit/KpkStrings.cpp:809 -#, fuzzy -#| msgid "You need to log out and log back in" +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." -msgstr "You need to log out and log back in" +msgstr "You need to log out and log back in to remain secure." -#: libkpackagekit/KpkStrings.cpp:811 -#, fuzzy -#| msgid "A restart is required" +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." -msgstr "A restart is required" +msgstr "A restart is required to remain secure." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stable" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Unstable" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testing" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Please insert the CD labelled '%1', and press continue." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Please insert the DVD labelled '%1', and press continue." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Please insert the disc labelled '%1', and press continue." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Please insert the medium labelled '%1', and press continue." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "A mirror is possibly broken" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "The connection was refused" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "The parameter was invalid" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "The priority was invalid" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Backend warning" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Dæmon warning" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "The package list cache is being rebuilt" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "An untrusted package was installed" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "A newer package exists" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Could not find package" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Configuration files were changed" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Package is already installed" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" -msgstr "" +msgstr "Automatic cleanup is being ignored" -#: libkpackagekit/KpkStrings.cpp:883 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "The package download failed" +msgstr "Software source download failed" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "You do not have the necessary privileges to perform this action." -#: libkpackagekit/KpkStrings.cpp:898 -#, fuzzy -#| msgid "Could not remove a protected system package" +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." -msgstr "Could not remove a protected system package" +msgstr "Could not get a transaction id from packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." -msgstr "" +msgstr "Cannot connect to this transaction id." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." -msgstr "" +msgstr "This action is unknown." -#: libkpackagekit/KpkStrings.cpp:904 -#, fuzzy -#| msgid "The package signature could not be verified." +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." -msgstr "The package signature could not be verified." +msgstr "The packagekitd service could not be started." -#: libkpackagekit/KpkStrings.cpp:906 -#, fuzzy -#| msgid "The priority was invalid" +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." -msgstr "The priority was invalid" +msgstr "The query is not valid." -#: libkpackagekit/KpkStrings.cpp:908 -#, fuzzy -#| msgid "The file was not installed" -#| msgid_plural "The files were not installed" +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." -msgstr "The file was not installed" +msgstr "The file is not valid." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." -msgstr "" +msgstr "This function is not yet supported." -#: libkpackagekit/KpkStrings.cpp:912 -#, fuzzy -#| msgid "Could not find package" +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." -msgstr "Could not find package" +msgstr "Could not talk to packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 -#, fuzzy -#| msgid "Unknown error" +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." -msgstr "Unknown error" +msgstr "An unknown error happened." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" -msgstr "" +msgstr "Ignore" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                    • %2
                    Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                    • %2
                    Do you want to search " +"for these now?" +msgstr[0] "" +"The following file is required:
                    • %2
                    Do you want to search " +"for this now?" +msgstr[1] "" +"The following files are required:
                    • %2
                    Do you want to search " +"for these now?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "A program wants to install a file" +msgstr[1] "A program wants to install files" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 wants to install a file" +msgstr[1] "%2 wants to install files" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Install" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Failed to start search file transaction" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "did not agree to search" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "The %1 package already provides this file" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Failed to install file" +msgstr[1] "Failed to install files" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "The following package will be installed" +msgstr[1] "The following packages will be installed" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "The file could not be found in any packages" +msgstr[1] "The files could not be found in any packages" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Failed to find package" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "You have %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                    And another update" msgid_plural "
                    And %1 more updates" msgstr[0] "
                    And another update" msgstr[1] "
                    And %1 more updates" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Review and update" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Not now" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Do not ask again" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Updates are being automatically installed." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Security updates are being automatically installed." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "System update was successful." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "The software update failed." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "The following file is required:" +msgstr[1] "The following files are required:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Do you want to search for this now?" +msgstr[1] "Do you want to search for these now?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 wants to install a file" +msgstr[1] "%1 wants to install files" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Start upgrade now" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Distribution upgrade finished. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Failed to start resolve transaction" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "User cancelled the transaction" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "An unknown error happened" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                    • %2
                    Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                    • %2
                    Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"An additional package is required:
                    • %2
                    Do you want to search " +"for and install this package now?" +msgstr[1] "" +"Additional packages are required:
                    • %2
                    Do you want to search " +"for and install these packages now?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "A program wants to install a package" +msgstr[1] "Failed to install package" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 wants to install a package" +msgstr[1] "%2 wants to install packages" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Install" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "The package %2 is already installed" +msgstr[1] "The packages %2 are already installed" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Failed to install packages" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "Transaction did not finish with success" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "The package could not be found in any software source" +msgstr[1] "The packages could not be found in any software source" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Could not find %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2627,202 +2634,265 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt and other stuff" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgstr[1] "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "A program wants to install a font" +msgstr[1] "A program wants to install fonts" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 wants to install a font" +msgstr[1] "%2 wants to install fonts" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Search" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Failed to search for provides" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Application that can open this type of file" +msgstr[1] "Applications that can open this type of file" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "No new fonts can be found for this document" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Failed to find font" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "This item is not supported by your backend, or it is not a file. " +msgstr[1] "" +"These items are not supported by your backend, or they are not files." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Impossible to install" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Install" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Do you want to install this file?" +msgstr[1] "Do you want to install these files?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Install?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "The file was not installed" +msgstr[1] "The files were not installed" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "File was installed successfully" +msgstr[1] "Files were installed successfully" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "An error occurred." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                    • %2
                    Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                    • %2
                    Do you want to " +"search for these now?" +msgstr[0] "" +"The following plugin is required:
                    • %2
                    Do you want to search " +"for this now?" +msgstr[1] "" +"The following plugins are required:
                    • %2
                    Do you want to " +"search for these now?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "A program requires an additional plugin to decode this file" +msgstr[1] "A program requires additional plugins to decode this file" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "A program requires an additional plugin to encode this file" +msgstr[1] "A program requires additional plugins to encode this file" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "A program requires an additional plugin for this operation" +msgstr[1] "A program requires additional plugins for this operation" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 requires an additional plugin to decode this file" +msgstr[1] "%2 requires additional plugins to decode this file" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 requires an additional plugin to encode this file" +msgstr[1] "%2 requires additional plugins to encode this file" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 requires an additional plugin for this operation" +msgstr[1] "%2 requires additional plugins for this operation" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Do you want to install this package now?" +msgstr[1] "Do you want to install these packages now?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "Could not find plugin in any configured software source" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Failed to search for plugin" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "The file name could not be found in any software source" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transactions" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Refresh package list" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Show messages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Hide this icon" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Package: %1" -msgstr[1] "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Package: %2" +msgstr[1] "Packages: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "One message from the package manager" msgstr[1] "%1 messages from the package manager" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "The system update has completed" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 -#, fuzzy -#| msgid "Restart" +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Restart" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Not now" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Logout" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Package Manager Messages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Message" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -#, fuzzy -#| msgid "KPackageKit Settings" -msgid "KPackageKit settings" -msgstr "KPackageKit Settings" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Hourly" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Daily" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Weekly" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Monthly" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Never" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Security Only" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "All Updates" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "None" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "You do not have the necessary privileges to perform this action." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Failed to set origin data" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "The following file is required:" -msgstr[1] "The following files are required:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Do you want to search for this now?" -msgstr[1] "Do you want to search for these now?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "A program wants to install a file" -msgstr[1] "A program wants to install files" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 wants to install a file" -msgstr[1] "%1 wants to install files" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Install" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Failed to start search file transaction" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "The %1 package already provides this file" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "The following package will be installed" -msgstr[1] "The following packages will be installed" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "The file could not be found in any packages" -msgstr[1] "The files could not be found in any packages" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Failed to find package" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "A program wants to remove a file" msgstr[1] "A program wants to remove files" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 wants to remove a file" -msgstr[1] "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 wants to remove a file" +msgstr[1] "%2 wants to remove files" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "The following file is going to be removed:" msgstr[1] "The following files are going to be removed:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2834,28 +2904,153 @@ "Do you want to search for packages containing these files and remove them " "now?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Search" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "The following package will be removed" msgstr[1] "The following packages will be removed" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "The file could not be found in any installed package" msgstr[1] "The files could not be found in any installed package" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "Could not find %1" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                    • %1
                    • Do you want to search for a program to open this file type now?" +msgstr "" +"An additional program is required to open this type of file:
                      • %1
                      • Do you want to search for a program to open this file type now?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "A program requires a new mime type" +msgstr[1] "A program requires new mime types" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 requires a new mime type" +msgstr[1] "%2 requires new mime types" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Search" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "No new applications can be found to handle this type of file" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Failed to find software" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                        Do you want to install this catalog?

                        • %2
                        " +msgid_plural "" +"

                        Do you want to install these catalogs?

                        • %2
                        " +msgstr[0] "

                        Do you want to install this catalogue?

                        • %2
                        " +msgstr[1] "" +"

                        Do you want to install these catalogues?

                        • %2
                        " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Install catalogue" +msgstr[1] "Install catalogues" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Install" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Your backend does not support any of the needed methods to install a " +"catalogue" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Not supported" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Catalogue %2 failed to open" +msgstr[1] "Catalogues %2 failed to open" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Failed to open" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "No package was found to be installed" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Failed to start setup transaction" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "KPackageKit settings" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Hourly" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Daily" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Weekly" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Monthly" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Never" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Security only" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "All updates" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "None" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Failed to set origin data" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2893,139 +3088,6 @@ msgid "Package file to install" msgstr "Package file to install" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "This item is not supported by your backend, or it is not a file." -msgstr[1] "" -"These items are not supported by your backend, or they are not files." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Impossible to install" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Install" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Do you want to install this file?" -msgstr[1] "Do you want to install these files?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Install?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "The file was not installed" -msgstr[1] "The files were not installed" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Failed to install file" -msgstr[1] "Failed to install files" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "File was installed successfully" -msgstr[1] "Files were installed successfully" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "An error occurred." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "An additional package is required:" -msgstr[1] "Additional packages are required:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Do you want to search for and install this package now?" -msgstr[1] "Do you want to install these files?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "A program wants to install a package" -msgstr[1] "Failed to install package" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 wants to install a package" -msgstr[1] "%1 wants to install packages" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Install" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Failed to start resolve transaction" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "The package could not be found in any software source" -msgstr[1] "The packages could not be found in any software source" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                        %1
                        Do " -"you want to search for a program to open this file type now?" -msgstr "" -"An additional program is required to open this type of file:
                        %1
                        Do " -"you want to search for a program to open this file type now?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "A program requires a new mime type" -msgstr[1] "A program requires new mime types" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 requires a new mime type" -msgstr[1] "%1 requires new mime types" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Search" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Failed to search for provides" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Application that can open this type of file" -msgstr[1] "Applications that can open this type of file" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "No new applications can be found to handle this type of file" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Failed to find software" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -3036,22 +3098,19 @@ msgid "Your emails" msgstr "andrew_coles@yahoo.co.uk" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 -#, fuzzy -#| msgctxt "The type of update" -#| msgid "Security update" msgid "Select all updates" -msgstr "Security update" +msgstr "Select all updates" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Refresh" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3089,411 +3148,446 @@ msgid "Required by" msgstr "Required by" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Add and Remove Software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Search packages" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filters" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "All Packages" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transaction" +msgid "Transaction" +msgstr "Transaction" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "icon" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Downloading Packages" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "A library to do foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 -#, fuzzy -#| msgid "Additional media is required to complete the transaction." +#: rc.cpp:77 msgid "Additional changes are required to complete the task" -msgstr "Additional media are required to complete the transaction." +msgstr "Additional changes are required to complete the task" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Action" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" +msgid "Actions" +msgstr "Actions" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Repository name:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Signature URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Signature user identifier:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Signature identifier:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Do you recognise the user and trust this key?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Do you trust the origin of packages?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Please read the following important information before continuing:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Settings" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit Settings" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Check for Updates:" +msgid "Update settings" +msgstr "Update settings" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automatically Install:" +msgid "Check for updates:" +msgstr "Check for updates:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Smart Tray Icon" +msgid "Automatically install:" +msgstr "Automatically install:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Notify when updates are available" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Notify when long tasks have been completed" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "Origin of packages" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Show origins of debug and development packages" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" -msgstr "" +msgstr "About Backend" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Backend name:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 -#, fuzzy -#| msgid "Backend name:" +#: rc.cpp:140 msgid "backend name here" -msgstr "Backend name:" +msgstr "backend name here" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Backend author:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Backend description:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 -#, fuzzy -#| msgid "Backend author:" msgid "backend author name here" -msgstr "Backend author:" +msgstr "backend author name here" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "backend description here" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 -#, fuzzy -#| msgid "Package install blocked" +#: rc.cpp:164 msgid "Package is visible" -msgstr "Package install blocked" +msgstr "Package is visible" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Newest" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "GUI" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 -#, fuzzy -#| msgid "Only free software" +#: rc.cpp:173 msgid "Free software" -msgstr "Only free software" +msgstr "Free software" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Supported" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Methods" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "GetUpdates" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "UpdatePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "GetRepositoryList" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "RefreshCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "RepositoryEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "UpdateSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "RemovePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "RepositorySetEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "SearchName" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "GetDepends" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "WhatProvides" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "SearchDetails" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "GetRequires" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "GetPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "SearchGroup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "GetUpdateDetail" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "SearchFile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "GetDescription" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "GetFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resolve" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 -#, fuzzy -#| msgid "InstallFIle" +#: rc.cpp:251 msgid "SimulateInstallFiles" -msgstr "InstallFIle" +msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 -#, fuzzy -#| msgid "InstallPackage" +#: rc.cpp:254 msgid "SimulateInstallPackages" -msgstr "InstallPackage" +msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 -#, fuzzy -#| msgid "RemovePackage" +#: rc.cpp:257 msgid "SimulateRemovePackages" -msgstr "RemovePackage" +msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 -#, fuzzy -#| msgid "UpdatePackage" +#: rc.cpp:260 msgid "SimulateUpdatePackages" -msgstr "UpdatePackage" +msgstr "SimulateUpdatePackages" + +#~ msgid "User canceled the installation" +#~ msgstr "User cancelled the installation" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "This item is not supported by your backend, or it is not a file." +#~ msgstr[1] "" +#~ "These items are not supported by your backend, or they are not files." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "An additional package is required:" +#~ msgstr[1] "Additional packages are required:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Do you want to search for and install this package now?" +#~ msgstr[1] "Do you want to install these files?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                        %1
                        Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "An additional program is required to open this type of file:
                        %1
                        Do you want to search for a program to open this file type now?" + +#~ msgid "All packages" +#~ msgstr "All packages" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "You don't have the necessary privileges to perform this action." + +#~ msgid "Package Name" +#~ msgstr "Package Name" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKit Settings" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Smart Tray Icon" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Notify when long tasks have been completed" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Transaction" + +#~ msgid "A library to do foo" +#~ msgstr "A library to do foo" #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "The following packages will also be installed as dependencies" @@ -3507,9 +3601,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "The following packages also have to be removed/installed:" -#~ msgid "Failed to update package lists" -#~ msgstr "Failed to update package lists" - #~ msgid "Failed to refresh package lists" #~ msgstr "Failed to refresh package lists" @@ -3592,9 +3683,6 @@ #~ msgid "Downloading" #~ msgstr "Downloading" -#~ msgid "Updating" -#~ msgstr "Updating" - #~ msgid "Cleaning Up" #~ msgstr "Cleaning Up" diff -Nru kpackagekit-0.5.4/po/eo/CMakeLists.txt kpackagekit-0.6.0/po/eo/CMakeLists.txt --- kpackagekit-0.5.4/po/eo/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/po/eo/CMakeLists.txt 2010-01-30 09:00:25.000000000 +0000 @@ -0,0 +1,2 @@ +file(GLOB _po_files *.po) +GETTEXT_PROCESS_PO_FILES( eo ALL INSTALL_DESTINATION ${LOCALE_INSTALL_DIR} ${_po_files} ) diff -Nru kpackagekit-0.5.4/po/eo/kpackagekit.po kpackagekit-0.6.0/po/eo/kpackagekit.po --- kpackagekit-0.5.4/po/eo/kpackagekit.po 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/po/eo/kpackagekit.po 2010-01-30 09:00:25.000000000 +0000 @@ -0,0 +1,3435 @@ +# Translation of kpackagekit into esperanto. +# Axel Rousseau , 2009. +# +msgid "" +msgstr "" +"Project-Id-Version: kpackagekit\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-11 16:07+0100\n" +"Last-Translator: Axel Rousseau \n" +"Language-Team: esperanto \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: pology\n" + +#: Updater/KpkSimpleTransactionModel.cpp:46 +msgid "Date" +msgstr "Dato" + +#: Updater/KpkSimpleTransactionModel.cpp:47 +#: libkpackagekit/KpkPackageModel.cpp:144 +msgid "Action" +msgstr "Ago" + +#. i18n: file: Updater/KpkUpdateDetails.ui:20 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 +#. i18n: ectx: property (title), widget (QGroupBox, detailGroup) +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 +msgid "Details" +msgstr "Detaloj" + +#: Updater/KpkSimpleTransactionModel.cpp:49 +msgctxt "Machine user who issued the transaction" +msgid "Username" +msgstr "Uzantnomo" + +#: Updater/KpkSimpleTransactionModel.cpp:50 +msgid "Application" +msgstr "Aplikaĵo" + +#: Updater/KcmKpkUpdate.cpp:37 +msgid "Software update" +msgstr "" + +#: Updater/KcmKpkUpdate.cpp:39 +msgid "KDE interface for updating software" +msgstr "" + +#: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 +#: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 +msgid "(C) 2008-2009 Daniel Nicoletti" +msgstr "(C) 2008-2009 Daniel Nicoletti" + +#: Updater/KpkDistroUpgrade.cpp:45 SmartIcon/KpkDistroUpgrade.cpp:62 +msgid "Distribution upgrade available" +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:55 Updater/KpkDistroUpgrade.cpp:56 +#, kde-format +msgid "Upgrade to %1" +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:57 +#, kde-format +msgid "Click to upgrade to %1" +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:71 +msgid "" +"You are about to upgrade your distribution to the latest version. This is " +"usually a very lengthy process and takes a lot longer than simply upgrading " +"your packages." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:76 +msgid "It is recommended to plug in your computer before proceeding." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:78 +msgid "" +"It is recommended that you keep your computer plugged in while the upgrade " +"is being performed." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:105 +msgid "Distribution upgrade complete." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 +#, kde-format +msgid "Distribution upgrade process exited with code %1." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 +msgid "The distribution upgrade process failed to start." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 +msgid "" +"The distribution upgrade process crashed some time after starting " +"successfully." +msgstr "" + +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 +msgid "The distribution upgrade process failed with an unknown error." +msgstr "" + +#: Updater/KpkUpdateDetails.cpp:61 +msgid "Type" +msgstr "Tipo" + +#: Updater/KpkUpdateDetails.cpp:67 +msgctxt "State of the upgrade (ie testing, unstable..)" +msgid "State" +msgstr "Stato" + +#: Updater/KpkUpdateDetails.cpp:74 +msgid "Issued" +msgstr "" + +#: Updater/KpkUpdateDetails.cpp:81 +msgid "Updated" +msgstr "Aktualigita" + +#: Updater/KpkUpdateDetails.cpp:87 +msgid "New version" +msgstr "Nova versio" + +#: Updater/KpkUpdateDetails.cpp:95 +msgid "Updates" +msgstr "" + +#: Updater/KpkUpdateDetails.cpp:104 +msgid "Obsoletes" +msgstr "" + +#: Updater/KpkUpdateDetails.cpp:110 +msgid "Repository" +msgstr "Deponejo" + +#. i18n: file: AddRm/KpkPackageDetails.ui:50 +#. i18n: ectx: property (text), widget (QToolButton, descriptionTB) +#: Updater/KpkUpdateDetails.cpp:116 rc.cpp:26 +msgid "Description" +msgstr "Priskribo" + +#: Updater/KpkUpdateDetails.cpp:123 +msgid "Changes" +msgstr "" + +#: Updater/KpkUpdateDetails.cpp:131 +msgid "Vendor" +msgstr "Vendisto" + +#: Updater/KpkUpdateDetails.cpp:137 +msgid "Bugzilla" +msgstr "Bugzilla" + +#: Updater/KpkUpdateDetails.cpp:143 +msgid "CVE" +msgstr "CVE" + +#: Updater/KpkUpdateDetails.cpp:149 +msgid "Notice" +msgstr "Rimarku" + +#: Updater/KpkUpdateDetails.cpp:185 +msgid "No update description was found." +msgstr "" + +#: Updater/KpkHistory.cpp:47 +msgid "Rollback" +msgstr "" + +#: Updater/KpkHistory.cpp:52 +msgid "Refresh transactions list" +msgstr "" + +#: Updater/KpkHistory.cpp:100 +#, kde-format +msgid "Time since last cache refresh: %1" +msgstr "" + +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Hejma paĝo" + +#: AddRm/KpkPackageDetails.cpp:134 +msgid "License" +msgstr "Permesilo" + +#: AddRm/KpkPackageDetails.cpp:139 +msgctxt "Group of the package" +msgid "Group" +msgstr "Grupo" + +#: AddRm/KpkPackageDetails.cpp:145 +msgid "Size" +msgstr "Grandeco" + +#: AddRm/KpkPackageDetails.cpp:198 +msgid "No files were found." +msgstr "" + +#: AddRm/KcmKpkAddRm.cpp:37 +msgid "Add and remove software" +msgstr "" + +#: AddRm/KcmKpkAddRm.cpp:39 +msgid "KDE interface for managing software" +msgstr "" + +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 +msgid "Find" +msgstr "Trovi" + +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" + +#: AddRm/KpkAddRm.cpp:125 +msgid "List of changes" +msgstr "" + +#: AddRm/KpkAddRm.cpp:134 +msgctxt "Groups of packages" +msgid "Group:" +msgid_plural "Groups:" +msgstr[0] "Grupo:" +msgstr[1] "Grupoj:" + +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 +msgid "&Cancel" +msgstr "&Rezigni" + +#. i18n: file: AddRm/KpkAddRm.ui:150 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 +msgid "Find by &name" +msgstr "" + +#. i18n: file: AddRm/KpkAddRm.ui:160 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 +msgid "Find by f&ile name" +msgstr "" + +#. i18n: file: AddRm/KpkAddRm.ui:155 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 +msgid "Find by &description" +msgstr "" + +#: AddRm/KpkAddRm.cpp:420 +msgid "Review Changes" +msgstr "" + +#: AddRm/KpkAddRm.cpp:457 +msgid "Collections" +msgstr "Kolektoj" + +#: AddRm/KpkAddRm.cpp:462 +msgid "Only collections" +msgstr "" + +#: AddRm/KpkAddRm.cpp:469 +msgid "Exclude collections" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 +#. i18n: ectx: property (text), widget (QCheckBox, installedCB) +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 +msgid "Installed" +msgstr "Instalita" + +#: AddRm/KpkAddRm.cpp:484 +msgid "Only installed" +msgstr "" + +#: AddRm/KpkAddRm.cpp:493 +msgid "Only available" +msgstr "" + +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 +msgid "No filter" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 +#. i18n: ectx: property (text), widget (QCheckBox, developmentCB) +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 +msgid "Development" +msgstr "Evoluigo" + +#: AddRm/KpkAddRm.cpp:516 +msgid "Only development" +msgstr "" + +#: AddRm/KpkAddRm.cpp:525 +msgid "Only end user files" +msgstr "" + +#: AddRm/KpkAddRm.cpp:542 +msgid "Graphical" +msgstr "" + +#: AddRm/KpkAddRm.cpp:548 +msgid "Only graphical" +msgstr "" + +#: AddRm/KpkAddRm.cpp:557 +msgid "Only text" +msgstr "Nur teksto" + +#: AddRm/KpkAddRm.cpp:574 +msgctxt "Filter for free packages" +msgid "Free" +msgstr "Libera" + +#: AddRm/KpkAddRm.cpp:580 +msgid "Only free software" +msgstr "Nur liberaj programoj" + +#: AddRm/KpkAddRm.cpp:589 +msgid "Only non-free software" +msgstr "Nur ne-liberaj programoj" + +#: AddRm/KpkAddRm.cpp:606 +msgid "Architectures" +msgstr "" + +#: AddRm/KpkAddRm.cpp:612 +msgid "Only native architectures" +msgstr "" + +#: AddRm/KpkAddRm.cpp:621 +msgid "Only non-native architectures" +msgstr "" + +#: AddRm/KpkAddRm.cpp:638 +msgctxt "Filter for source packages" +msgid "Source" +msgstr "Fonto" + +#: AddRm/KpkAddRm.cpp:644 +msgid "Only sourcecode" +msgstr "" + +#: AddRm/KpkAddRm.cpp:653 +msgid "Only non-sourcecode" +msgstr "" + +#: AddRm/KpkAddRm.cpp:670 +msgid "Hide subpackages" +msgstr "" + +#: AddRm/KpkAddRm.cpp:672 +msgid "Only show one package, not subpackages" +msgstr "" + +#: AddRm/KpkAddRm.cpp:680 +msgid "Only newest packages" +msgstr "" + +#: AddRm/KpkAddRm.cpp:683 +msgid "Only show the newest available package" +msgstr "" + +#: AddRm/KpkAddRm.cpp:692 +msgid "View in groups" +msgstr "" + +#: AddRm/KpkAddRm.cpp:695 +msgid "Display packages in groups according to status" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:75 +msgid "The following package will be installed:" +msgid_plural "The following packages will be installed:" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkReviewChanges.cpp:77 +msgid "Install Now" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:79 +msgid "The following package will be removed:" +msgid_plural "The following packages will be removed:" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkReviewChanges.cpp:81 +msgid "Remove Now" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:83 +msgid "The following package will be removed and installed:" +msgid_plural "The following packages will be removed and installed:" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkReviewChanges.cpp:85 +msgid "Apply Now" +msgstr "Apliki tuj" + +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Packages" +msgid "Failed to simulate package removal" +msgstr "Pakaĵoj" + +#: libkpackagekit/KpkReviewChanges.cpp:187 +msgid "The current backend does not support removing packages." +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 +msgid "KPackageKit Error" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Packages" +msgid "Failed to simulate package install" +msgstr "Pakaĵoj" + +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 +msgid "Failed to install package" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:71 +msgid "Hide" +msgstr "Kaŝi" + +#: libkpackagekit/KpkTransaction.cpp:72 +msgid "" +"Allows you to hide the window whilst keeping the transaction task running." +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:374 +msgid "" +"You are about to install unsigned packages can compromise your system, as it " +"is impossible to verify if the software came from a trusted source.\n" +" Are you sure you want to continue installation?" +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:377 +msgid "Installing unsigned software" +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 +msgid "A media change is required" +msgstr "" + +#: libkpackagekit/KpkProgressBar.cpp:38 +#, kde-format +msgid "%1 remaining" +msgstr "" + +#: libkpackagekit/KpkPackageModel.cpp:142 +#: libkpackagekit/KpkSimulateModel.cpp:122 +msgid "Package" +msgstr "Pakaĵo" + +#: libkpackagekit/KpkLicenseAgreement.cpp:34 +msgid "Accept Agreement" +msgstr "" + +#. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 +msgid "License Agreement Required" +msgstr "" + +#: libkpackagekit/KpkLicenseAgreement.cpp:36 +#, kde-format +msgid "License required for %1 by %2" +msgstr "" + +#: libkpackagekit/KpkSimulateModel.cpp:124 +msgid "Version" +msgstr "Versio" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 +#. i18n: ectx: property (text), widget (QCheckBox, cancelCB) +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 +msgid "Cancel" +msgstr "Rezigni" + +#: libkpackagekit/KpkTransactionBar.cpp:129 +#, kde-format +msgid "Finished in %1." +msgstr "" + +#: libkpackagekit/KpkRequirements.cpp:219 +msgid "Additional changes" +msgstr "" + +#: libkpackagekit/KpkRequirements.cpp:221 +msgid "Continue" +msgstr "Daŭrigi" + +#: libkpackagekit/KpkRequirements.cpp:252 +#, kde-format +msgid "1 package to remove" +msgid_plural "%1 packages to remove" +msgstr[0] "1 pakaĵo por forigi" +msgstr[1] "%1 pakaĵoj por forigi" + +#: libkpackagekit/KpkRequirements.cpp:261 +#, kde-format +msgid "1 package to downgrade" +msgid_plural "%1 packages to downgrade" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkRequirements.cpp:272 +#, kde-format +msgid "1 package to reinstall" +msgid_plural "%1 packages to reinstall" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkRequirements.cpp:283 +#, kde-format +msgid "1 package to install" +msgid_plural "%1 packages to install" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkRequirements.cpp:294 +#, kde-format +msgid "1 package to update" +msgid_plural "%1 packages to update" +msgstr[0] "" +msgstr[1] "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:25 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 +msgid "Software signature is required" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgid "Unknown error" +msgctxt "This is when the transaction status is not known" +msgid "Unknown state" +msgstr "Nekonata eraro" + +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" +msgid "Waiting for service to start" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" +msgid "Waiting for other tasks" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" +msgid "Running task" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" +msgid "Querying" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" +msgid "Getting information" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" +msgid "Removing packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" +msgid "Downloading packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgid "Packages" +msgctxt "transaction state, installing packages" +msgid "Installing packages" +msgstr "Pakaĵoj" + +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" +msgid "Refreshing software list" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" +msgid "Updating packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" +msgid "Cleaning up packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" +msgid "Obsoleting packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" +msgid "Resolving dependencies" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" +msgid "Checking signatures" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" +msgid "Rolling back" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" +msgid "Testing changes" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" +msgid "Committing changes" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" +msgid "Requesting data" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgid "Find" +msgctxt "transaction state, all done!" +msgid "Finished" +msgstr "Trovi" + +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgid "Cancel" +msgctxt "transaction state, in the process of cancelling" +msgid "Cancelling" +msgstr "Rezigni" + +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" +msgid "Downloading repository information" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" +msgid "Downloading list of packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" +msgid "Downloading file lists" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" +msgid "Downloading lists of changes" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" +msgid "Downloading groups" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" +msgid "Downloading update information" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" +msgid "Repackaging files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" +msgid "Loading cache" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" +msgid "Scanning installed applications" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" +msgid "Generating package lists" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" +msgid "Waiting for package manager lock" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" +msgid "Waiting for authentication" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" +msgid "Updating the list of running applications" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" +msgid "Checking for applications currently in use" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" +msgid "Checking for libraries currently in use" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:150 +msgctxt "The action of the package, in past tense" +msgid "Downloaded" +msgstr "Elŝutita" + +#: libkpackagekit/KpkStrings.cpp:152 +msgctxt "The action of the package, in past tense" +msgid "Updated" +msgstr "Aktualigita" + +#: libkpackagekit/KpkStrings.cpp:154 +msgctxt "The action of the package, in past tense" +msgid "Installed" +msgstr "Instalita" + +#: libkpackagekit/KpkStrings.cpp:156 +msgctxt "The action of the package, in past tense" +msgid "Removed" +msgstr "Forigita" + +#: libkpackagekit/KpkStrings.cpp:158 +msgctxt "The action of the package, in past tense" +msgid "Cleaned Up" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:160 +msgctxt "The action of the package, in past tense" +msgid "Obsoleted" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:171 +msgctxt "The role of the transaction, in present tense" +msgid "Unknown role type" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:173 +msgctxt "The role of the transaction, in present tense" +msgid "Getting dependencies" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:175 +msgctxt "The role of the transaction, in present tense" +msgid "Getting update detail" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:177 +msgctxt "The role of the transaction, in present tense" +msgid "Getting details" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:179 +msgctxt "The role of the transaction, in present tense" +msgid "Getting requires" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:181 +msgctxt "The role of the transaction, in present tense" +msgid "Getting updates" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:183 +msgctxt "The role of the transaction, in present tense" +msgid "Searching details" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:185 +msgctxt "The role of the transaction, in present tense" +msgid "Searching for file" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:187 +msgctxt "The role of the transaction, in present tense" +msgid "Searching groups" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:189 +msgctxt "The role of the transaction, in present tense" +msgid "Searching by package name" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:191 +msgctxt "The role of the transaction, in present tense" +msgid "Removing" +msgstr "Forigas" + +#: libkpackagekit/KpkStrings.cpp:193 +msgctxt "The role of the transaction, in present tense" +msgid "Installing" +msgstr "Instalas" + +#: libkpackagekit/KpkStrings.cpp:195 +msgctxt "The role of the transaction, in present tense" +msgid "Installing file" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:197 +msgctxt "The role of the transaction, in present tense" +msgid "Refreshing package cache" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:199 +msgctxt "The role of the transaction, in present tense" +msgid "Updating packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:201 +msgctxt "The role of the transaction, in present tense" +msgid "Updating system" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:203 +msgctxt "The role of the transaction, in present tense" +msgid "Canceling" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:205 +msgctxt "The role of the transaction, in present tense" +msgid "Rolling back" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:207 +msgctxt "The role of the transaction, in present tense" +msgid "Getting list of repositories" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:209 +msgctxt "The role of the transaction, in present tense" +msgid "Enabling repository" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:211 +msgctxt "The role of the transaction, in present tense" +msgid "Setting repository data" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:213 +msgctxt "The role of the transaction, in present tense" +msgid "Resolving" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:215 +msgctxt "The role of the transaction, in present tense" +msgid "Getting file list" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:217 +msgctxt "The role of the transaction, in present tense" +msgid "Getting what provides" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:219 +msgctxt "The role of the transaction, in present tense" +msgid "Installing signature" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:221 +msgctxt "The role of the transaction, in present tense" +msgid "Getting package lists" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:223 +msgctxt "The role of the transaction, in present tense" +msgid "Accepting EULA" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:225 +msgctxt "The role of the transaction, in present tense" +msgid "Downloading packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:227 +msgctxt "The role of the transaction, in present tense" +msgid "Getting distribution upgrade information" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:229 +msgctxt "The role of the transaction, in present tense" +msgid "Getting categories" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:231 +msgctxt "The role of the transaction, in present tense" +msgid "Getting old transactions" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:233 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install of files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:235 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:237 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the remove" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:239 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:249 +msgctxt "The role of the transaction, in past tense" +msgid "Unknown role type" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:251 +msgctxt "The role of the transaction, in past tense" +msgid "Got dependencies" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:253 +msgctxt "The role of the transaction, in past tense" +msgid "Got update detail" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:255 +msgctxt "The role of the transaction, in past tense" +msgid "Got details" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:257 +msgctxt "The role of the transaction, in past tense" +msgid "Got requires" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:259 +msgctxt "The role of the transaction, in past tense" +msgid "Got updates" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:261 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for package details" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:263 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for file" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:265 +msgctxt "The role of the transaction, in past tense" +msgid "Searched groups" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:267 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for package name" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:269 +msgctxt "The role of the transaction, in past tense" +msgid "Removed packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:271 +msgctxt "The role of the transaction, in past tense" +msgid "Installed packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:273 +msgctxt "The role of the transaction, in past tense" +msgid "Installed local files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:275 +msgctxt "The role of the transaction, in past tense" +msgid "Refreshed package cache" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:277 +msgctxt "The role of the transaction, in past tense" +msgid "Updated packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:279 +msgctxt "The role of the transaction, in past tense" +msgid "Updated system" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:281 +msgctxt "The role of the transaction, in past tense" +msgid "Canceled" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:283 +msgctxt "The role of the transaction, in past tense" +msgid "Rolled back" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:285 +msgctxt "The role of the transaction, in past tense" +msgid "Got list of repositories" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:287 +msgctxt "The role of the transaction, in past tense" +msgid "Enabled repository" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:289 +msgctxt "The role of the transaction, in past tense" +msgid "Set repository data" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:291 +msgctxt "The role of the transaction, in past tense" +msgid "Resolved" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:293 +msgctxt "The role of the transaction, in past tense" +msgid "Got file list" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:295 +msgctxt "The role of the transaction, in past tense" +msgid "Got what provides" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:297 +msgctxt "The role of the transaction, in past tense" +msgid "Installed signature" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:299 +msgctxt "The role of the transaction, in past tense" +msgid "Got package lists" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:301 +msgctxt "The role of the transaction, in past tense" +msgid "Accepted EULA" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:303 +msgctxt "The role of the transaction, in past tense" +msgid "Downloaded packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:305 +msgctxt "The role of the transaction, in past tense" +msgid "Got distribution upgrades" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:307 +msgctxt "The role of the transaction, in past tense" +msgid "Got categories" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:309 +msgctxt "The role of the transaction, in past tense" +msgid "Got old transactions" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:311 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install of files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:313 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:315 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the remove" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:317 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:327 +msgid "No network connection available" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:329 +msgid "No package cache is available" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:331 +msgid "Out of memory" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:333 +msgid "Failed to create a thread" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:335 +msgid "Not supported by this backend" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:337 +msgid "An internal system error has occurred" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:339 +msgid "A security trust relationship is not present" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:341 +msgid "The package is not installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:343 +msgid "The package was not found" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:345 +msgid "The package is already installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:347 +msgid "The package download failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:349 +msgid "The group was not found" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:351 +msgid "The group list was invalid" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:353 +msgid "Dependency resolution failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:355 +msgid "Search filter was invalid" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:357 +msgid "The package identifier was not well formed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:359 +msgid "Transaction error" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:361 +msgid "Repository name was not found" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:363 +msgid "Could not remove a protected system package" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:365 +msgid "The task was canceled" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:367 +msgid "The task was forcibly canceled" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:369 +msgid "Reading the config file failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:371 +msgid "The task cannot be cancelled" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:373 +msgid "Source packages cannot be installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:375 +msgid "The license agreement failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:377 +msgid "Local file conflict between packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:379 +msgid "Packages are not compatible" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:383 +msgid "Failed to initialize" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:385 +msgid "Failed to finalize" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:387 +msgid "Cannot get lock" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:389 +msgid "No packages to update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:391 +msgid "Cannot write repository configuration" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:393 +msgid "Local install failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:395 +msgid "Bad GPG signature" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:397 +msgid "Missing GPG signature" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:399 +msgid "Repository configuration invalid" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:401 +msgid "Invalid package file" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:403 +msgid "Package install blocked" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:405 +msgid "Package is corrupt" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:407 +msgid "All packages are already installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:409 +msgid "The specified file could not be found" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:411 +msgid "No more mirrors are available" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:413 +msgid "No distribution upgrade data is available" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:415 +msgid "Package is incompatible with this system" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:417 +msgid "No space is left on the disk" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:421 +msgid "Authorization failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:423 +msgid "Update not found" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:429 +msgid "Cannot get the file list" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:431 +msgid "Cannot get package requires" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:435 +msgid "The download failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:437 +msgid "Package failed to configure" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:439 +msgid "Package failed to build" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:441 +msgid "Package failed to install" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:443 +msgid "Package failed to be removed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:445 +msgid "Unknown error" +msgstr "Nekonata eraro" + +#: libkpackagekit/KpkStrings.cpp:455 +msgid "" +"There is no network connection available.\n" +"Please check your connection settings and try again" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:458 +msgid "" +"The package list needs to be rebuilt.\n" +"This should have been done by the backend automatically." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:461 +msgid "" +"The service that is responsible for handling user requests is out of " +"memory.\n" +"Please close some programs or restart your computer." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:464 +msgid "A thread could not be created to service the user request." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:466 +msgid "" +"The action is not supported by this backend.\n" +"Please report a bug as this should not have happened." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:469 +msgid "" +"A problem that we were not expecting has occurred.\n" +"Please report this bug with the error description." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:472 +msgid "" +"A security trust relationship could not be made with the software origin.\n" +"Please check your software signature settings." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:475 +msgid "" +"The package that is trying to be removed or updated is not already installed." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:477 +msgid "" +"The package that is being modified was not found on your system or in any " +"software origin." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:479 +msgid "The package that is trying to be installed is already installed." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:481 +msgid "" +"The package download failed.\n" +"Please check your network connectivity." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:484 +msgid "" +"The group type was not found.\n" +"Please check your group list and try again." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:487 +msgid "" +"The group list could not be loaded.\n" +"Refreshing your cache may help, although this is normally a software origin " +"error." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:491 +msgid "" +"A package dependency could not be found.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:494 +msgid "The search filter was not correctly formed." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:496 +msgid "" +"The package identifier was not well formed when sent to the system daemon.\n" +"This normally indicates an internal bug and should be reported." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:499 +msgid "" +"An error occurred while running the transaction.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:502 +msgid "" +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:505 +msgid "Removing a protected system package is not allowed." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:507 +msgid "The task was canceled successfully and no packages were changed." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:509 +msgid "" +"The task was canceled successfully and no packages were changed.\n" +"The backend did not exit cleanly." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:512 +msgid "" +"The native package configuration file could not be opened.\n" +"Please make sure your system's configuration is valid." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:515 +msgid "The task is not safe to be cancelled at this time." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:517 +msgid "" +"Source packages are not normally installed this way.\n" +"Check the extension of the file you are trying to install." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:520 +msgid "" +"The license agreement was not agreed to.\n" +"To use this software you have to accept the license." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:523 +msgid "" +"Two packages provide the same file.\n" +"This is usually due to mixing packages for different software origins." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:526 +msgid "" +"Multiple packages exist that are not compatible with each other.\n" +"This is usually due to mixing packages from different software origins." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:529 +msgid "" +"There was a (possibly temporary) problem connecting to a software origins.\n" +"Please check the detailed error for further details." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:532 +msgid "" +"Failed to initialize packaging backend.\n" +"This may occur if other packaging tools are being used simultaneously." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:535 +msgid "" +"Failed to close down the backend instance.\n" +"This error can normally be ignored." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:538 +msgid "" +"Cannot get the exclusive lock on the packaging backend.\n" +"Please close any other legacy packaging tools that may be open." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:541 +msgid "None of the selected packages could be updated." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:543 +msgid "The repository configuration could not be modified." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:545 +msgid "" +"Installing the local file failed.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:548 +msgid "The package signature could not be verified." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:550 +msgid "" +"The package signature was missing and this package is untrusted.\n" +"This package was not signed with a GPG key when created." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:553 +msgid "Repository configuration was invalid and could not be read." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:555 +msgid "" +"The package you are attempting to install is not valid.\n" +"The package file could be corrupt, or not a proper package." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:558 +msgid "" +"Installation of this package was prevented by your packaging system's " +"configuration." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:560 +msgid "" +"The package that was downloaded is corrupt and needs to be downloaded again." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:562 +msgid "" +"All of the packages selected for install are already installed on the system." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:564 +msgid "" +"The specified file could not be found on the system.\n" +"Check that the file still exists and has not been deleted." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:567 +msgid "" +"Required data could not be found on any of the configured software origins.\n" +"There were no more download mirrors that could be tried." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:570 +msgid "" +"Required upgrade data could not be found in any of the configured software " +"origins.\n" +"The list of distribution upgrades will be unavailable." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:573 +msgid "" +"The package that is trying to be installed is incompatible with this system." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:575 +msgid "" +"There is insufficient space on the device.\n" +"Free some space on the system disk to perform this operation." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:578 +msgid "Additional media is required to complete the transaction." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:580 +msgid "" +"You have failed to provide correct authentication.\n" +"Please check any passwords or account settings." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:583 +msgid "" +"The specified update could not be found.\n" +"It could have already been installed or no longer available on the remote " +"server." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:590 +msgid "The file list is not available for this package." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:592 +msgid "The information about what requires this package could not be obtained." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:596 +msgid "" +"The download could not be done automatically and should be done manually.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:599 +msgid "" +"One of the selected packages failed to configure correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:602 +msgid "" +"One of the selected packages failed to build correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:605 +msgid "" +"One of the selected packages failed to install correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:608 +msgid "" +"One of the selected packages failed to be removed correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:611 +msgid "" +"Unknown error, please report a bug.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:622 +msgctxt "The group type" +msgid "Accessibility" +msgstr "Alirebleco" + +#: libkpackagekit/KpkStrings.cpp:624 +msgctxt "The group type" +msgid "Accessories" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:626 +msgctxt "The group type" +msgid "Education" +msgstr "Edukado" + +#: libkpackagekit/KpkStrings.cpp:628 +msgctxt "The group type" +msgid "Games" +msgstr "Ludoj" + +#: libkpackagekit/KpkStrings.cpp:630 +msgctxt "The group type" +msgid "Graphics" +msgstr "Grafikoj" + +#: libkpackagekit/KpkStrings.cpp:632 +msgctxt "The group type" +msgid "Internet" +msgstr "Internet" + +#: libkpackagekit/KpkStrings.cpp:634 +msgctxt "The group type" +msgid "Office" +msgstr "Laborejo" + +#: libkpackagekit/KpkStrings.cpp:636 +msgctxt "The group type" +msgid "Other" +msgstr "Alia" + +#: libkpackagekit/KpkStrings.cpp:638 +msgctxt "The group type" +msgid "Development" +msgstr "Programado" + +#: libkpackagekit/KpkStrings.cpp:640 +msgctxt "The group type" +msgid "Multimedia" +msgstr "Aŭdvido" + +#: libkpackagekit/KpkStrings.cpp:642 +msgctxt "The group type" +msgid "System" +msgstr "Sistemo" + +#: libkpackagekit/KpkStrings.cpp:644 +msgctxt "The group type" +msgid "GNOME desktop" +msgstr "GNOME labortablo" + +#: libkpackagekit/KpkStrings.cpp:646 +msgctxt "The group type" +msgid "KDE desktop" +msgstr "KDE labortablo" + +#: libkpackagekit/KpkStrings.cpp:648 +msgctxt "The group type" +msgid "XFCE desktop" +msgstr "XFCE labortablo" + +#: libkpackagekit/KpkStrings.cpp:650 +msgctxt "The group type" +msgid "Other desktops" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:652 +msgctxt "The group type" +msgid "Publishing" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:654 +msgctxt "The group type" +msgid "Servers" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:656 +msgctxt "The group type" +msgid "Fonts" +msgstr "Tiparoj" + +#: libkpackagekit/KpkStrings.cpp:658 +msgctxt "The group type" +msgid "Admin tools" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:660 +msgctxt "The group type" +msgid "Legacy" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:662 +msgctxt "The group type" +msgid "Localization" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:664 +msgctxt "The group type" +msgid "Virtualization" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:666 +msgctxt "The group type" +msgid "Security" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:668 +msgctxt "The group type" +msgid "Power management" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:670 +msgctxt "The group type" +msgid "Communication" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:672 +msgctxt "The group type" +msgid "Network" +msgstr "Reto" + +#: libkpackagekit/KpkStrings.cpp:674 +msgctxt "The group type" +msgid "Maps" +msgstr "Mapoj" + +#: libkpackagekit/KpkStrings.cpp:676 +msgctxt "The group type" +msgid "Software sources" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:678 +msgctxt "The group type" +msgid "Science" +msgstr "Scienco" + +#: libkpackagekit/KpkStrings.cpp:680 +msgctxt "The group type" +msgid "Documentation" +msgstr "Dokumentaro" + +#: libkpackagekit/KpkStrings.cpp:682 +msgctxt "The group type" +msgid "Electronics" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:684 +msgctxt "The group type" +msgid "Package collections" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:686 +msgctxt "The group type" +msgid "Vendor" +msgstr "Vendisto" + +#: libkpackagekit/KpkStrings.cpp:688 +msgctxt "The group type" +msgid "Newest packages" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:690 +msgctxt "The group type" +msgid "Unknown group" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:700 +msgctxt "The type of update" +msgid "Trivial update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:702 +msgctxt "The type of update" +msgid "Normal update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:704 +msgctxt "The type of update" +msgid "Important update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:706 +msgctxt "The type of update" +msgid "Security update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:708 +msgctxt "The type of update" +msgid "Bug fix update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:710 +msgctxt "The type of update" +msgid "Enhancement update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:712 +msgctxt "The type of update" +msgid "Blocked update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:715 +msgctxt "The type of update" +msgid "Installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:718 +msgctxt "The type of update" +msgid "Available" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:720 +msgctxt "The type of update" +msgid "Unknown update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:731 +#, kde-format +msgid "1 trivial update" +msgid_plural "%1 trivial updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:733 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "1 update" +msgid_plural "%1 updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:735 +#, kde-format +msgid "1 important update" +msgid_plural "%1 important updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:737 +#, kde-format +msgid "1 security update" +msgid_plural "%1 security updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:739 +#, kde-format +msgid "1 bug fix update" +msgid_plural "%1 bug fix updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:741 +#, kde-format +msgid "1 enhancement update" +msgid_plural "%1 enhancement updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:743 +#, kde-format +msgid "1 blocked update" +msgid_plural "%1 blocked updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:745 +#, kde-format +msgid "1 installed package" +msgid_plural "%1 installed packages" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:747 +#, kde-format +msgid "1 available package" +msgid_plural "%1 available packages" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 +#, kde-format +msgid "1 unknown update" +msgid_plural "%1 unknown updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:759 +#, kde-format +msgid "1 trivial update selected" +msgid_plural "%1 trivial updates selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:762 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "1 update selected" +msgid_plural "%1 updates selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:765 +#, kde-format +msgid "1 important update selected" +msgid_plural "%1 important updates selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:767 +#, kde-format +msgid "1 security update selected" +msgid_plural "%1 security updates selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:769 +#, kde-format +msgid "1 bug fix update selected" +msgid_plural "%1 bug fix updates selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:771 +#, kde-format +msgid "1 enhancement update selected" +msgid_plural "%1 enhancement updates selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:773 +#, kde-format +msgid "1 installed package selected to be removed" +msgid_plural "%1 installed packages selected to be removed" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:776 +#, kde-format +msgid "1 available package selected to be installed" +msgid_plural "%1 available packages selected to be installed" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:787 +#, kde-format +msgid "%1 trivial update" +msgid_plural "%1 trivial updates, %2 selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:790 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "%1 update" +msgid_plural "%1 updates, %2 selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:792 +#, kde-format +msgid "%1 important update" +msgid_plural "%1 important updates, %2 selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:794 +#, kde-format +msgid "%1 security update" +msgid_plural "%1 security updates, %2 selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:796 +#, kde-format +msgid "%1 bug fix update" +msgid_plural "%1 bug fix updates, %2 selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:798 +#, kde-format +msgid "%1 enhancement update" +msgid_plural "%1 enhancement updates, %2 selected" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:801 +#, kde-format +msgid "%1 blocked update" +msgid_plural "%1 blocked updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:803 +#, kde-format +msgid "%1 installed package" +msgid_plural "%1 installed packages, %2 selected to be removed" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:805 +#, kde-format +msgid "%1 available package" +msgid_plural "%1 available packages, %2 selected to be installed" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:808 +#, kde-format +msgid "%1 unknown update" +msgid_plural "%1 unknown updates" +msgstr[0] "" +msgstr[1] "" + +#: libkpackagekit/KpkStrings.cpp:817 +msgid "No restart is necessary" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:819 +msgid "You will be required to restart this application" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:821 +msgid "You will be required to log out and back in" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:823 +msgid "A restart will be required" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:825 +msgid "You will be required to log out and back in due to a security update." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:827 +msgid "A restart will be required due to a security update." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:840 +msgid "No restart is required" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:842 +msgid "A restart is required" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:844 +msgid "You need to log out and log back in" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:846 +msgid "You need to restart the application" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:848 +msgid "You need to log out and log back in to remain secure." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:850 +msgid "A restart is required to remain secure." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:863 +msgid "Stable" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:865 +msgid "Unstable" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:867 +msgid "Testing" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:880 +#, kde-format +msgid "Please insert the CD labeled '%1', and press continue." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:882 +#, kde-format +msgid "Please insert the DVD labeled '%1', and press continue." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:884 +#, kde-format +msgid "Please insert the disc labeled '%1', and press continue." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 +#, kde-format +msgid "Please insert the medium labeled '%1', and press continue." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:896 +msgid "A mirror is possibly broken" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:898 +msgid "The connection was refused" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:900 +msgid "The parameter was invalid" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:902 +msgid "The priority was invalid" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:904 +msgid "Backend warning" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:906 +msgid "Daemon warning" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:908 +msgid "The package list cache is being rebuilt" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:910 +msgid "An untrusted package was installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:912 +msgid "A newer package exists" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:914 +msgid "Could not find package" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:916 +msgid "Configuration files were changed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:918 +msgid "Package is already installed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:920 +msgid "Automatic cleanup is being ignored" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:922 +msgid "Software source download failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:937 +msgid "Could not get a transaction id from packagekitd." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:939 +msgid "Cannot connect to this transaction id." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:941 +msgid "This action is unknown." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:943 +msgid "The packagekitd service could not be started." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:945 +msgid "The query is not valid." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:947 +msgid "The file is not valid." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:949 +msgid "This function is not yet supported." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:951 +msgid "Could not talk to packagekitd." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 +msgid "An unknown error happened." +msgstr "" + +#: SmartIcon/KpkTransactionWatcher.cpp:102 +msgid "Ignore" +msgstr "Ignori" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                        • %2
                        Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                        • %2
                        Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instali" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                        And another update" +msgid_plural "
                        And %1 more updates" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" +msgstr "Ne petu plu" + +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." +msgstr "" + +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" +msgstr "" + +#: SmartIcon/KpkDistroUpgrade.cpp:113 +msgid "Distribution upgrade finished. " +msgstr "" + +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Nekonata eraro" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                        • %2
                        Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                        • %2
                        Do you want to search " +"for and install these packages now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "Packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "Pakaĵoj" +msgstr[1] "Pakaĵoj" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Packages" +msgid "Failed to install packages" +msgstr "Pakaĵoj" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Ne eblis trovi %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Serĉi" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalu" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Ĉu instali?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Okazis eraro." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                        • %2
                        Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                        • %2
                        Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" +msgstr "Montri mesaĝojn" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Pakaĵo" +msgstr[1] "Pakaĵo" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ne nun" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "Elsaluti" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "Mesaĝo" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, kde-format +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                        • %1
                        • Do you want to search for a program to open this file type now?" +msgstr "" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                          Do you want to install this catalog?

                          • %2
                          " +msgid_plural "" +"

                          Do you want to install these catalogs?

                          • %2
                          " +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instali katalogon" +msgstr[1] "Instali katalogojn" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instali" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Ĉiu-hore" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Ĉiu-tage" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Ĉiu-semajne" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Ĉiu-monate" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Neniam" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Neniu" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "" + +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "" + +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "" + +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "" + +#: KPackageKit/main.cpp:48 +msgid "Show backend details" +msgstr "" + +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "" + +#: KPackageKit/main.cpp:50 +msgid "Package name installer" +msgstr "" + +#: KPackageKit/main.cpp:51 +msgid "Single file installer" +msgstr "" + +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "" + +#: rc.cpp:1 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Axel Rousseau" + +#: rc.cpp:2 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "axel@esperanto-jeunes.org" + +#. i18n: file: Updater/KpkUpdate.ui:74 +#. i18n: ectx: property (text), widget (KPushButton, selectAllPB) +#: rc.cpp:5 +msgid "Select all updates" +msgstr "" + +#. i18n: file: Updater/KpkUpdate.ui:81 +#. i18n: ectx: property (text), widget (KPushButton, refreshPB) +#: rc.cpp:8 +msgid "Refresh" +msgstr "Refreŝigi" + +#. i18n: file: Updater/KpkUpdate.ui:88 +#. i18n: ectx: property (text), widget (KPushButton, historyPB) +#. i18n: file: Updater/KpkHistory.ui:13 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) +#: rc.cpp:11 rc.cpp:14 +msgid "History" +msgstr "Historio" + +#. i18n: file: Updater/KpkHistory.ui:22 +#. i18n: ectx: property (clickMessage), widget (KLineEdit, searchLineKLE) +#: rc.cpp:17 +msgid "Type filter" +msgstr "" + +#. i18n: file: Updater/KpkHistory.ui:54 +#. i18n: ectx: property (text), widget (QLabel, timeCacheLabel) +#: rc.cpp:20 +msgid "Time since last cache refresh: 5 hours" +msgstr "" + +#. i18n: file: AddRm/KpkPackageDetails.ui:69 +#. i18n: ectx: property (text), widget (QToolButton, fileListTB) +#: rc.cpp:29 +msgid "File List" +msgstr "Dosierlisto" + +#. i18n: file: AddRm/KpkPackageDetails.ui:85 +#. i18n: ectx: property (text), widget (QToolButton, dependsOnTB) +#: rc.cpp:32 +msgid "Depends on" +msgstr "" + +#. i18n: file: AddRm/KpkPackageDetails.ui:101 +#. i18n: ectx: property (text), widget (QToolButton, requiredByTB) +#: rc.cpp:35 +msgid "Required by" +msgstr "" + +#. i18n: file: AddRm/KpkAddRm.ui:20 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) +#: rc.cpp:38 +msgid "Add and Remove Software" +msgstr "" + +#. i18n: file: AddRm/KpkAddRm.ui:34 +#. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) +#: rc.cpp:41 +msgid "Search packages" +msgstr "" + +#. i18n: file: AddRm/KpkAddRm.ui:68 +#. i18n: ectx: property (text), widget (QToolButton, filtersTB) +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#: rc.cpp:44 rc.cpp:155 +msgid "Filters" +msgstr "Filtriloj" + +#. i18n: file: AddRm/KpkAddRm.ui:91 +#. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) +#: rc.cpp:47 +#, fuzzy +#| msgid "Packages" +msgid "All Packages" +msgstr "Pakaĵoj" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) +#: rc.cpp:59 +msgid "Transaction" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:62 +msgid "icon" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 +msgid "Downloading Packages" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 +#. i18n: ectx: property (text), widget (QLabel, packageL) +#: rc.cpp:74 +msgid "libfoo" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRequirements.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:77 +msgid "Additional changes are required to complete the task" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRequirements.ui:57 +#. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) +#: rc.cpp:80 +msgid "Actions" +msgstr "Agoj" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:39 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:89 +msgid "Repository name:" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:65 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:92 +msgid "Signature URL:" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:91 +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: rc.cpp:95 +msgid "Signature user identifier:" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:117 +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: rc.cpp:98 +msgid "Signature identifier:" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:144 +#. i18n: ectx: property (text), widget (QLabel, label_10) +#: rc.cpp:101 +msgid "Do you recognise the user and trust this key?" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:161 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:104 +msgid "Do you trust the origin of packages?" +msgstr "" + +#. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:110 +msgid "Please read the following important information before continuing:" +msgstr "" + +#. i18n: file: Settings/KpkSettings.ui:14 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) +#: rc.cpp:113 +msgid "Settings" +msgstr "Agordo" + +#. i18n: file: Settings/KpkSettings.ui:29 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: rc.cpp:116 +msgid "Update settings" +msgstr "" + +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) +#: rc.cpp:119 +msgid "Check for updates:" +msgstr "" + +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) +#: rc.cpp:122 +msgid "Automatically install:" +msgstr "" + +#. i18n: file: Settings/KpkSettings.ui:72 +#. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) +#: rc.cpp:125 +msgid "Notify when updates are available" +msgstr "" + +#. i18n: file: Settings/KpkSettings.ui:94 +#. i18n: ectx: property (title), widget (QGroupBox, originGB) +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "" + +#. i18n: file: Settings/KpkSettings.ui:106 +#. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) +#: rc.cpp:131 +msgid "&Show origins of debug and development packages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:26 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: rc.cpp:134 +#, fuzzy +#| msgid "About backend..." +msgid "About Backend" +msgstr "Pri la interno..." + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:32 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:137 +msgid "Backend name:" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:39 +#. i18n: ectx: property (text), widget (QLabel, nameL) +#: rc.cpp:140 +msgid "backend name here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:46 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:143 +msgid "Backend author:" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Description" +msgid "Backend description:" +msgstr "Priskribo" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 +#. i18n: ectx: property (text), widget (QLabel, authorL) +#: rc.cpp:149 +msgid "backend author name here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 +#. i18n: ectx: property (text), widget (QCheckBox, visibleCB) +#: rc.cpp:164 +msgid "Package is visible" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 +#. i18n: ectx: property (text), widget (QCheckBox, newestCB) +#: rc.cpp:167 +msgid "Newest" +msgstr "Plej freŝa" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 +#. i18n: ectx: property (text), widget (QCheckBox, guiCB) +#: rc.cpp:170 +msgid "GUI" +msgstr "GUI" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, freeCB) +#: rc.cpp:173 +msgid "Free software" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 +#. i18n: ectx: property (text), widget (QCheckBox, supportedCB) +#: rc.cpp:176 +msgid "Supported" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) +#: rc.cpp:179 +msgid "Methods" +msgstr "Metodoj" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 +#. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) +#: rc.cpp:182 +msgid "GetUpdates" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 +#. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) +#: rc.cpp:185 +msgid "UpdatePackage" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 +#. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) +#: rc.cpp:188 +msgid "GetRepositoryList" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 +#. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) +#: rc.cpp:191 +msgid "RefreshCache" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 +#. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) +#: rc.cpp:194 +msgid "InstallPackage" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 +#. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) +#: rc.cpp:197 +msgid "RepositoryEnable" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 +#. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) +#: rc.cpp:200 +msgid "UpdateSystem" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 +#. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) +#: rc.cpp:203 +msgid "RemovePackage" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 +#. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) +#: rc.cpp:206 +msgid "RepositorySetEnable" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 +#. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) +#: rc.cpp:209 +msgid "SearchName" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 +#. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) +#: rc.cpp:212 +msgid "GetDepends" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 +#. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) +#: rc.cpp:215 +msgid "WhatProvides" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 +#. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) +#: rc.cpp:218 +msgid "SearchDetails" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 +#. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) +#: rc.cpp:221 +msgid "GetRequires" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 +#. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) +#: rc.cpp:224 +msgid "GetPackages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 +#. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) +#: rc.cpp:227 +msgid "SearchGroup" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 +#. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) +#: rc.cpp:230 +msgid "GetUpdateDetail" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 +#. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) +#: rc.cpp:233 +msgid "SearchFile" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 +#. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) +#: rc.cpp:236 +msgid "GetDescription" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 +#. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) +#: rc.cpp:242 +msgid "GetFiles" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 +#. i18n: ectx: property (text), widget (QCheckBox, resolveCB) +#: rc.cpp:245 +msgid "Resolve" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 +#. i18n: ectx: property (text), widget (QCheckBox, installFileCB) +#: rc.cpp:248 +msgid "InstallFIle" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) +#: rc.cpp:251 +msgid "SimulateInstallFiles" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) +#: rc.cpp:254 +msgid "SimulateInstallPackages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 +#. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) +#: rc.cpp:257 +msgid "SimulateRemovePackages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 +#. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) +#: rc.cpp:260 +msgid "SimulateUpdatePackages" +msgstr "" diff -Nru kpackagekit-0.5.4/po/es/kpackagekit.po kpackagekit-0.6.0/po/es/kpackagekit.po --- kpackagekit-0.5.4/po/es/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/es/kpackagekit.po 2010-01-30 09:00:29.000000000 +0000 @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Cristina Yenyxe Gonzalez Garcia , 2009. +# Eloy Cuadra , 2009. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-09-24 10:34-0000\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2010-01-27 09:11-0000\n" "Last-Translator: Cristina Yenyxe González García \n" "Language-Team: Spanish \n" @@ -16,7 +17,7 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.0\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -29,11 +30,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detalles" @@ -95,20 +96,20 @@ "Le recomendamos que mantenga su ordenador enchufado durante todo el proceso " "de actualización." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Se ha completado la actualización de la distribución." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "La actualización de la distribución falló con el código de salida %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "No se pudo iniciar la actualización de la distribución." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -116,7 +117,7 @@ "La actualización de la distribución falló después de iniciarse " "satisfactoriamente." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "La actualización de la distribución falló con un error desconocido." @@ -176,7 +177,6 @@ msgstr "CVE" #: Updater/KpkUpdateDetails.cpp:149 -#, fuzzy msgid "Notice" msgstr "Notificación" @@ -197,28 +197,24 @@ msgid "Time since last cache refresh: %1" msgstr "Tiempo desde el último refresco de caché: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nombre del paquete" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Página principal" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licencia" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grupo" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Página principal" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Tamaño" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "No se encontraron archivos." @@ -230,234 +226,243 @@ msgid "KDE interface for managing software" msgstr "Interfaz de KDE para gestión de software" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Buscar" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Todos los paquetes" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Búsqueda de texto" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Lista de cambios" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Grupo:" msgstr[1] "Grupos:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cancelar" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Buscar por &nombre" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Buscar por nombre de arch&ivo" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Buscar por &descripción" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Revisar cambios" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Colecciones" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Solo colecciones" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Excluir colecciones" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Instalados" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Solo instalados" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Solo disponibles" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Sin filtro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Desarrollo" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Solo desarrollo" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Solo archivos de usuario final" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Gráficos" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Solo gráficos" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Solo texto" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Libres" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Solo software libre" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Solo software no-libre" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arquitecturas" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Solo arquitecturas nativas" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Solo arquitecturas no-nativas" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Código fuente" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Solo código fuente" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Solo no código fuente" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Ocultar subpaquetes" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Mostrar solo un paquete, no subpaquetes" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Solo los últimos paquetes" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Mostrar solo el último paquete disponible" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Ver en grupos" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Mostrar paquetes en grupos según su estado" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Se instalará el siguiente paquete:" msgstr[1] "Se instalarán los siguientes paquetes:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instalar ahora" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Se eliminará el siguiente paquete:" msgstr[1] "Se eliminarán los siguientes paquetes:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Eliminar ahora" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Se eliminará e instalará el siguiente paquete:" msgstr[1] "Se eliminarán e instalarán los siguientes paquetes:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Aplicar ahora" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "No se pudo simular la eliminación del paquete" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "El motor actual no soporta el borrado de paquetes." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Error de KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "No se pudo simular la instalación del paquete" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "El motor actual no soporta la instalación de paquetes." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "No se pudo eliminar el paquete" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "No se pudo instalar el paquete" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "No se pudo eliminar el paquete" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Ocultar" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Le permite ocultar la ventana mientras la transacción continúa ejecutándose." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -467,11 +472,11 @@ "resultar imposible verificar que el software procede de una fuente fiable.\n" "¿Está seguro de que desea continuar con la instalación?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Instalar software no firmado" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Es necesario un cambio de medio" @@ -491,7 +496,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Es necesario un acuerdo de licencia" @@ -504,13 +509,13 @@ msgid "Version" msgstr "Versión" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cancelar" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Terminado en %1." @@ -560,809 +565,817 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Es necesaria una firma de software" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Estado desconocido" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Esperando a que se inicie el servicio" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Esperando a otras tareas" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Ejecutando tarea" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Consultando" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Obteniendo información" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Eliminando paquetes" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Descargando paquetes" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Instalando paquetes" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Refrescando lista de software" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Actualizando paquetes" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Limpiando paquetes" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Marcando paquetes obsoletos" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Resolviendo dependencias" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Comprobando firmas" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Deshaciendo" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Probando los cambios" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Confirmando cambios" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Solicitando datos" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Terminado" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Cancelando" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Descargando información del repositorio" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Descargando lista de paquetes" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Descargando lista de archivos" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Descargando lista de cambios" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Descargando grupos" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Descargando información de actualización" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Reempaquetando archivos" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Cargando caché" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Comprobando aplicaciones instaladas" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generando lista de paquetes" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Esperando por el bloqueo del gestor de paquetes" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Esperando a autenticarse" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Actualizar la lista de aplicaciones en ejecución" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" -msgstr "Comprobar qué aplicaciones se están usando" +msgstr "Comprobando qué aplicaciones se están usando" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" -msgstr "Comprobar qué bibliotecas se están usando" +msgstr "Comprobando qué bibliotecas se están usando" + +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Copiando archivos" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Descargado" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Actualizado" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Eliminado" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Limpio" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Obsoleto" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Tipo de rol desconocido" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Obteniendo dependencias" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Obteniendo detalles de la actualización" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Obteniendo detalles" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Obteniendo requisitos" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Obteniendo actualizaciones" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Buscando detalles" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Buscando archivo" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Buscando grupos" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Buscando por nombre de paquete" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Eliminando" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Instalando" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Instalando archivo" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Refrescando caché de paquetes" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Actualizando paquetes" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Actualizando el sistema" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Cancelando" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Deshaciendo" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Obteniendo la lista de repositorios" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Habilitando repositorio" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Definiendo datos del repositorio" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Resolviendo" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Obteniendo lista de archivos" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 #, fuzzy msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Obteniendo lo que proporciona" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Instalando firma" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Obteniendo listas de paquetes" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Aceptando EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Descargando paquetes" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Obteniendo información de actualización de la distribución" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Obteniendo categorías" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Obteniendo transacciones anteriores" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Simulando la instalación de archivos" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Simulando instalación" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Simulando eliminación" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Simulando actualización" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Tipo de rol desconocido" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Dependencias obtenidas" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Detalles de la actualización obtenidos" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Detalles obtenidos" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Requisitos obtenidos" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Actualizaciones obtenidas" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Detalles del paquete buscados" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Archivo buscado" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Grupos buscados" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Buscado por nombre de paquete" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Paquetes eliminados" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Paquetes instalados" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Archivos locales instalados" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Caché de paquetes refrescada" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Paquetes actualizados" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Sistema actualizado" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Cancelado" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Deshecho" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Lista de repositorios obtenida" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Repositorio habilitado" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Datos del repositorio definidos" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Resuelto" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Lista de archivos obtenida" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 #, fuzzy msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Obtenido lo que proporciona" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Firma instalada" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Listas de paquetes obtenidas" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "EULA aceptada" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Paquetes descargados" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Actualizaciones de la distribución obtenidas" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Categorías obtenidas" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Transacciones anteriores obtenidas" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Instalación de archivos simulada" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Instalación simulada" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Eliminación simulada" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Actualización simulada" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Conexión de red no disponible" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Caché de paquetes no disponible" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Memoria agotada" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "No se pudo crear un hilo" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "No soportado por este motor" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Ha ocurrido un error interno del sistema" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "No se ha encontrado una relación de confianza" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "El paquete no está instalado" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "No se encontró el paquete" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "El paquete ya está instalado" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "No se pudo descargar el paquete" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "No se encontró el grupo" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "La lista de grupos no era válida" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "No se pudieron resolver las dependencias" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "El filtro de búsqueda no era válido" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "El identificador del paquete no estaba bien formado" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Error en la transacción" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "No se encontró el nombre del repositorio" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "No se pudo eliminar un paquete protegido de sistema" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "La tarea fue cancelada" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "La tarea fue cancelada forzosamente" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "No se pudo leer el archivo de configuración" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "La tarea no puede ser cancelada" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "No se pudo instalar los paquetes de código fuente" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "No se pudo confirmar el acuerdo de licencia" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Conflicto local entre paquetes" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Los paquetes no son compatibles" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "No se pudo conectar al origen de software" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Error al iniciar" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Error al finalizar" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "No se pudo obtener el bloqueo" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "No hay paquetes por actualizar" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "No se puede escribir la configuración de repositorios" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Error en la instalación local" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Firma GPG no válida" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Firma GPG no encontrada" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Configuración de repositorios no válida" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Archivo de paquete no válido" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Instalación de paquetes bloqueada" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" -msgstr "El paquete está corrupto" +msgstr "El paquete está dañado" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Todos los paquetes están instalados" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "No se pudo encontrar el archivo especificado" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "No hay más espejos disponibles" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Los datos de la actualización de distribución no están disponibles" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "El paquete es incompatible con este sistema" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "No queda espacio en disco" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Autorización fallida" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "No se encontró la actualización" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "No se puede instalar desde un origen no fiable" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "No se puede actualizar desde un origen no fiable" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "No se puede obtener la lista de archivos" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "No se pueden obtener los requisitos del paquete" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "No se puede deshabilitar el origen" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Descarga fallida" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Error al configurar el paquete" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Error al construir el paquete" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Error al instalar el paquete" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Error al eliminar el paquete" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Error desconocido" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1370,7 +1383,7 @@ "No hay ninguna conexión de red disponible.\n" "Por favor, revise su configuración y vuelva a intentarlo" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1378,7 +1391,7 @@ "Es necesario regenerar la lista de paquetes.\n" "Esta tarea debería haberla realizado el motor automáticamente." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1388,11 +1401,11 @@ "de los usuarios.\n" "Por favor, cierre algún programa o reinicie su ordenador." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "No se pudo crear un hilo para atender la petición del usuario." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1400,7 +1413,7 @@ "La acción no está soportada por este motor.\n" "Le rogamos que envíe un informe de fallo, porque esto no debería ocurrir." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1408,34 +1421,34 @@ "Ha ocurrido un error inesperado.\n" "Por favor, envíe un informe de fallo con la descripción del error." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "No se ha podido establecer una relación de confianza con el origen del " "software.\n" "Por favor, revise la configuración de sus firmas de software." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "El paquete que está intentando eliminar o actualizar aún no está instalado." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "El paquete que está siendo modificado no se encontró en su sistema ni en " "ningún origen de software." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "El paquete que está intentando instalar ya está instalado." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1443,7 +1456,7 @@ "No se pudo descargar el paquete.\n" "Por favor, compruebe su conectividad de red." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1451,17 +1464,17 @@ "No se encontró el tipo de grupo.\n" "Por favor, compruebe su lista de grupos y vuelva a intentarlo." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "No se pudo cargar la lista de grupos.\n" "Puede intentar refrescar su caché, aunque normalmente se debe a un error en " "el origen de software." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1469,11 +1482,11 @@ "No se ha podido encontrar una dependencia del paquete.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "El filtro de búsqueda no estaba bien formado." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1482,7 +1495,7 @@ "formado.\n" "Normalmente, esto se debe a un error interno y debería informarse de ello." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1490,23 +1503,23 @@ "Ha ocurrido un error mientras se ejecutaba la transacción.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "No se encontró el nombre del origen de software remoto.\n" "Puede que necesite habilitar algún elemento en «Orígenes de software»." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "No está permitido eliminar un paquete protegido del sistema." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "La tarea fue cancelada con éxito y no se modificó ningún paquete." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1514,7 +1527,7 @@ "La tarea fue cancelada con éxito y no se modificó ningún paquete.\n" "El motor no se detuvo de manera limpia." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 #, fuzzy msgid "" "The native package configuration file could not be opened.\n" @@ -1523,11 +1536,11 @@ "No se pudo abrir el archivo de configuración de paquetes nativos.\n" "Por favor, asegúrese de que la configuración de su sistema es válida." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "No es seguro cancelar la operación en este momento." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1535,7 +1548,7 @@ "Los paquetes de código fuente no se suelen instalar de esta forma.\n" "Compruebe la extensión del archivo que está intentando instalar." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1543,34 +1556,34 @@ "El acuerdo de licencia no ha sido aceptado.\n" "Para utilizar este software debe aceptar la licencia." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Dos paquetes proporcionan el mismo archivo.\n" "Esto suele deberse a la mezcla de paquetes de diferentes orígenes de " "software." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Hay varios paquetes incompatibles entre sí.\n" "Esto suele deberse a la mezcla de paquetes de diferentes orígenes de " "software." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Ha habido un problema (posiblemente temporal) de conexión al origen de " "software.\n" "Por favor, para obtener más detalles compruebe el informe detallado." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1579,7 +1592,7 @@ "Esto puede deberse a que esté usando otras herramientas de paquetería " "simultáneamente." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1587,7 +1600,7 @@ "Error al cerrar la instancia del motor.\n" "Normalmente puede ignorar este error." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1595,15 +1608,15 @@ "No se pudo obtener el bloque exclusivo del motor de paquetería.\n" "Por favor, cierre otras herramientas de paquetería que puedan estar abiertas." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "No se pudo actualizar ninguno de los paquetes seleccionados." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "No se pudo modificar la configuración del repositorio." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1611,11 +1624,11 @@ "No se pudo instalar el archivo local.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "No se pudo verificar la firma del paquete." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1623,19 +1636,19 @@ "Este paquete no tiene firma y no es fiable.\n" "El paquete no fue firmado con una clave GPG cuando lo crearon." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "La configuración de repositorios no es válida y no se pudo leer." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." msgstr "" "El paquete que está intentando instalar no es válido.\n" -"El paquete puede estar corrupto o no ser realmente un paquete." +"El paquete puede estar dañado o no ser realmente un paquete." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1643,17 +1656,17 @@ "La configuración de su sistema de paquetería previno la instalación de este " "paquete." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." -msgstr "El paquete descargado estaba corrupto y necesita descargarse de nuevo." +msgstr "El paquete descargado estaba dañado y necesita descargarse de nuevo." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Todos los paquetes seleccionados para instalación ya están instalados." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1661,32 +1674,32 @@ "No se pudo encontrar el archivo especificado en el sistema.\n" "Compruebe que el archivo aún existe y que no ha sido borrado." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "No se pudieron encontrar datos obligatorios en ninguno de los orígenes de " "software configurados.\n" "No quedan más espejos en los que intentar buscar." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -"No se pudieron encontrar datos obligatorios de actualización en ninguno de " -"los orígenes de software configurados.\n" +"No se encontraron los datos de actualización necesarios en ninguno de los " +"orígenes de software configurados.\n" "La lista de actualizaciones de la distribución no estará disponible." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "El paquete que está intentando instalar es incompatible con su sistema." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1695,11 +1708,11 @@ "Libere algo de espacio en el disco del sistema para poder realizar esta " "operación." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Para completar la transacción se necesita un medio adicional." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1707,7 +1720,7 @@ "No se ha autenticado correctamente.\n" "Por favor, compruebe las preferencias de contraseñas y cuentas." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1716,28 +1729,28 @@ "No se pudo encontrar la actualización especificada.\n" "Quizá ya se haya instalado o ya no esté disponible en el servidor remoto." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "No se pudo instalar el paquete desde un origen no fiable." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "No se pudo actualizar el paquete desde un origen no fiable." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "La lista de archivos de este paquete no está disponible." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" "No se pudo obtener la información sobre los requisitos de este paquete." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "No se pudo deshabilitar el origen de software especificado." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1745,7 +1758,7 @@ "No se ha podido realizar la descarga automáticamente y debe hacerse a mano.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1753,7 +1766,7 @@ "No se pudo configurar uno de los paquetes seleccionados.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1761,7 +1774,7 @@ "No se pudo construir uno de los paquetes seleccionados.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1769,7 +1782,7 @@ "No se pudo instalar uno de los paquetes seleccionados.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1777,7 +1790,7 @@ "No se pudo eliminar uno de los paquetes seleccionados.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1785,240 +1798,239 @@ "Error desconocido, le rogamos que informe del fallo.\n" "En el informe detallado puede consultar más información." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Accesibilidad" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Accesorios" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Educación" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Juegos" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Gráficos" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Oficina" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Otros" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Desarrollo" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistema" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Escritorio GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Escritorio KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Escritorio XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Otros escritorios" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servidores" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Tipos de letra" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Herramientas de administración" -#: libkpackagekit/KpkStrings.cpp:621 -#, fuzzy +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Heredado" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Localización" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualización" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Seguridad" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Gestión de energía" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Comunicación" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Red" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapas" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" -msgstr "" +msgstr "Fuentes de software" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Ciencia" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentación" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Electrónica" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Colecciones de paquetes" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Distribuidor" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Últimos paquetes" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Grupo desconocido" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Actualización trivial" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Actualización normal" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Actualización importante" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Actualización de seguridad" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Actualización de solución de errores" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Actualización de mejora" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Actualización bloqueada" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Disponible" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Actualización desconocida" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 actualización trivial" msgstr[1] "%1 actualizaciones triviales" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2026,70 +2038,70 @@ msgstr[0] "1 actualización" msgstr[1] "%1 actualizaciones" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 actualización importante" msgstr[1] "%1 actualizaciones importantes" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 actualización de seguridad" msgstr[1] "%1 actualizaciones de seguridad" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 actualización de solución de errores" msgstr[1] "%1 actualizaciones de solución de errores" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 actualización de mejora" msgstr[1] "%1 actualizaciones de mejora" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 actualización bloqueada" msgstr[1] "%1 actualizaciones bloqueadas" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 paquete instalado" msgstr[1] "%1 paquetes instalados" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 paquete disponible" msgstr[1] "%1 paquetes disponibles" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 actualización desconocida" msgstr[1] "%1 actualizaciones desconocidas" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 actualización trivial seleccionada" msgstr[1] "%1 actualizaciones triviales seleccionadas" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2097,56 +2109,56 @@ msgstr[0] "1 actualización seleccionada" msgstr[1] "%1 actualizaciones seleccionadas" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 actualización importante seleccionada" msgstr[1] "%1 actualizaciones importantes seleccionadas" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 actualización de seguridad seleccionada" msgstr[1] "%1 actualizaciones de seguridad seleccionadas" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 actualización de solución de errores seleccionada" msgstr[1] "%1 actualizaciones de solución de errores seleccionadas" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 actualización de mejora seleccionada" msgstr[1] "%1 actualizaciones de mejora seleccionadas" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 paquete instalado seleccionado para eliminarse" msgstr[1] "%1 paquetes instalados seleccionados para eliminarse" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 paquete disponible seleccionado para instalarse" msgstr[1] "%1 paquetes disponibles seleccionados para instalarse" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 actualización trivial" msgstr[1] "%1 actualizaciones triviales, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2154,514 +2166,754 @@ msgstr[0] "%1 actualización" msgstr[1] "%1 actualizaciones, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 actualización importante" msgstr[1] "%1 actualizaciones importantes, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 actualización de seguridad" msgstr[1] "%1 actualizaciones de seguridad, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 actualización de solución de errores" msgstr[1] "%1 actualizaciones de solución de errores, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 actualización de mejora" msgstr[1] "%1 actualizaciones de mejora, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 actualización bloqueada" msgstr[1] "%1 actualizaciones bloqueadas" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 paquete instalado" msgstr[1] "%1 paquetes instalado, %2 seleccionados para eliminarse" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 paquete disponible" msgstr[1] "%1 paquetes disponibles, %2 seleccionados para instalarse" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 actualización desconocida" msgstr[1] "%1 actualizaciones desconocidas" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "No es necesario reiniciar" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Se le pedirá que reinicie esta aplicación" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Se le pedirá que cierre sesión y vuelva a abrirla" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Se le pedirá que reinicie la máquina" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "Se le pedirá que cierre sesión y vuelva a abrirla debido a una actualización " "de seguridad." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" "Se le pedirá que reinicie la máquina debido a una actualización de seguridad." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "No es necesario reiniciar" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Es necesario reiniciar" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Debe cerrar sesión y volver a abrirla" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Debe reiniciar la aplicación" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "Debe cerrar sesión y volver a abrirla por razones de seguridad." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "Es necesario reiniciar por razones de seguridad." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Estable" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Inestable" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "En pruebas" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Por favor, introduzca el CD «%1» y pulse «continuar»." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Por favor, introduzca el DVD «%1» y pulse «continuar»." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Por favor, introduzca el disco «%1» y pulse «continuar»." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Por favor, introduzca el medio «%1» y pulse «continuar»." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" -msgstr "Puede que un espejo esté corrupto" +msgstr "Puede que un espejo esté dañado" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Conexión rechazada" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parámetro no válido" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Prioridad no válida" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Advertencia del motor" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Advertencia del demonio" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Se está regenerando la caché de la lista de paquetes" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Se instaló un paquete no fiable" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Existe un paquete posterior" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "No se pudo encontrar el paquete" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Se han modificado los archivos de configuración" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "El paquete ya está instalado" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" -msgstr "" +msgstr "Se ignorará la limpieza automática" -#: libkpackagekit/KpkStrings.cpp:883 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "No se pudo descargar el paquete" +msgstr "No se pudo descargar el código del software" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." -msgstr "No tiene los privilegios necesarios para ejecutar esta operación." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "No tiene los permisos necesarios para ejecutar esta operación." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "No se pudo obtener un ID de transacción de packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "No se puede conectar a este ID de transacción." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Acción desconocida." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "No se pudo iniciar el servicio packagekitd." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "Consulta no válida." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "Archivo no válido." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Función aún no soportada." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "No se pudo establecer la comunicación con packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Ha ocurrido un error desconocido." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorar" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                          • %2
                          Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                          • %2
                          Do you want to search " +"for these now?" +msgstr[0] "" +"Se necesita el siguiente archivo:
                          • %2
                          ¿Desea buscarlo ahora?" +msgstr[1] "" +"Se necesitan los siguientes archivos:
                          • %2
                          ¿Desea buscarlos " +"ahora?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Un programa desea instalar un archivo" +msgstr[1] "Un programa desea instalar unos archivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 desea instalar un archivo" +msgstr[1] "%2 desea instalar unos archivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Error al iniciar la transacción de búsqueda de archivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "El paquete %1 ya proporciona este archivo" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "No se pudo instalar el archivo" +msgstr[1] "No se pudo instalar los archivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Se instalará el siguiente paquete" +msgstr[1] "Se instalarán los siguientes paquetes" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "No se encontró el archivo en ningún paquete" +msgstr[1] "No se encontraron los archivos en ningún paquete" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "No se pudo encontrar el paquete" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Usted tiene %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                          And another update" msgid_plural "
                          And %1 more updates" msgstr[0] "
                          Y otra actualización" msgstr[1] "
                          Y %1 actualizaciones más" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Revisar y actualizar" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Ahora no" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "No volver a preguntar" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Las actualizaciones se están instalando automáticamente." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Las actualizaciones de seguridad se están instalando automáticamente." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Se ha actualizado el sistema con éxito." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "No se pudo actualizar el software." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Se necesita el siguiente archivo:" +msgstr[1] "Se necesitan los siguientes archivos:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "¿Desea buscarlo ahora?" +msgstr[1] "¿Desea buscarlos ahora?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 desea instalar un archivo" +msgstr[1] "%1 desea instalar archivos" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Iniciar actualización ahora" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Actualización de la distribución terminada. " -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 -msgid "KPackageKit" -msgstr "KPackageKit" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Error al iniciar la transacción de resolución" -#: SmartIcon/main.cpp:36 -msgid "KPackageKit Tray Icon" -msgstr "Icono de KPackageKit en la bandeja del sistema" +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "Transacción cancelada por el usuario" -#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Ha ocurrido un error desconocido" -#: SmartIcon/main.cpp:41 -msgid "Trever Fischer" -msgstr "Trever Fischer" +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                          • %2
                          Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                          • %2
                          Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Se necesita un paquete adicional:
                          • %2
                          ¿Desea buscar e " +"instalar este paquete ahora?" +msgstr[1] "" +"Se necesitan unos paquetes adicionales:
                          • %2
                          ¿Desea buscar e " +"instalar estos paquetes ahora?" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "Adrien Bustany" -msgstr "Adrien Bustany" +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Un programa desea instalar un paquete" +msgstr[1] "Un programa desea instalar unos paquetes" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "libpackagekit-qt and other stuff" +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 desea instalar un paquete" +msgstr[1] "%2 desea instalar unos paquetes" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "El paquete %2 ya está instalado" +msgstr[1] "Los paquetes %2 ya están instalados" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "No se pudo instalar los paquetes" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "La transacción no terminó con éxito" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "No se ha podido encontrar el paquete en ningún origen de software" +msgstr[1] "No se ha podido encontrar los paquetes en ningún origen de software" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "No se pudo encontrar %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "Icono de KPackageKit en la bandeja del sistema" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt y otras cosas" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Para abrir este tipo de archivo se necesita un tipo de letra adicional:
                          " +"%1
                          ¿Desea buscar ahora un paquete adecuado?" +msgstr[1] "" +"Para abrir este tipo de archivo se necesitan tipos de letra adicionales:
                          %1
                          ¿Desea buscar ahora los paquetes adecuados?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Un programa desea instalar un tipo de letra" +msgstr[1] "Un programa desea instalar unos tipos de letra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 desea instalar un tipo de letra" +msgstr[1] "%2 desea instalar unos tipos de letra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Buscar" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +#, fuzzy +msgid "Failed to search for provides" +msgstr "No se pudo buscar lo que proporciona" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplicación que puede abrir este tipo de archivo" +msgstr[1] "Aplicaciones que pueden abrir este tipo de archivo" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "No se encontró ningún tipo de letra nuevo para este documento" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "No se pudo encontrar el tipo de letra" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Este elemento no está soportado por su motor, o no es un archivo." +msgstr[1] "" +"Estos elementos no están soportados por su motor, o no son archivos." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Imposible de instalar" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "¿Desea instalar este archivo?" +msgstr[1] "¿Desea instalar estos archivos?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "¿Instalar?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "No se instaló el archivo" +msgstr[1] "No se instalaron los archivos" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "El archivo se ha instalado con éxito" +msgstr[1] "Los archivos se han instalado con éxito" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Ha ocurrido un error." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                          • %2
                          Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                          • %2
                          Do you want to " +"search for these now?" +msgstr[0] "" +"Se necesita el siguiente complemento:
                          • %2
                          ¿Desea buscarlo " +"ahora?" +msgstr[1] "" +"Se necesitan los siguientes complementos:
                          • %2
                          ¿Desea " +"buscarlos ahora?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Un programa necesita un complemento adicional para decodificar este archivo" +msgstr[1] "" +"Un programa necesita unos complementos adicionales para decodificar este " +"archivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Un programa necesita un complemento adicional para codificar este archivo" +msgstr[1] "" +"Un programa necesita unos complementos adicionales para codificar este " +"archivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Un programa necesita un complemento adicional para esta operación" +msgstr[1] "" +"Un programa necesita unos complementos adicionales para esta operación" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 necesita un complemento adicional para decodificar este archivo" +msgstr[1] "%2 necesita complementos adicionales para decodificar este archivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 necesita un complemento adicional para codificar este archivo" +msgstr[1] "%2 necesita complementos adicionales para codificar este archivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 necesita un complemento adicional para esta operación" +msgstr[1] "%2 necesita complementos adicionales para esta operación" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "¿Desea instalar este paquete ahora?" +msgstr[1] "¿Desea instalar estos paquetes ahora?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "No se ha podido encontrar el complemento en ningún origen de software" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Error al buscar el complemento" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "No se pudo encontrar el nombre de archivo en ningún origen de software" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transacciones" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Refrescar lista de paquetes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Mostrar mensajes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Ocultar este icono" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Paquete: %1" -msgstr[1] "Paquetes: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paquete: %2" +msgstr[1] "Paquetes: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Un mensaje del gestor de paquetes" msgstr[1] "%1 mensajes del gestor de paquetes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Actualización del sistema completa" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Reiniciar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ahora no" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Cerrar sesión" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Mensajes del gestor de paquetes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Mensaje" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Preferencias de KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Cada hora" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Cada día" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Cada semana" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Cada mes" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nunca" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Solo de seguridad" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Todas las actualizaciones" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Ninguna" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "No tiene los permisos necesarios para ejecutar esta operación." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Error al establecer el origen de datos" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Se necesita el siguiente archivo:" -msgstr[1] "Se necesitan los siguientes archivos:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "¿Desea buscarlo ahora?" -msgstr[1] "¿Desea buscarlos ahora?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Un programa desea instalar un archivo" -msgstr[1] "Un programa desea instalar unos archivos" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 desea instalar un archivo" -msgstr[1] "%1 desea instalar archivos" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Error al iniciar la transacción de búsqueda de archivos" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "El paquete %1 ya proporciona este archivo" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Se instalará el siguiente paquete" -msgstr[1] "Se instalarán los siguientes paquetes" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "No se encontró el archivo en ningún paquete" -msgstr[1] "No se encontraron los archivos en ningún paquete" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "No se pudo encontrar el paquete" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Un programa desea eliminar un archivo" msgstr[1] "Un programa desea eliminar unos archivos" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 desea eliminar un archivo" -msgstr[1] "%1 desea eliminar archivos" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 desea eliminar un archivo" +msgstr[1] "%2 desea eliminar unos archivos" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Se eliminará el siguiente archivo:" msgstr[1] "Se eliminarán los siguientes archivos:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2672,28 +2924,152 @@ "¿Desea buscar los paquetes que contengan estos archivos y eliminar estos " "últimos?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Buscar" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Se eliminará el siguiente paquete" msgstr[1] "Se eliminarán los siguientes paquetes" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "No se pudo encontrar el archivo en ningún paquete instalado" msgstr[1] "No se pudo encontrar los archivos en ningún paquete instalado" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "No se pudo encontrar %1" +msgid "" +"An additional program is required to open this type of file:
                          • %1
                          • Do you want to search for a program to open this file type now?" +msgstr "" +"Para abrir este tipo de archivo se necesita un programa adicional:
                            • %" +"1
                            ¿Desea buscar un programa para abrir este tipo de archivo?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Un programa necesita un nuevo tipo mime" +msgstr[1] "Un programa necesita nuevos tipos mime" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 necesita un nuevo tipo mime" +msgstr[1] "%2 necesita nuevos tipos mime" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Buscar" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "No se encontró ninguna aplicación para manejar este tipo de archivo" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "No se pudo encontrar el software" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                            Do you want to install this catalog?

                            • %2
                            " +msgid_plural "" +"

                            Do you want to install these catalogs?

                            • %2
                            " +msgstr[0] "

                            ¿Desea instalar este catálogo?

                            • %2
                            " +msgstr[1] "

                            ¿Desea instalar estos catálogos?

                            • %2
                            " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instalar catálogo" +msgstr[1] "Instalar catálogos" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Su motor no soporta ninguno de los métodos necesarios para instalar un " +"catálogo" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "No soportado" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Error al abrir el catálogo %2" +msgstr[1] "Error al abrir los catálogos %2" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Error a abrir" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "No se encontró ningún paquete a instalar" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Error al empezar a configurar la transacción" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Preferencias de KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Cada hora" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Cada día" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Cada semana" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Cada mes" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nunca" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Solo de seguridad" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Todas las actualizaciones" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Ninguna" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Error al establecer el origen de datos" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2731,140 +3107,6 @@ msgid "Package file to install" msgstr "Archivo de paquete a instalar" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Este elemento no está soportado por su motor, o no es un archivo." -msgstr[1] "" -"Estos elementos no están soportados por su motor, o no son archivos." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Imposible de instalar" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "¿Desea instalar este archivo?" -msgstr[1] "¿Desea instalar estos archivos?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "¿Instalar?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "No se instaló el archivo" -msgstr[1] "No se instalaron los archivos" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "No se pudo instalar el archivo" -msgstr[1] "No se pudo instalar los archivos" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "El archivo se ha instalado con éxito" -msgstr[1] "Los archivos se han instalado con éxito" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Ha ocurrido un error." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Es necesario un paquete adicional:" -msgstr[1] "Son necesarios unos paquetes adicionales:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "¿Desea buscar e instalar este paquete ahora?" -msgstr[1] "¿Desea buscar e instalar estos paquetes ahora?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Un programa desea instalar un paquete" -msgstr[1] "Un programa desea instalar unos paquetes" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 desea instalar un paquete" -msgstr[1] "%1 desea instalar unos paquetes" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Error al iniciar la transacción de resolución" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "No se ha podido encontrar el paquete en ningún origen de software" -msgstr[1] "No se ha podido encontrar los paquetes en ningún origen de software" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                            %1
                            Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Para abrir este tipo de archivo se necesita un programa adicional:
                            %" -"1
                            ¿Desea buscar un programa para abrir este tipo de archivo?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Un programa necesita un nuevo tipo mime" -msgstr[1] "Un programa necesita nuevos tipos mime" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 necesita un nuevo tipo mime" -msgstr[1] "%1 necesita nuevos tipos mime" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Buscar" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -#, fuzzy -msgid "Failed to search for provides" -msgstr "No se pudo buscar lo que proporciona" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplicación que puede abrir este tipo de archivo" -msgstr[1] "Aplicaciones que pueden abrir este tipo de archivo" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "No se encontró ninguna aplicación para manejar este tipo de archivo" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "No se pudo encontrar el software" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2875,19 +3117,19 @@ msgid "Your emails" msgstr "the.blue.valkyrie@gmail.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Seleccionar todas las actualizaciones" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Refrescar" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2925,394 +3167,447 @@ msgid "Required by" msgstr "Necesario para" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Añadir y eliminar software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Buscar paquetes" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtros" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Todos los paquetes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transacción" +msgid "Transaction" +msgstr "Transacción" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "icono" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Descargando paquetes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Una biblioteca para hacer foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "Para completar la tarea se necesitan cambios adicionales." #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Acciones" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nombre del repositorio:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL de la firma:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 -#, fuzzy +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identificador del usuario de la firma:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificador de firma:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "¿Reconoce a este usuario y confía en esta clave?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "¿Confía en el origen de los paquetes?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Por favor, lea la siguiente información importante antes de continuar:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Preferencias" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Preferencias de KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Check for Updates:" +msgid "Update settings" +msgstr "Preferencias de actualización" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Instalar automáticamente:" +msgid "Check for updates:" +msgstr "Comprobar actualizaciones:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -#, fuzzy -msgid "Smart Tray Icon" -msgstr "Icono inteligente de la bandeja del sistema" +msgid "Automatically install:" +msgstr "Instalar automáticamente:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Notificar cuando haya actualizaciones disponibles" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Notificar cuando se complete una tarea larga" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "Origen de los paquetes" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Mostrar origen de los paquetes de depuración y desarrollo" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Sobre el motor" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Nombre del motor:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "nombre del motor aquí" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Autor del motor:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Descripción del motor:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "nombre del autor del motor aquí" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "descripción del motor aquí" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "El paquete está visible" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Último" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "interfaz gráfica de usuario" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Software libre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Soportado" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Métodos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "GetUpdates" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "UpdatePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "GetRepositoryList" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "RefreshCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "RepositoryEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "UpdateSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "RemovePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "RepositorySetEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "SearchName" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "GetDepends" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "WhatProvides" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "SearchDetails" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "GetRequires" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "GetPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "SearchGroup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "GetUpdateDetail" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "SearchFile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "GetDescription" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "GetFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resolve" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "SimulateUpdatePackages" +#~ msgid "User canceled the installation" +#~ msgstr "Instalación cancelada por el usuario" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Este elemento no está soportado por su motor, o no es un archivo." +#~ msgstr[1] "" +#~ "Estos elementos no están soportados por su motor, o no son archivos." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Es necesario un paquete adicional:" +#~ msgstr[1] "Son necesarios unos paquetes adicionales:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "¿Desea buscar e instalar este paquete ahora?" +#~ msgstr[1] "¿Desea buscar e instalar estos paquetes ahora?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                            %1
                            Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Para abrir este tipo de archivo se necesita un programa adicional:
                            %" +#~ "1
                            ¿Desea buscar un programa para abrir este tipo de archivo?" + +#~ msgid "All packages" +#~ msgstr "Todos los paquetes" + +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "No tiene los privilegios necesarios para ejecutar esta operación." + +#~ msgid "Package Name" +#~ msgstr "Nombre del paquete" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Preferencias de KPackageKit" + +#, fuzzy +#~ msgid "Smart Tray Icon" +#~ msgstr "Icono inteligente de la bandeja del sistema" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Notificar cuando se complete una tarea larga" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Transacción" + +#~ msgid "A library to do foo" +#~ msgstr "Una biblioteca para hacer foo" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Los siguientes paquetes serán instalados como dependencias" diff -Nru kpackagekit-0.5.4/po/et/kpackagekit.po kpackagekit-0.6.0/po/et/kpackagekit.po --- kpackagekit-0.5.4/po/et/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/et/kpackagekit.po 2010-01-30 09:00:34.000000000 +0000 @@ -2,20 +2,20 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# Marek Laane , 2009. +# Marek Laane , 2009, 2010. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-09-01 14:36+0300\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2010-01-28 05:02+0200\n" "Last-Translator: Marek Laane \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: KBabel 1.11.4\n" +"X-Generator: Lokalize 1.0\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -28,11 +28,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Üksikasjad" @@ -92,27 +92,27 @@ "is being performed." msgstr "Uuendamise ajal on soovitatav arvuti sees hoida." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Distributsiooni uuendamine on lõpetatud." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Distributsiooni uuendamine lõpetati koodiga %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Distributsiooni uuendamise käivitamine nurjus." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" "Distributsiooni uuendamine käivitati edukalt, aga seejärel tabas seda krahh." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Distributsiooni uuendamine nurjus tundmatu vea tõttu." @@ -192,28 +192,24 @@ msgid "Time since last cache refresh: %1" msgstr "Aeg alates puhvri viimasest värskendamisest: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Paketi nimi" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Kodulehekülg" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Litsents" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Rühm" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Kodulehekülg" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Suurus" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Faile ei leitud." @@ -225,233 +221,246 @@ msgid "KDE interface for managing software" msgstr "KDE tarkvara haldamise liides" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Otsing" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Kõik paketid" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Muutuste nimekiri" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Rühm:" msgstr[1] "Rühmad:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Loobu" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Otsi &nime järgi" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Ots&i failinime järgi" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Otsi kirjel&duse järgi" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Uuri muutusi" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Kogud" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Ainult kogud" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Kogud jäetakse välja" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Paigaldatud" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Ainult paigaldatud" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Ainult saadaolevad" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Filter puudub" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Arendus" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Ainult arendus" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Ainult lõppkasutaja failid" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Graafiline" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Ainult graafiline" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Ainult tekst" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Vaba" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Ainult vaba tarkvara" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Ainult mittevaba tarkvara" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arhitektuurid" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Ainult loomulikud arhitektuurid" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Ainult mitteloomulikud arhitektuurid" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Lähtekood" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Ainult lähtekood" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Ainult mittelähtekood" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Peida alampaketid" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Ainult ühe paketi, mitte alampakettide näitamine" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Ainult uusimad paketid" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Ainult uusimate saadaolevate pakettide näitamine" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Vaade rühmadena" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Pakettide näitamine rühmades vastavalt olekule" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Paigaldatakse järgmine pakett:" msgstr[1] "Paigaldatakse järgmised paketid:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Paigalda nüüd" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Eemaldatakse järgmine pakett:" msgstr[1] "Eemaldatakse järgmised paketid:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Eemalda nüüd" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Eemaldatakse ja paigaldatakse järgmine pakett:" msgstr[1] "Eemaldatakse ja paigaldatakse järgmised paketid:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Rakenda nüüd" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Paketinimekirja uuendamine nurjus" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Aktiivne taustaprogramm ei toeta pakettide eemaldamist." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKiti viga" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Paketinimekirja uuendamine nurjus" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Aktiivne taustaprogramm ei toeta pakettide paigaldamist." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Paketi eemaldamine nurjus" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Paketi paigaldamine nurjus" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Paketi eemaldamine nurjus" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Peida" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Võimaldab peita akna, jättes ülesande samal ajal täitmisele." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                            Installing unsigned packages can compromise your system, as it is " @@ -466,11 +475,11 @@ "sest pole võimalik kontrollida, kas tarkvara on pärit usaldusväärsest " "allikast. Kas tõesti jätkata paigaldamist?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Allkirjastamata tarkvara paigaldamine" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Vajalik on andmekandja vahetamine" @@ -492,7 +501,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Vajalik on nõustumine litsentsiga" @@ -507,13 +516,13 @@ msgid "Version" msgstr "Uus versioon" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Loobu" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Lõpetatud ajaga %1." @@ -570,379 +579,486 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Tarkvara allkiri on nõutav" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Tundmatu olek" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Oodatakse teenuse käivitumist" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Oodatakse teiste ülesannete järel" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Ülesande täitmine" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Päring" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Teabe hankimine" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Pakettide eemaldamine" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Pakettide allalaadimine" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Pakettide paigaldamine" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Tarkvara nimekirja värskendamine" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Pakettide uuendamine" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Pakettide puhastamine" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Pakettide igandamine" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Sõltuvuste lahendamine" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Allkirjade kontrollimine" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Taastamine" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Muutuste testimine" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Muutuste teostamine" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Andmepäring" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Lõpetatud" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Tühistamine" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Hoidla teabe allalaadimine" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Pakettide nimekirja allalaadimine" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Failide nimekirja allalaadimine" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Muutuste nimekirja allalaadimine" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Rühmade allalaadimine" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Uuendusteabe allalaadimine" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Failide ümberpakendamine" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Puhvri laadimine" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Paigaldatud rakenduste tuvastamine" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Pakettide nimekirja koostamine" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Paketihalduri lukustamise ootamine" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Oodatakse teiste ülesannete järel" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Failide ümberpakendamine" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Alla laaditud" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Uuendatud" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Paigaldatud" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Eemaldatud" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Puhastatud" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Igandatud" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Tundmatu rollitüüp" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Sõltuvuste hankimine" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Uuendamise üksikasjade hankimine" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Üksikasjade hankimine" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Nõuete hankimine" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Uuenduste hankimine" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Üksikasjade otsimine" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Faili otsimine" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Rühmade otsimine" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Otsimine paketi nime järgi" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Eemaldamine" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Paigaldamine" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Faili paigaldamine" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Paketipuhvri värskendamine" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Pakettide uuendamine" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Süsteemi uuendamine" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Tühistamine" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Taastamine" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Hoidlate nimekirja hankimine" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Hoidla lubamine" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Hoidla andmete määramine" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Lahendamine" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Failide nimekirja hankimine" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Tarnete hankimine" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Allkirja paigaldamine" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Pakettide nimekirja hankimine" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "EULA-ga nõustumine" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Pakettide allalaadimine" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Distributsiooni uuendamise teabe hankimine" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Kategooriate hankimine" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Vanade tehingute hankimine" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -950,21 +1066,21 @@ msgid "Simulating the install of files" msgstr "Faili paigaldamine nurjus" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Single file installer" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Üksikfaili paigaldaja" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Üksikpaketi eemaldaja" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -972,162 +1088,162 @@ msgid "Simulating the update" msgstr "1 tähtis uuendus" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Tundmatu rollitüüp" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Hangiti sõltuvused" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Hangiti uuenduste üksikasjad" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Hangiti üksikasjad" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Hangiti nõuded" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Hangiti uuendused" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Otsiti paketi üksikasju" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Otsiti faili" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Otsiti rühmi" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Otsiti paketi nime järgi" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Eemaldati paketid" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Paigaldati paketid" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Paigaldati kohalikud failid" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Värskendati paketipuhvrit" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Uuendati pakette" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Uuendati süsteemi" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Tühistati" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Taastatud" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Hangiti hoidlate nimekiri" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Lubati hoidla" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Määrati hoidla andmed" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Lahendati" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Hangiti failide nimekiri" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Hangiti tarned" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Paigaldati allkiri" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Hangiti pakettide nimekirjad" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Nõustuti EULA-ga" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Laaditi paketid alla" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Hangiti distributsiooni uuendused" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Hangiti kategooriad" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Hangiti vanad tehingud" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1135,288 +1251,288 @@ msgid "Simulated the install of files" msgstr "Faili paigaldamine nurjus" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Mime type installer" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "MIME tüübi paigaldaja" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Üksikpaketi eemaldaja" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to update system" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Süsteemi uuendamine nurjus" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Võrguühendus puudub" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Paketipuhver puudub" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Mälu napib" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Lõime loomine nurjus" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Sel taustaprogrammil puudub toetus" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Tekkis sisemine süsteemne viga" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Usaldussuhe puudub" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Pakett ei ole paigaldatud" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Paketti ei leitud" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Pakett on juba paigaldatud" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Paketi allalaadimine nurjus" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Rühma ei leitud" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Rühma nimekiri oli vigane" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Sõltuvuste lahendamine nurjus" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Otsingufilter oli vigane" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Paketi identifikaator oli vigane" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Tehingu viga" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Hoidla nime ei leitud" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Kaitstud süsteemse paketi eemaldamine nurjus" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Ülesanne tühistati" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Ülesanne tühistati jõuga" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Seadistustefaili lugemine nurjus" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Ülesannet ei saa tühistada" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Lähtekoodipakette ei saa paigaldada" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Litsentsiga nõustumine nurjus" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Pakettide kohalik failikonflikt" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Paketid ei ühildu" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Probleem ühendumisel tarkvaraallikaga" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Initsialiseerimine nurjus" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Initsialiseerimine nurjus" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Lukustamine nurjus" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Pole ühtegi paketti uuendada" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Hoidla seadistuse kirjutamine nurjus" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Kohalik paigaldamine nurjus" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Halb GPG allkiri" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Puuduv GPG allkiri" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Hoidla seadistus on vigane" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Vigane paketifail" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Paketi paigaldamine on blokeeritud" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Pakett on vigane" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Kõik paketid on juba paigaldatud" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Määratud faili ei leitud" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Rohkem peegleid ei ole" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Distributsiooni uuendamise andmed puuduvad" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Pakett ei ühildu süsteemiga" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Kettal pole enam ruumi" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 #, fuzzy msgid "Authorization failed" msgstr "Autentimine nurjus" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Paketti ei leitud" -#: libkpackagekit/KpkStrings.cpp:386 +#: libkpackagekit/KpkStrings.cpp:425 #, fuzzy -msgid "Cannot install from untrusted orign" +msgid "Cannot install from untrusted origin" msgstr " ebausaldusväärne" -#: libkpackagekit/KpkStrings.cpp:388 +#: libkpackagekit/KpkStrings.cpp:427 #, fuzzy -msgid "Cannot update from untrusted orign" +msgid "Cannot update from untrusted origin" msgstr " ebausaldusväärne" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got file list" msgid "Cannot get the file list" msgstr "Hangiti failide nimekiri" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "An additional package is required:" #| msgid_plural "Additional packages are required:" msgid "Cannot get package requires" msgstr "Vajalik on lisapakett:" -#: libkpackagekit/KpkStrings.cpp:394 +#: libkpackagekit/KpkStrings.cpp:433 #, fuzzy -msgid "Cannot disable orign" +msgid "Cannot disable origin" msgstr "keelatud" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Paketi allalaadimine nurjus" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Paigaldatav paketifail" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Paigaldatav paketifail" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Paigaldatav paketifail" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Paigaldatav paketifail" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Tundmatu viga" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1424,7 +1540,7 @@ "Võrguühendus puudub.\n" "Palun kontrolli võrguseadistusi ja proovi uuesti" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1432,7 +1548,7 @@ "Pakettde nimekiri tuleb ümber ehitada.\n" "Taustaprogramm peaks seda automaatselt tegema." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1441,13 +1557,13 @@ "Kasutaja antud ülesannete täitmise eest vastutavale teenusele ei jagu mälu.\n" "Palun sulge mõned rakendused või tee arvutile alglaadimine." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Lõime loomine kasutaja antud ülesannete täitmise eest vastutavale teenusele " "nurjus." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1455,7 +1571,7 @@ "See taustaprogramm ei toeta seda toimingut.\n" "Palun anna veast teada, sest seda ei tohiks tegelikult juhtuda." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1463,40 +1579,40 @@ "Tekkis ootamatu probleem.\n" "Palun anna veast teada ja lisa vea kirjeldus." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Usaldussuhte loomine tarkvaraallikaga nurjus.\n" "Palun kontrolli oma tarkvara allkirjaseadistusi." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Eemaldatav või uuendatav pakett ei ole paigaldatud." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Muudetavat paketti ei leitud sinu süsteemist ega ühestki tarkvaraallikast." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Paigaldatav pakett on juba paigaldatud." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1504,7 +1620,7 @@ "Paketi allalaadimine nurjus.\n" "Palun kontrolli oma võrguühendust." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1512,7 +1628,7 @@ "Rühmatüüpi ei leitud.\n" "Palun kontrolli rühmade nimekirja ja proovi uuesti." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1520,14 +1636,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Rühmade nimekirja laadimine nurjus.\n" "Abiks võib olla puhvri värskendamine, kuigi enamasti on sel juhul tegemist " "tarkvaraallika veaga." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1535,11 +1651,11 @@ "Paketi sõltuvust ei leitud.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Otsingufilter ei olnud korrektne." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1547,7 +1663,7 @@ "Süsteemsele deemonile saadetud paketi identifikaator ei olnud korrektne.\n" "Tavaliselt osutab see sisemisele veale, millest tuleks teada anda." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1555,27 +1671,27 @@ "Tehingu käigus tekkis viga.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Võrgu-tarkvaraallika nime ei leitud.\n" "Võib-olla tuleks see tarkvaraallikate seas lihtsalt lubada." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Kaitstud süsteemse paketi eemaldamine ei ole lubatud." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Ülesanne tühistati edukalt ja pakette ei muudetud." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1583,7 +1699,7 @@ "Ülesanne tühistati edukalt ja pakette ei muudetud.\n" "Taustaprogramm siiski ei lõpetanud tööd korrektselt." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1591,11 +1707,11 @@ "Loomuliku paketi seadistustefaili avamine nurjus.\n" "Palun kontrolli, kas sinu süsteemi seadistused on ikka korras." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Ülesande tühistamine ei ole praegu turvaline." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1603,7 +1719,7 @@ "Reeglina ei peaks lähtekoodipakette sel moel paigaldama.\n" "Kontrolli paigaldatava faili laiendit." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1611,44 +1727,44 @@ "Litsentsilepinguga ei nõustutud.\n" "Selle tarkvara kasutamine eeldab nõustumist litsentsiga." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Kaks paketti tarnivad sama faili.\n" "Tavaliselt juhtub see kahe erineva tarkvaraallika segiläbi kasutamisel." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Leidub mitu üksteisega ühildumatut paketti.\n" "Tavaliselt juhtub see kahe erineva tarkvaraallika segiläbi kasutamisel." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software " #| "source.\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Tarkvaraallikaga ühendumisel tekkis (võib-olla ajutine) probleem.\n" "Palun uuri täpsema teabe saamiseks üksikasjalikku veateadet." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1657,7 +1773,7 @@ "See võib juhtuda siis, kui samal ajal kasutatakse ka mõnda muud " "tarkvarapakettide tööriista." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1665,7 +1781,7 @@ "Taustaprogrammi isendi sulgemine nurjus.\n" "Seda viga võib tavaliselt eirata." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1673,15 +1789,15 @@ "Taustaprogrammile eksklusiivse lukustuse hankimine nurjus.\n" "Palun sulge kõik muud tarkvarapakettide tööriistad." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Ühtegi valitud paketti ei saa uuendada." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Hoidla seadistust ei saa muuta." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1689,11 +1805,11 @@ "Kohaliku faili paigaldamine nurjus.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Paketi allkirja kontrollimine nurjus." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1701,11 +1817,11 @@ "Paketi allkiri puudus ja pakett ei ole usaldusväärne.\n" "Paketti ei allkirjastatud loomisel GPG võtmega." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Hoidla seadistus oli vigane ja seda ei õnnestunud lugeda." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1713,7 +1829,7 @@ "Pakett, mida püüad paigaldada, ei ole korras.\n" "Võimalik, et mõni fail on vigane või ei ole see üldse õige tarkvarapakett." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1721,17 +1837,17 @@ "Paketi paigaldamist takistas sinu tarkvarapakettide käsitsemise süsteemi " "seadistus." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Allalaaditud pakett on vigane ja tuleb uuesti alla laadida." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Kõik paigaldamiseks valitud paketid on juba süsteemi paigaldatud." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1739,20 +1855,20 @@ "Määratud faili süsteemist ei leitud.\n" "Kontrolli, kas fail on ikka alles, mitte juba kustutatud." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Nõutavaid andmeid ei leitud üheski seadistatud tarkvaraallikas.\n" "Pole enam ühtegi allalaadimispeeglit proovida." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required upgrade data could not be found in any of the configured " @@ -1760,18 +1876,18 @@ #| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Nõutavaid uuendamisandmeid ei leitud üheski seadistatud tarkvaraallikas.\n" "Distributsiooni uuendamise nimekirja sestap pole." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Pakett, mida püüad paigaldada, ei ühildu süsteemiga." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1779,18 +1895,18 @@ "Seadmel napib ruumi.\n" "Toimingu sooritamiseks tekita kettale veidi vaba ruumi." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Tehingu lõpetamiseks on vajalik lisaandmekandja." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 #, fuzzy msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "Mina nurjus kuni kontroll iga paroolid või konto seadistused." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 #, fuzzy msgid "" "The specified update could not be found.\n" @@ -1798,39 +1914,39 @@ "server." msgstr "mitte paigaldatud või ei sees võrgus server." -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "Paketti ei leitud ühesti tarkvaraallikast" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "Paketti ei leitud ühesti tarkvaraallikast" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The file could not be found in any packages" #| msgid_plural "The files could not be found in any packages" msgid "The file list is not available for this package." msgstr "Faili ei leitud ühestki paketist" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 #, fuzzy msgid "The information about what requires this package could not be obtained." msgstr "info pakett mitte." -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Määratud faili ei leitud" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -1842,7 +1958,7 @@ "Paketi sõltuvust ei leitud.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1854,7 +1970,7 @@ "Kohaliku faili paigaldamine nurjus.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1866,7 +1982,7 @@ "Kohaliku faili paigaldamine nurjus.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1878,7 +1994,7 @@ "Kohaliku faili paigaldamine nurjus.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1890,7 +2006,7 @@ "Kohaliku faili paigaldamine nurjus.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1898,239 +2014,239 @@ "Tundmatu viga, palun anna sellest teada.\n" "Täpsemat teavet annab üksikasjalik aruanne." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Hõlbustus" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Tarvikud" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Haridus" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Mängud" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Graafika" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kontoritöö" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Muu" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Arendus" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimeedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Süsteem" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME töölaud" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE töölaud" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE töölaud" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Muud töölauad" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Avaldamine" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Serverid" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Fondid" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Haldustööriistad" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Pärandvara" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Lokaliseerimine" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualiseerimine" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Turve" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Toitehaldus" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Side" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Võrk" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Kaardid" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Tarkvaraallikad" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Teadus" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentatsioon" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektroonika" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Paketikogud" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Tootja" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Uusimad paketid" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Tundmatu rühm" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Lihtuuendus" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Tavauuendus" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Tähtis uuendus" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Turbeuuendus" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Veaparandusuuendus" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Täiustusuuendus" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blokeeritud uuendus" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Paigaldatud" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Saadaolevad" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Tundmatu uuendus" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 lihtuuendus" msgstr[1] "%1 lihtuuendust" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2138,70 +2254,70 @@ msgstr[0] "1 uuendus" msgstr[1] "%1 uuendust" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 tähtis uuendus" msgstr[1] "%1 tähtsat uuendust" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 turbeuuendus" msgstr[1] "%1 turbeuuendust" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 veaparandusuuendus" msgstr[1] "%1 veaparandusuuendust" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 täiustusuuendus" msgstr[1] "%1 täiustusuuendust" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blokeeritud uuendus" msgstr[1] "%1 blokeeritud uuendust" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 paigaldatud pakett" msgstr[1] "%1 paigaldatud paketti" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 saadaolev pakett" msgstr[1] "%1 saadaolevat paketti" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 tundmatu uuendus" msgstr[1] "%1 tundmatut uuendust" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 valitud lihtuuendus" msgstr[1] "%1 valitud lihtuuendust" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2209,56 +2325,56 @@ msgstr[0] "1 valitud uuendus" msgstr[1] "%1 valitud uuendust" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 valitud tähtis uuendus" msgstr[1] "%1 valitud tähtsat uuendust" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 valitud turbeuuendus" msgstr[1] "%1 valitud turbeuuendust" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 valitud veaparandusuuendus" msgstr[1] "%1 valitud veaparandusuuendust" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 valitud täiustusuuendus" msgstr[1] "%1 valitud täiustusuuendust" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 eemaldamiseks valitud paigaldatud pakett" msgstr[1] "%1 eemaldamiseks valitud paigaldatud paketti" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 paigaldamiseks valitud saadaolev pakett" msgstr[1] "%1 paigaldamiseks valitud saadaolevat paketti" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 lihtuuendus" msgstr[1] "%1 lihtuuendust, %2 valitud" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2266,321 +2382,493 @@ msgstr[0] "%1 uuendus" msgstr[1] "%1 uuendust, %2 valitud" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 tähtis uuendus" msgstr[1] "%1 tähtsat uuendust, %2 valitud" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 turbeuuendus" msgstr[1] "%1 turbeuuendust, %2 valitud" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 veaparandusuuendus" msgstr[1] "%1 veaparandusuuendust, %2 valitud" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 täiustusuuendus" msgstr[1] "%1 täiustusuuendust, %2 valitud" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 blokeeritud uuendus" msgstr[1] "%1 blokeeritud uuendust" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 paigaldatud pakett" msgstr[1] "%1 paigaldatud paketti, %2 eemaldamiseks valitud" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 saadaolev pakett" msgstr[1] "%1 saadaolevat paketti, %2 paigaldamiseks valitud" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 tundmatu uuendus" msgstr[1] "%1 tundmatut uuendust" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Taaskäivitamine pole vajalik" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "See rakendus tuleb taaskäivitada" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Vajalik on välja- ja uuesti sisselogimine" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Vajalik on taaskäivitamine" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy msgid "You will be required to log out and back in due to a security update." msgstr "Mina nõutav kuni väljas ja tagant sees" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "A restart will be required" msgid "A restart will be required due to a security update." msgstr "Vajalik on taaskäivitamine" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Taaskäivitamine ei ole vajalik" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Vajalik on taaskäivitamine" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Vajalik on välja- ja uuesti sisselogimine" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Vajalik on rakenduse taaskäivitamine" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You need to log out and log back in" msgid "You need to log out and log back in to remain secure." msgstr "Vajalik on välja- ja uuesti sisselogimine" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "A restart is required" msgid "A restart is required to remain secure." msgstr "Vajalik on taaskäivitamine" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabiilne" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Ebastabiilne" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testimine" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Palun sisesta CD '%1' ja klõpsa jätkamiseks." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Palun sisesta DVD '%1' ja klõpsa jätkamiseks." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Palun sisesta plaat '%1' ja klõpsa jätkamiseks." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Palun sisesta andmekandja '%1' ja klõpsa jätkamiseks." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Peegel võib olla katki" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Ühendusest keelduti" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parameeter oli väär" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Prioriteet oli väär" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Taustaprogrammi hoiatus" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Deemoni hoiatus" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Pakettide nimekirja puhver luuakse uuesti" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Paigaldati ebausaldusväärne pakett" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Olemas on uuem pakett" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Paketti ei leitud" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Muudeti seadistustefaile" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Pakett on juba paigaldatud" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 #, fuzzy msgid "Automatic cleanup is being ignored" msgstr "Automaatne on" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Paketi allalaadimine nurjus" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Sul puuduvad selleks toiminguks vajalikud õigused." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Kaitstud süsteemse paketi eemaldamine nurjus" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 #, fuzzy msgid "Cannot connect to this transaction id." msgstr "kuni." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 #, fuzzy msgid "This action is unknown." msgstr "toiming on tundmatu." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Paketi allkirja kontrollimine nurjus." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The priority was invalid" msgid "The query is not valid." msgstr "Prioriteet oli väär" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "Faili ei paigaldatud" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 #, fuzzy msgid "This function is not yet supported." msgstr "function on mitte." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Could not find package" msgid "Could not talk to packagekitd." msgstr "Paketti ei leitud" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Tundmatu viga" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Eira" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "Sul on %1" - -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, kde-format -msgid "
                            And another update" -msgid_plural "
                            And %1 more updates" -msgstr[0] "
                            ja veel üks uuendus" -msgstr[1] "
                            ja veel %1 uuendust" +msgid "" +"The following file is required:
                            • %2
                            Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                            • %2
                            Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "Vaata üle ja uuenda" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Programm soovib paigaldada faili" +msgstr[1] "Programm soovib paigaldada faile" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Mitte praegu" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 soovib paigaldada faili" +msgstr[1] "%1 soovib paigaldada faile" -#: SmartIcon/KpkUpdateIcon.cpp:191 -msgid "Do not ask again" -msgstr "Rohkem ei küsita" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Paigalda" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Faili otsimise tehingu käivitamine nurjus" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Pakett %1 tarnib juba selle faili" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Faili paigaldamine nurjus" +msgstr[1] "Failide paigaldamine nurjus" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Paigaldatakse järgmine pakett" +msgstr[1] "Paigaldatakse järgmised paketid" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Faili ei leitud ühestki paketist" +msgstr[1] "Faile ei leitud ühestki paketist" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Paketti ei leitud" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Sul on %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                            And another update" +msgid_plural "
                            And %1 more updates" +msgstr[0] "
                            ja veel üks uuendus" +msgstr[1] "
                            ja veel %1 uuendust" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Vaata üle ja uuenda" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" +msgstr "Rohkem ei küsita" + +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Uuendused paigaldatakse automaatselt." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Turbeuuendused paigaldatakse automaatselt." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Süsteemi uuendamine läks edukalt." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Tarkvara uuendamine nurjus." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Vajalik on järgmine fail:" +msgstr[1] "Vajalikud on järgmised failid:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Kas otsida seda kohe?" +msgstr[1] "Kas otsida neid kohe?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 soovib paigaldada faili" +msgstr[1] "%1 soovib paigaldada faile" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Alusta uuendamist nüüd" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Distributsiooni uuendamine on lõpetatud. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Lahendamistehingu käivitamine nurjus" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Hangiti vanad tehingud" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Tundmatu viga" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                            • %2
                            Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                            • %2
                            Do you want to search " +"for and install these packages now?" +msgstr[0] "Kas otsida ja paigaldada see pakett kohe?" +msgstr[1] "Kas otsida ja paigaldada need paketid kohe?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Programm soovib paigaldada paketi" +msgstr[1] "Programm soovib paigaldada pakette" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 soovib paigaldada paketi" +msgstr[1] "%1 soovib paigaldada pakette" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Paigalda" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Pakett on juba paigaldatud" +msgstr[1] "Pakett on juba paigaldatud" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Paketi paigaldamine nurjus" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Paketti ei leitud ühesti tarkvaraallikast" +msgstr[1] "Pakette ei leitud ühestki tarkvaraallikast" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "%1 ei leitud" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2605,198 +2893,304 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt ja muu kraam" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
                            %1
                            Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Seda tüüpi faili avamiseks on vajalik lisaprogramm:
                            %1
                            Kas otsida " +"selle faili avamisks vajalikku programmi kohe?" +msgstr[1] "" +"Seda tüüpi faili avamiseks on vajalik lisaprogramm:
                            %1
                            Kas otsida " +"selle faili avamisks vajalikku programmi kohe?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Programm soovib paigaldada faili" +msgstr[1] "Programm soovib paigaldada faile" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 soovib paigaldada faili" +msgstr[1] "%1 soovib paigaldada faile" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Otsi" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Tarnete otsing nurjus" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Seda tüüpi faili avav rakendus" +msgstr[1] "Seda tüüpi faili avavad rakendused" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Uusi rakendusi seda tüüpi faili käsitsemiseks ei leitud" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Tarkvara ei leitud" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Taustaprogramm ei toeta seda elementi või ei ole see fail." +msgstr[1] "Taustaprogramm ei toeta neid elemente või ei ole need failid." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Paigaldamine ei ole võimalik" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Paigalda" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Kas paigaldada see fail?" +msgstr[1] "Kas paigaldada need failid?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Kas paigaldada?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Faili ei paigaldatud" +msgstr[1] "Faile ei paigaldatud" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Fail paigaldati edukalt" +msgstr[1] "Failid paigaldati edukalt" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Tekkis viga." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                            • %2
                            Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                            • %2
                            Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Programm nõuab uut MIME tüüpi" +msgstr[1] "Programm nõuab uusi MIME tüüpe" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Programm nõuab uut MIME tüüpi" +msgstr[1] "Programm nõuab uusi MIME tüüpe" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Programm nõuab uut MIME tüüpi" +msgstr[1] "Programm nõuab uusi MIME tüüpe" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Kas otsida ja paigaldada see pakett kohe?" +msgstr[1] "Kas otsida ja paigaldada need paketid kohe?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Paketti ei leitud ühesti tarkvaraallikast" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Tarnete otsing nurjus" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Paketti ei leitud ühesti tarkvaraallikast" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Tehingud" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Värskenda pakettide nimekirja" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Näita teateid" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Peida see ikoon" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "Pakett: %1" msgstr[1] "Paketid: %1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Üks teade paketihaldurilt" msgstr[1] "%1 teadet paketihaldurilt" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Süsteemi uuendamine on lõpetatud" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Taaskäivita" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Mitte praegu" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Logi välja" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Paketihalduri teated" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Teade" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "KPackageKiti seadistused" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Igatunnine" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Igapäevane" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Iganädalane" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Igakuine" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Mitte kunagi" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Ainult turbeuuendused" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Kõik uuendused" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Mitte midagi" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Sul puuduvad selleks toiminguks vajalikud õigused." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Lähteandmete määramine nurjus" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Vajalik on järgmine fail:" -msgstr[1] "Vajalikud on järgmised failid:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Kas otsida seda kohe?" -msgstr[1] "Kas otsida neid kohe?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Programm soovib paigaldada faili" -msgstr[1] "Programm soovib paigaldada faile" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 soovib paigaldada faili" -msgstr[1] "%1 soovib paigaldada faile" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Paigalda" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Faili otsimise tehingu käivitamine nurjus" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Pakett %1 tarnib juba selle faili" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Paigaldatakse järgmine pakett" -msgstr[1] "Paigaldatakse järgmised paketid" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Faili ei leitud ühestki paketist" -msgstr[1] "Faile ei leitud ühestki paketist" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Paketti ei leitud" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Programm soovib eemaldada faili" msgstr[1] "Programm soovib eemaldada faile" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" msgstr[0] "%1 soovib eemaldada faili" msgstr[1] "%1 soovib eemaldada faile" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Järgmine fail eemaldatakse:" msgstr[1] "Järgmised failid eemaldatakse:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2805,28 +3199,176 @@ msgstr[0] "Kas otsida seda faili sisaldavaid pakette ja eemaldada see kohe?" msgstr[1] "Kas otsida neid faile sisaldavaid pakette ja eemaldada need kohe?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Otsi" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Järgmine pakett eemaldatakse" msgstr[1] "Järgmised paketid eemaldatakse" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "Faili ei leitud ühestki paigaldatud paketist" -msgstr[1] "Faile ei leitud ühestki paigaldatud paketist" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "Faili ei leitud ühestki paigaldatud paketist" +msgstr[1] "Faile ei leitud ühestki paigaldatud paketist" + +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
                            %1
                            Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                            • %1
                            • Do you want to search for a program to open this file type now?" +msgstr "" +"Seda tüüpi faili avamiseks on vajalik lisaprogramm:
                              %1
                              Kas otsida " +"selle faili avamisks vajalikku programmi kohe?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Programm nõuab uut MIME tüüpi" +msgstr[1] "Programm nõuab uusi MIME tüüpe" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 nõuab uut MIME tüüpi" +msgstr[1] "%1 nõuab uusi MIME tüüpe" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Otsi" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Uusi rakendusi seda tüüpi faili käsitsemiseks ei leitud" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Tarkvara ei leitud" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                              Do you want to install this catalog?

                              • %2
                              " +msgid_plural "" +"

                              Do you want to install these catalogs?

                              • %2
                              " +msgstr[0] "Kas paigaldada see fail?" +msgstr[1] "Kas paigaldada need failid?" + +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Paigalda nüüd" +msgstr[1] "Paigalda nüüd" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Paigalda" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Aktiivne taustaprogramm ei toeta pakettide paigaldamist." + +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "Toetatud" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Paigaldatav paketifail" +msgstr[1] "Paigaldatav paketifail" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Initsialiseerimine nurjus" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Lähtekoodipakette ei saa paigaldada" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Lahendamistehingu käivitamine nurjus" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "KPackageKiti seadistused" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Igatunnine" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Igapäevane" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Iganädalane" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Igakuine" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Mitte kunagi" + +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Ainult turbeuuendused" + +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "Kõik uuendused" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "%1 ei leitud" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Mitte midagi" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Lähteandmete määramine nurjus" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2864,138 +3406,6 @@ msgid "Package file to install" msgstr "Paigaldatav paketifail" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Taustaprogramm ei toeta seda elementi või ei ole see fail." -msgstr[1] "Taustaprogramm ei toeta neid elemente või ei ole need failid." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Paigaldamine ei ole võimalik" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Paigalda" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Kas paigaldada see fail?" -msgstr[1] "Kas paigaldada need failid?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Kas paigaldada?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Faili ei paigaldatud" -msgstr[1] "Faile ei paigaldatud" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Faili paigaldamine nurjus" -msgstr[1] "Failide paigaldamine nurjus" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Fail paigaldati edukalt" -msgstr[1] "Failid paigaldati edukalt" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Tekkis viga." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Vajalik on lisapakett:" -msgstr[1] "Vajalikud on lisapaketid:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Kas otsida ja paigaldada see pakett kohe?" -msgstr[1] "Kas otsida ja paigaldada need paketid kohe?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Programm soovib paigaldada paketi" -msgstr[1] "Programm soovib paigaldada pakette" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 soovib paigaldada paketi" -msgstr[1] "%1 soovib paigaldada pakette" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Paigalda" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Lahendamistehingu käivitamine nurjus" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Paketti ei leitud ühesti tarkvaraallikast" -msgstr[1] "Pakette ei leitud ühestki tarkvaraallikast" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                              %1
                              Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Seda tüüpi faili avamiseks on vajalik lisaprogramm:
                              %1
                              Kas otsida " -"selle faili avamisks vajalikku programmi kohe?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Programm nõuab uut MIME tüüpi" -msgstr[1] "Programm nõuab uusi MIME tüüpe" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 nõuab uut MIME tüüpi" -msgstr[1] "%1 nõuab uusi MIME tüüpe" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Otsi" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Tarnete otsing nurjus" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Seda tüüpi faili avav rakendus" -msgstr[1] "Seda tüüpi faili avavad rakendused" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Uusi rakendusi seda tüüpi faili käsitsemiseks ei leitud" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Tarkvara ei leitud" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -3006,19 +3416,19 @@ msgid "Your emails" msgstr "bald@smail.ee" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Vali kõik uuendused" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Värskenda" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3056,59 +3466,71 @@ msgid "Required by" msgstr "Nõutav paketile" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Tarkvara lisamine ja eemaldamine" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Otsi pakette" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtrid" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Kõik paketid" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - tehing" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Tehingud" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Toiming" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Pakettide allalaadimine" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "foo teek" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "Tekstipealdis" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 #, fuzzy #| msgid "Additional media is required to complete the transaction." msgid "Additional changes are required to complete the task" @@ -3116,344 +3538,405 @@ #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Toiming" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "Tekstipealdis" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Hoidla nimi:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Allkirja URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Allkirja kasutaja ID:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Allkirja ID:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Kas tunned seda kasutajat ja usaldad seda võtit?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Kas usaldad pakettide päritolu?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Palun loe enne jätkamist läbi oluline teave:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Seadistused" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKiti seadistused" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Uuenduste kontrolliminel:" +#, fuzzy +#| msgid "Show settings" +msgid "Update settings" +msgstr "Seadistuste näitamine" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automaatne paigaldamine:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Uuenduste kontrolliminel:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Nutikas süsteemisalve ikoon" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Automaatne paigaldamine:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Märguanne uuenduste olemasolul" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Märguanne pikkade ülesannete lõpetamisel" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Pakettide päritolu" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Silumis- ja arenduspakettide päritolu näitamine" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Taustaprogrammi teave" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Taustaprogrammi nimi:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "Taustaprogrammi nimi" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Taustaprogrammi autor:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "Otsi kirjel&duse järgi" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "Taustaprogrammi autor" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "Taustaprogrammi nimi" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Pakett on nähtav" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Uusim" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "GUI" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Vaba tarkvara" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Toetatud" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Meetodid" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "GetUpdates" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "UpdatePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "GetRepositoryList" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "RefreshCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "RepositoryEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "UpdateSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "RemovePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "RepositorySetEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "SearchName" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "GetDepends" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "WhatProvides" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "SearchDetails" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "GetRequires" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "GetPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "SearchGroup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "GetUpdateDetail" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "SearchFile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "GetDescription" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "GetFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resolve" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "InstallFIle" msgid "SimulateInstallFiles" msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "InstallPackage" msgid "SimulateInstallPackages" msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "RemovePackage" msgid "SimulateRemovePackages" msgstr "RemovePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "UpdatePackage" msgid "SimulateUpdatePackages" msgstr "UpdatePackage" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Hangiti vanad tehingud" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "Taustaprogramm ei toeta seda elementi või ei ole see fail." +#~ msgstr[1] "Taustaprogramm ei toeta neid elemente või ei ole need failid." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Vajalik on lisapakett:" +#~ msgstr[1] "Vajalikud on lisapaketid:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Kas otsida ja paigaldada see pakett kohe?" +#~ msgstr[1] "Kas otsida ja paigaldada need paketid kohe?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                              %1
                              Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Seda tüüpi faili avamiseks on vajalik lisaprogramm:
                              %1
                              Kas " +#~ "otsida selle faili avamisks vajalikku programmi kohe?" + +#~ msgid "All packages" +#~ msgstr "Kõik paketid" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Sul puuduvad selleks toiminguks vajalikud õigused." + +#~ msgid "Package Name" +#~ msgstr "Paketi nimi" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKiti seadistused" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Nutikas süsteemisalve ikoon" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Märguanne pikkade ülesannete lõpetamisel" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - tehing" + +#~ msgid "A library to do foo" +#~ msgstr "foo teek" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Sõltuvuste tõttu paigaldatakse ka järgmised paketid" @@ -3466,9 +3949,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Eemaldatakse/paigaldatakse ka järgmised paketid:" -#~ msgid "Failed to update package lists" -#~ msgstr "Paketinimekirja uuendamine nurjus" - #~ msgid "Failed to refresh package lists" #~ msgstr "Paketinimekirja värskendamine nurjus" diff -Nru kpackagekit-0.5.4/po/fr/kpackagekit.po kpackagekit-0.6.0/po/fr/kpackagekit.po --- kpackagekit-0.5.4/po/fr/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/fr/kpackagekit.po 2010-01-30 09:00:49.000000000 +0000 @@ -1,4 +1,4 @@ -# translation of kpackagekit.po to Français +# translation of kpackagekit.po to # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # @@ -10,10 +10,10 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-07 15:08+0200\n" -"Last-Translator: Joëlle Cornavin \n" -"Language-Team: Français \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-13 12:44+0100\n" +"Last-Translator: \n" +"Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -32,11 +32,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Détails" @@ -98,23 +98,23 @@ "Il est recommandé de laisser l'ordinateur allumé pendant que la réalisation " "de la mise à niveau." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "La mise à niveau de la distribution est achevée." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" "Le processus de mise à niveau de la distribution s'est terminé avec le code %" "1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "" "Le processus de mise à niveau de la distribution n'a pas réussi à démarrer." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -122,7 +122,7 @@ "Le processus de mise à niveau de la distribution s'est arrêté brutalement " "quelques instants après avoir réussi à démarrer." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" "Le processus de mise à niveau de la distribution a échoué avec une erreur " @@ -204,28 +204,24 @@ msgid "Time since last cache refresh: %1" msgstr "Temps écoulé depuis le dernier rafraîchissement du cache : %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nom du paquetage" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Page d'accueil" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licence" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Groupe" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Page d'accueil" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Taille" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Impossible de trouver des fichiers." @@ -237,239 +233,248 @@ msgid "KDE interface for managing software" msgstr "Interface KDE pour gérer des logiciels" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Chercher" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Tous les paquetages" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Recherche de texte" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Liste des modifications" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Groupe :" msgstr[1] "Groupes :" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Annuler" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Chercher par &nom" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Chercher par nom de f&ichier" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Chercher par &description" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Annuler les modifications" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Collections" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Seules les collections" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Exclure des collections" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installés" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Seuls les paquetages installés" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Seuls les paquetages disponibles" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Pas de filtre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Développement" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Seuls les paquetages de développement" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Seuls les fichiers destinés aux utilisateurs finaux" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Graphiques" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Seuls les paquetages graphiques" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Seul le texte" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Libres" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Seuls les logiciels libres" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Seuls les logiciels non libres" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architectures" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Seules les architectures natives" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Seules les architectures non natives" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Source" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Seul le code source" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Seul le code non source" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Cacher les sous-paquetages" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Afficher seulement un paquetage, non les sous-paquetages" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Seuls les paquetages les plus récents" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Afficher seulement le paquetage disponible le plus récent" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Voir en groupes" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Afficher les paquetages en groupes en fonction de l'état" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Le paquetage suivant va être installé :" msgstr[1] "Les paquetages suivants vont être installés :" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Installer maintenant" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Le paquetage suivant va être supprimé :" msgstr[1] "Les paquetages suivants vont être supprimés :" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Supprimer maintenant" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Le paquetage suivant va être supprimé et installé :" msgstr[1] "Les paquetages suivants vont être supprimés et installés :" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Appliquer maintenant" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Impossible de simuler une suppression de paquetage(s)" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "" "Le programme principal actuel ne prend pas en charge la suppression de " "paquetages." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Erreur de KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Impossible de simuler une installation de paquetage(s)" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "" "Le programme principal actuel ne prend pas en charge l'installation de " "paquetages." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Impossible de supprimer le paquetage" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Impossible d'installer le paquetage" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Impossible de supprimer le paquetage" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Cacher" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Permet de cacher la fenêtre tout en laissant s'exécuter la tâche de " "transaction." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -480,11 +485,11 @@ "provient d'une source fiable.\n" " Voulez-vous vraiment poursuivre l'installation ?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Installation de logiciels non signés" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Un changement de média est nécessaire" @@ -504,7 +509,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Accord de licence nécessaire" @@ -517,13 +522,13 @@ msgid "Version" msgstr "Version" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Annuler" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Terminé dans %1." @@ -573,807 +578,815 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "La signature du logiciel est nécessaire" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "État inconnu" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "En attente de démarrage du service" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "En attente d'autres tâches" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Exécution de la tâche" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" -msgstr "Recherche" +msgstr "Recherche en cours" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Obtention d'informations" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Suppression des paquetages" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Téléchargement des paquetages" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Installation des paquetages" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" -msgstr "Rafraîchissement de la liste des logiciels" +msgstr "Rafraîchissement de la liste de logiciels" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Mise à jour des paquetages" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Nettoyage des paquetages" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" -msgstr "Mise en obsolescence des paquetages" +msgstr "Mise en obsolescence de paquetages" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Résolution des dépendances" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Vérification des signatures" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Retour à l'état antérieur" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Test des changements" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Validation des changements" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Demande de données" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Terminé" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Annulation" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Téléchargement des informations du dépôt" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Téléchargement de la liste de paquetages" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Téléchargement des listes de fichiers" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" -msgstr "Téléchargement des listes de paquetages" +msgstr "Téléchargement des listes de modifications" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Téléchargement des groupes" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Téléchargement des informations de mise à jour" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Reconditionnement des fichiers" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Chargement du cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Analyse des applications installées" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Génération des listes de paquetages" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Attente d'un verrou du gestionnaire de paquetages" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Attente d'authentification" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Mise à jour de la liste des applications en cours de fonctionnement" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "Vérification des applications en cours d'utilisation" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Vérification des bibliothèques en cours d'utilisation" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Copie des fichiers" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Téléchargé(s)" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Mis à jour" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installé(s)" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Supprimé(s)" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Nettoyé(s)" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Obsolète(s)" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Type de rôle inconnu" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Obtention des dépendances" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Obtention des détails de mise à jour" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Obtention des détails" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Obtention des conditions préalables" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Obtention des mises à jour" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Recherche des détails" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Recherche d'un fichier" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Recherche des groupes" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Recherche par nom de paquetage" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Suppression" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installation" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Installation du fichier" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Rafraîchissement du cache des paquetages" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Mise à jour des paquetages" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Mise à jour du système" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Annulation" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Retour à l'état antérieur" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Obtention de la liste des dépôts" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Activation du dépôt" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Mise en place des données du dépôt" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Résolution" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Obtention de la liste des fichiers" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Obtention de ce qui est fourni" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Installation de la signature" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Obtention des listes de paquetages" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Acceptation du contrat de licence utilisateur final (EULA)" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Téléchargement des paquetages" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Obtention des informations de mise à niveau de la distribution" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Obtention des catégories" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Obtention d'anciennes transactions" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Simulation de l'installation des fichiers" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Simulation de l'installation" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Simulation de la suppression" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Simulation de la mise à jour" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Type de rôle inconnu" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Les dépendances ont été satisfaites" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Les détails de la mise à jour ont été obtenus" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Les détails ont été obtenus" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Les conditions préalables ont été satisfaites" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Les mises à jour ont été obtenues" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Les détails sur le paquetage ont été recherchés" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Le fichier a été recherché" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Les groupes ont été recherchés" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Le nom de paquetage a été recherché" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Les paquetages ont été supprimés" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Les paquetages ont été installés" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Les fichiers locaux ont été installés" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Le cache des paquetages a été rafraîchi" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Les paquetages ont été mis à jour" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Le système a été mis à jour" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Annulé" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Retourné à l'état antérieur" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "La liste des dépôts a été obtenue" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Le dépôt a été activé" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Les données du dépôt ont été définies" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Résolu" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "La liste des fichiers a été obtenue" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Ce qui est fourni a été obtenu" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "La signature a été installée" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Les listes de paquetages ont été obtenues" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Le contrat de licence utilisateur final a été accepté (EULA)" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Les paquetages ont été téléchargés" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Les mises à niveau de la distribution ont été obtenues" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Les catégories ont été obtenues" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Les anciennes transactions ont été obtenues" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Simulé l'installation des fichiers" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Simulé l'installation" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Simulé la suppression" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Simulé la mise à jour" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Aucune connexion réseau n'est disponible" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Aucun cache de paquetages n'est disponible" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Manque de mémoire" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Impossible de créer un fil d'exécution" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Non pris en charge par ce programme principal" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Une erreur interne du système est survenue" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Il manque une relation de confiance en matière de sécurité" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Le paquetage n'est pas installé" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Impossible de trouver le paquetage" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Le paquetage est déjà installé" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Impossible de télécharger le paquetage" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Impossible de trouver le groupe" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "La liste des groupes n'est pas valable" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Impossible de résoudre les dépendances" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Le filtre de recherche n'est pas valable" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "L'identifiant du paquetage n'est pas bien formé" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Erreur de transaction" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Impossible de trouver le nom du dépôt" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Impossible de supprimer un paquetage système protégé" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "La tâche a été annulée" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "La tâche a été annulée de force" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Impossible de lire le fichier de configuration" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Impossible d'annuler la tâche" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Impossible d'installer les paquetages source" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "La validation de l'accord de licence a échoué" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Conflit de fichiers locaux entre paquetages" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Les paquetages ne sont pas compatibles" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" -msgstr "L'autorisation a échoué" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "Problème lors de la connexion à une source de logiciels" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Impossible d'initialiser" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Impossible de finaliser" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Impossible de verrouiller" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Pas de paquetages à mettre à jour" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Impossible d'écrire la configuration du dépôt" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Impossible d'installer en local" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Signature GPG incorrecte" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Signature GPG manquante" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Configuration de dépôt non valable" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Fichier de paquetage non valable" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "L'installation du(des) paquetage(s) est bloquée" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Le paquetage est corrompu" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Tous les paquetages sont déjà installés" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Impossible de trouver le fichier indiqué" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Il n'y a plus aucun miroir disponible" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Aucune donnée de mise à niveau de la distribution n'est disponible" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Le paquetage est incompatible avec ce système" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Il ne reste plus d'espace sur le disque" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "L'autorisation a échoué" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Mise à jour introuvable" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "Impossible d'installer à partir d'une source non sécurisée" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "Impossible de mettre à jour à partir d'une source non sécurisée" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Impossible d'obtenir la liste des fichiers" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Impossible d'obtenir les conditions requises du paquetage" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "Impossible de désactiver la source" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Le téléchargement a échoué" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "La configuration du paquetage a échoué" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "La compilation du paquetage a échoué" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "L'installation du paquetage a échoué" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "La suppression des paquetages a échoué" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Erreur inconnue" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1381,7 +1394,7 @@ "Il n'y a aucune connexion réseau disponible.\n" "Veuillez vérifier vos paramètres de connexion et essayer à nouveau" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1390,7 +1403,7 @@ "Cette opération devra être effectuée par le programme principal " "automatiquement." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1400,13 +1413,13 @@ "court de mémoire.\n" "Veuillez fermer quelques programmes ou redémarrer votre ordinateur." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Impossible de créer un fil d'exécution pour prendre en charge la requête de " "l'utilisateur." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1414,7 +1427,7 @@ "L'action n'est pas prise en charge par ce programme principal.\n" "Veuillez signaler un bogue car cela n'aurait pas dû se produire." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1422,35 +1435,35 @@ "Un problème inattendu s'est produit.\n" "Veuillez signaler ce bogue ainsi que la description de l'erreur." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Impossible d'établir une relation de confiance en matière de sécurité avec " "la source de logiciels.\n" -"Veuillez vérifier les paramètres de signatures de vos logiciels." +"Veuillez vérifier vos paramètres de signature de logiciels." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Le paquetage en cours de suppression ou de mise à jour n'est pas encore " "installé." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Impossible de trouver le paquetage en cours de modification sur votre " "système ou dans une quelconque source de logiciels." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Le paquetage que vous essayez d'installer est déjà installé." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1458,7 +1471,7 @@ "Le téléchargement du paquetage a échoué.\n" "Veuillez vérifier votre connectivité réseau." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1466,17 +1479,17 @@ "Impossible de trouver le type de groupe.\n" "Veuillez vérifier votre liste de groupes et essayer à nouveau." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Impossible de charger la liste des groupes.\n" "Rafraîchir votre cache peut aider à résoudre ce problème, bien que ce soit " "normalement une erreur de la source de logiciels." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1484,11 +1497,11 @@ "Impossible de trouver une dépendance pour le paquetage.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Le filtre de recherche n'est pas correctement formé." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1497,7 +1510,7 @@ "serveur.\n" "Ce problème indique normalement un bogue interne et devrait être signalé." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1505,23 +1518,23 @@ "Une erreur s'est produite lors de l'exécution de la transaction.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Impossible de trouver le nom de la source de logiciels distante.\n" "Vous pourriez être amené à activer un élément dans « Sources de logiciels »." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "La suppression d'un paquetage système protégé n'est pas autorisée." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "La tâche a été annulée avec succès et aucun paquetage n'a été modifié." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1529,7 +1542,7 @@ "La tâche a été annulée avec succès et aucun paquetage n'a été modifié.\n" "Le programme principal ne s'est pas fermé correctement." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1537,11 +1550,11 @@ "Impossible d'ouvrir le fichier de configuration natif du paquetage.\n" "Veuillez vous assurer que la configuration de votre système est correcte." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "L'annulation de la tâche à ce stade présente des risques." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1549,7 +1562,7 @@ "Les paquetages source ne sont pas installés normalement de cette façon.\n" "Vérifiez l'extension du fichier que vous essayez d'installer." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1557,34 +1570,34 @@ "L'accord de licence n'a pas été accepté.\n" "Pour utiliser ce logiciel, vous devez accepter la licence." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Deux paquetages fournissent le même fichier.\n" "Ce problème est habituellement dû à un mélange de paquetages pour des " "sources de logiciels différentes." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Plusieurs paquetages existent, qui ne sont pas compatibles entre eux.\n" "Ce problème est habituellement dû à un mélange de paquetages provenant de " "sources de paquetages différentes." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Il y a eu un problème (probablement temporaire) lors de la connexion à une " "source de logiciels\n" "Veuillez vérifier le détail de l'erreur pour plus de précisions." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1593,7 +1606,7 @@ "Ce problème peut se produire si d'autres outils de conditionnement sont " "utilisés simultanément." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1601,7 +1614,7 @@ "Impossible de fermer l'instance du programme principal.\n" "Cette erreur peut normalement être ignorée." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1611,15 +1624,15 @@ "Veuillez fermer tout autre outil antérieur de conditionnement qui pourrait " "être ouvert." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Impossible de mettre à jour aucun des paquetages sélectionnés." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Impossible de modifier la configuration du dépôt." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1627,11 +1640,11 @@ "L'installation du fichier local a échoué.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Impossible de vérifier la signature du paquetage." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1640,12 +1653,12 @@ "confiance.\n" "Ce paquetage n'a pas été signé avec une clé GPG lors de sa création." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "" "La configuration du dépôt n'est pas valable et il est impossible de la lire." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1654,7 +1667,7 @@ "Il se peut que le fichier de paquetage soit corrompu ou que ce ne soit pas " "un paquetage correct." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1662,21 +1675,21 @@ "L'installation de ce paquetage a été empêchée par la configuration de votre " "système de paquetages." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "Le paquetage qui a été téléchargé est corrompu et doit être téléchargé à " "nouveau." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "L'ensemble des paquetages sélectionnés pour l'installation est déjà installé " "sur le système." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1684,32 +1697,32 @@ "Impossible de trouver le fichier spécifié sur le système.\n" "Vérifiez que le fichier existe toujours et n'a pas été supprimé." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -"Impossible de trouver les données requises dans l'une des sources de " -"logiciels configurées.\n" +"Impossible de trouver les données nécessaires dans l'une quelconque des " +"sources de logiciels configurées.\n" "Il n'y avait plus de miroirs de téléchargement susceptibles d'être essayés." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -"Impossible de trouver les données de mise à niveau requises dans l'une des " -"sources de logiciels configurées.\n" +"Impossible de trouver les données de mise à niveau nécessaires dans l'une " +"quelconque des sources de logiciels configurées.\n" "La liste des mises à niveau de la distribution sera indisponible." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "Le paquetage que vous essayez d'installer est incompatible avec ce système." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1717,12 +1730,12 @@ "Il ne reste pas assez d'espace sur le périphérique.\n" "Libérez de l'espace sur le disque système pour effectuer cette opération." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" "Un média supplémentaire est nécessaire pour mener à bien la transaction." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1730,7 +1743,7 @@ "Vous n'avez pas réussi à fournir une authentification correcte.\n" "Veuillez vérifier tout paramètre relatif aux mots de passe ou aux comptes." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1740,31 +1753,31 @@ "Il se peut qu'elle soit déjà installée ou qu'elle ne soit plus disponible " "sur le serveur distant." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "" "Impossible d'installer le paquetage à partir d'une source non sécurisée." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "" "Impossible de mettre à jour le paquetage à partir d'une source non sécurisée." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "La liste des fichiers n'est pas disponible pour ce paquetage." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" "Impossible d'obtenir les informations sur les conditions requises pour ce " "paquetage." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "Impossible de désactiver la source de logiciels spécifiée." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1773,7 +1786,7 @@ "manuellement.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1781,7 +1794,7 @@ "La configuration correcte de l'un des paquetages sélectionnés a échoué.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1789,7 +1802,7 @@ "La compilation correcte de l'un des paquetages sélectionnés a échoué.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1797,7 +1810,7 @@ "L'installation correcte de l'un des paquetages sélectionnés a échoué.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1805,7 +1818,7 @@ "La suppression correcte de l'un des paquetages sélectionnés a échoué.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1813,239 +1826,239 @@ "Erreur inconnue, veuillez signaler un bogue.\n" "D'autres informations sont disponibles dans le rapport détaillé." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Accessibilité" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Accessoires" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Éducation" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Jeux" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Graphisme" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Bureautique" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Autre" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Développement" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimédia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Système" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Bureau GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Bureau KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Bureau XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Autres bureaux" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Édition" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Serveurs" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Polices" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Outils d'administration" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Anciennes applications" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Localisation" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualisation" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Sécurité" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Gestion de l'alimentation" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Communication" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Réseau" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Cartographie" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Sources de logiciels" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Science" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentation" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Électronique" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Collections de paquetages" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Fournisseur" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Les paquetages les plus récents" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Groupe inconnu" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Mise à jour triviale" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Mise à jour normale" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Mise à jour importante" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Mise à jour de sécurité" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Mise à jour de corrections de bogues" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Mise à jour d'amélioration" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Mise à jour bloquée" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Installé(s)" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Disponible(s)" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Mise à jour inconnue" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 mise à jour triviale" msgstr[1] "%1 mises à jour triviales" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2053,70 +2066,70 @@ msgstr[0] "1 mise à jour" msgstr[1] "%1 mises à jour" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 mise à jour importante" msgstr[1] "%1 mises à jour importantes" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 mise à jour de sécurité" msgstr[1] "%1 mises à jour de sécurité" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 mise à jour de corrections de bogue" msgstr[1] "%1 mises à jour de corrections de bogue" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 mise à jour d'amélioration" msgstr[1] "%1 mises à jour d'amélioration" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 mise à jour bloquée" msgstr[1] "%1 mises à jour bloquées" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 paquetage installé" msgstr[1] "%1 paquetages installés" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 paquetage disponible" msgstr[1] "%1 paquetages disponibles" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 mise à jour inconnue" msgstr[1] "%1 mises à jour inconnues" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 mise à jour triviale sélectionnée" msgstr[1] "%1 mises à jour triviales sélectionnées" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2124,56 +2137,56 @@ msgstr[0] "1 mise à jour sélectionnée" msgstr[1] "%1 mises à jour sélectionnées" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 mise à jour importante sélectionnée" msgstr[1] "%1 mises à jour importantes sélectionnée" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 mise à jour de sécurité sélectionnée" msgstr[1] "%1 mises à jour de sécurité sélectionnée" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 mise à jour de corrections de bogue sélectionnée" msgstr[1] "%1 mises à jour de corrections de bogue sélectionnées" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 mise à jour d'amélioration sélectionnée" msgstr[1] "%1 mises à jour d'amélioration sélectionnées" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 paquetage installé sélectionné pour suppression" msgstr[1] "%1 paquetages installés sélectionnés pour suppression" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 paquetage disponible sélectionné pour installation" msgstr[1] "%1 paquetages disponibles sélectionnés pour installation" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 mise à jour triviale" msgstr[1] "%1 mises à jour triviales, %2 sélectionnées" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2181,552 +2194,937 @@ msgstr[0] "%1 mise à jour" msgstr[1] "%1 mises à jour, %2 sélectionnées" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 mise à jour importante" msgstr[1] "%1 mises à jour importantes, %2 sélectionnées" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 mise à jour de sécurité" msgstr[1] "%1 mises à jour de sécurité, %2 sélectionnées" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 mise à jour de correction de bogue" msgstr[1] "%1 mises à jour de corrections de bogue, %2 sélectionnées" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 mise à jour d'amélioration" msgstr[1] "%1 mises à jour d'amélioration, %2 sélectionnées" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 mise à jour bloquée" msgstr[1] "%1 mises à jour bloquées" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 paquetage installé" msgstr[1] "%1 paquetages installés, %2 sélectionnés pour suppression" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 paquetage disponible" msgstr[1] "%1 paquetages disponibles, %2 sélectionnés pour installation" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 mise à jour inconnue" msgstr[1] "%1 mises à jour inconnues" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Aucun redémarrage n'est nécessaire" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Vous devrez redémarrer cette application" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Vous devrez vous déconnecter et vous reconnecter" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Un redémarrage sera nécessaire" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "Vous devez vous déconnecter et vous reconnecter en raison d'une mise à jour " "de sécurité." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" "Un redémarrage sera nécessaire en raison d'une mise à jour de sécurité." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Aucun redémarrage n'est nécessaire" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Un redémarrage est nécessaire" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Vous devez vous déconnecter et vous reconnecter" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Vous devez redémarrer l'application" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "" "Vous devez vous déconnecter et vous reconnecter pour rester en sécurité." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "Un redémarrage est nécessaire pour rester en sécurité." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stable" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Instable" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Test" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Veuillez insérer le CD étiqueté « %1 » et cliquez sur Continuer." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Veuillez insérer le DVD étiqueté « %1 » et cliquez sur Continuer." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Veuillez insérer le disque « %1 » et cliquez sur Continuer." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Veuillez insérer le média étiqueté « %1 » et cliquez sur Continuer." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Il se peut qu'un miroir soit défectueux" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "La connexion a été refusée" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Le paramètre n'est pas valable" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "La priorité n'est pas valable" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Avertissement du programme principal" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Avertissement du démon" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Le cache de la liste de paquetages est en cours de reconstruction" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Un paquetage non sécurisé a été installé" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Un paquetage plus récent existe" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Impossible de trouver le paquetage" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Les fichiers de configuration ont été modifiés" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Le paquetage est déjà installé" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "Le nettoyage automatique est ignoré actuellement" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "Impossible de télécharger les sources du logiciel" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" "Vous ne disposez pas des privilèges nécessaires pour effectuer cette action." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "" "Impossible d'obtenir un identifiant de transaction à partir du packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Impossible de se connecter à cet identifiant de transaction." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Cette action est inconnue." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Impossible de démarrer le service packagekitd." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "La requête n'est pas valable." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "Le fichier n'est pas valable." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Cette fonction n'est pas encore prise en charge." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Impossible de dialoguer avec le packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Une erreur inconnue s'est produite." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorer" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                              • %2
                              Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                              • %2
                              Do you want to search " +"for these now?" +msgstr[0] "" +"Le fichier suivant est requis :
                              • %2
                              Voulez-vous le " +"rechercher maintenant ?" +msgstr[1] "" +"Les fichiers suivants sont requis :
                              • %2
                              Voulez-vous les " +"rechercher maintenant ?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Un programme veut installer un fichier" +msgstr[1] "Un programme veut installer des fichiers" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 veut installer un fichier" +msgstr[1] "%2 veut installer des fichiers" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installer" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Impossible de démarrer une transaction de recherche de fichier" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "n'est pas d'accord avec la recherche" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Le paquetage %1 fournit déjà ce fichier" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Impossible d'installer le fichier" +msgstr[1] "Impossible d'installer les fichiers" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Le paquetage suivant va être installé" +msgstr[1] "Les paquetages suivants vont être installés" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Impossible de trouver le fichier dans un quelconque paquetage" +msgstr[1] "Impossible de trouver les fichiers dans un quelconque paquetage" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Impossible de trouver le paquetage" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Vous avez %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                              And another update" msgid_plural "
                              And %1 more updates" msgstr[0] "
                              Et une autre mise à jour" msgstr[1] "Et %1 mises à jour de plus" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Réviser et mettre à jour" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Pas maintenant" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Ne plus demander" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Les mises à jours sont en cours d'installation automatique." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Les mises à jour de sécurité sont en cours d'installation automatique." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "La mise à jour du système a réussi." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "La mise à jour des logiciels a échoué." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Le paquetage suivant est requis :" +msgstr[1] "Les paquetages suivants sont requis :" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Voulez-vous effectuer cette recherche maintenant ?" +msgstr[1] "Voulez-vous effectuer ces recherches maintenant ?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 veut installer un fichier" +msgstr[1] "%1 veut installer des fichiers" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Démarrer la mise à niveau maintenant" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "La mise à niveau de la distribution est terminée. " -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 -msgid "KPackageKit" -msgstr "KPackageKit" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Impossible de démarrer une transaction de résolution" -#: SmartIcon/main.cpp:36 -msgid "KPackageKit Tray Icon" -msgstr "Icône de la boîte à miniatures de KPackageKit" +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "L'utilisateur a annulé la transaction" -#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Une erreur inconnue s'est produite" -#: SmartIcon/main.cpp:41 -msgid "Trever Fischer" -msgstr "Trever Fischer" +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                              • %2
                              Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                              • %2
                              Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Un paquetage supplémentaire est nécessaire :
                              • %2
                              Voulez-vous " +"rechercher et installer ce paquetage maintenant ?" +msgstr[1] "" +"Des paquetages supplémentaires sont nécessaires:
                              • %2
                              Voulez-" +"vous rechercher et installer ces paquetages maintenant ?" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "Adrien Bustany" -msgstr "Adrien Bustany" +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Un programme veut installer un paquetage" +msgstr[1] "Un programme veut installer des paquetages" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "libpackagekit-qt and other stuff" -msgstr "libpackagekit-qt et autres éléments" +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 veut installer un paquetage" +msgstr[1] "%2 veut installer des paquetages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installer" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Le paquetage %2 est déjà installé" +msgstr[1] "Les paquetages %2 sont déjà installés" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Impossible d'installer les paquetages" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "La transaction ne s'est pas terminée avec succès" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"Impossible de trouver le paquetage dans une quelconque source de logiciels" +msgstr[1] "" +"Impossible de trouver les paquetages dans une quelconque source de logiciels" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Impossible de trouver %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "Icône de la boîte à miniatures de KPackageKit" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "libpackagekit-qt et autres éléments" + +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Une police supplémentaire est nécessaire pour visualiser ce document " +"correctement. Voulez-vous rechercher un paquetage approprié maintenant ?" +msgstr[1] "" +"Des polices supplémentaires sont nécessaires pour visualiser ce document " +"correctement. Voulez-vous rechercher des paquetages appropriés maintenant ?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Un programme veut installer une police" +msgstr[1] "Un programme veut installer des polices" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 veut installer une police" +msgstr[1] "%2 veut installer des polices" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Rechercher" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Impossible de rechercher ce qui est fourni" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Application capable d'ouvrir ce type de fichier" +msgstr[1] "Applications capables d'ouvrir ce type de fichier" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "Impossible de trouver de nouvelles polices pour ce document" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Impossible de trouver une police" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Cet élément n'est pas pris en charge par votre programme principal ou ce " +"n'est pas un fichier." +msgstr[1] "" +"Ces éléments ne sont pas pris en charge par votre programme principal ou ce " +"ne sont pas des fichiers." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Impossible d'installer" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installer" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Voulez-vous installer ce fichier ?" +msgstr[1] "Voulez-vous installer ces fichiers ?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Installer ?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Le fichier n'a pas été installé" +msgstr[1] "Les fichiers n'ont pas été installés" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Le fichier a été installé avec succès" +msgstr[1] "Les fichiers ont été installés avec succès" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Désolé, une erreur est survenue." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                              • %2
                              Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                              • %2
                              Do you want to " +"search for these now?" +msgstr[0] "" +"Le module externe suivant est nécessaire :
                              • %2
                              Voulez-vous " +"le rechercher maintenant ?" +msgstr[1] "" +"Les modules externes suivants sont nécessaires :
                              • %2
                              Voulez-" +"vous le rechercher maintenant ?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Un programme nécessite un module externe supplémentaire pour décoder ce " +"fichier" +msgstr[1] "" +"Un programme nécessite des modules externes supplémentaires pour décoder ce " +"fichier" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Un programme nécessite un module externe supplémentaire pour encoder ce " +"fichier" +msgstr[1] "" +"Un programme nécessite des modules externes supplémentaires pour encoder ce " +"fichier" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +"Un programme nécessite un module externe supplémentaire pour cette opération" +msgstr[1] "" +"Un programme nécessite des modules externes supplémentaires pour cette " +"opération" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +"%2 nécessite un module externe supplémentaire pour décoder ce fichier" +msgstr[1] "" +"%2 nécessite des modules externes supplémentaires pour décoder ce fichier" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +"%2 nécessite un module externe supplémentaire pour encoder ce fichier" +msgstr[1] "" +"%2 nécessite des modules externes supplémentaires pour encoder ce fichier" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 nécessite un module externe supplémentaire pour cette opération" +msgstr[1] "" +"%2 nécessite des modules externes supplémentaires pour cette opération" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Voulez-vous installer ce paquetage maintenant ?" +msgstr[1] "Voulez-vous installer ces paquetages maintenant ?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" +"Impossible de trouver le module externe dans une quelconque source de " +"logiciels configurée" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Impossible de rechercher un module externe" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "" +"Impossible de trouver le nom du fichier dans une quelconque source de " +"logiciels" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" msgstr "Transactions" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Rafraîchir la liste des paquetages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Afficher les messages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Cacher cette icône" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Paquetage : %1" -msgstr[1] "Paquetages : %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paquetage : %2" +msgstr[1] "Paquetages : %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Un message provenant du gestionnaire de paquetages" -msgstr[1] "%1 messages provenant du gestionnaire de paquetages" +msgstr[1] "%1 messages provenant du gestionnaire de paquetages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "La mise à jour du système est terminée" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Redémarrer" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Pas maintenant" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Se déconnecter" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Messages du gestionnaire de paquetages" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Message" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Paramètres de KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Toutes les heures" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Tous les jours" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Un programme veut supprimer un fichier" +msgstr[1] "Un programme veut supprimer des fichiers" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Toutes les semaines" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, kde-format +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 veut supprimer un fichier" +msgstr[1] "%2 veut supprimer des fichiers" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Tous les mois" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "Le fichier suivant est sur le point d'être supprimé :" +msgstr[1] "Les paquetages suivants sont sur le point d'être supprimés :" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Jamais" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "" +"Voulez-vous rechercher des paquetages contenant ce fichier et le supprimer " +"maintenant ?" +msgstr[1] "" +"Voulez-vous rechercher des paquetages contenant ces fichiers et les " +"supprimer maintenant ?" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Les mises à jour de sécurité uniquement" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Rechercher" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Toutes les mises à jour" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Le paquetage suivant va être supprimé" +msgstr[1] "Les paquetages suivants vont être supprimés" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Aucune" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "" +"Impossible de trouver le fichier dans un quelconque paquetage installé" +msgstr[1] "" +"Impossible de trouver les fichiers dans un quelconque paquetage installé" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                              • %1
                              • Do you want to search for a program to open this file type now?" msgstr "" -"Vous ne disposez pas des privilèges nécessaires pour effectuer cette action." +"Un programme supplémentaire est nécessaire pour ouvrir ce type de fichier :" +"
                                • %1
                                Voulez-vous rechercher un programme pour ouvrir ce type " +"de fichier maintenant ?" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Impossible de définir les données d'origine" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Un programme nécessite un nouveau type MIME" +msgstr[1] "Un programme nécessite de nouveaux types MIME" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Le paquetage suivant est requis :" -msgstr[1] "Les paquetages suivants sont requis :" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 nécessite un nouveau type MIME" +msgstr[1] "%2 nécessite de nouveaux types MIME" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Voulez-vous effectuer cette recherche maintenant ?" -msgstr[1] "Voulez-vous effectuer ces recherches maintenant ?" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Rechercher" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Un programme veut installer un fichier" -msgstr[1] "Un programme veut installer des fichiers" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" +"Impossible de trouver de nouvelles applications pour gérer ce type de fichier" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Impossible de trouver le(s) logiciel(s)" + +#: SmartIcon/PkInstallCatalogs.cpp:51 #, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 veut installer un fichier" -msgstr[1] "%1 veut installer des fichiers" +msgid "

                                Do you want to install this catalog?

                                • %2
                                " +msgid_plural "" +"

                                Do you want to install these catalogs?

                                • %2
                                " +msgstr[0] "

                                Voulez-vous installer ce catalogue ?

                                • %2
                                " +msgstr[1] "

                                Voulez-vous installer ces catalogues ?

                                • %2
                                " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Installer le catalogue" +msgstr[1] "Installer les catalogues" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "Installer" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Impossible de démarrer une transaction de recherche de fichier" +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Votre programme principal ne prend en charge aucune des méthodes nécessaires " +"pour installer un catalogue" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Non pris en charge" -#: KPackageKit/KpkInstallProvideFile.cpp:101 +#: SmartIcon/PkInstallCatalogs.cpp:144 #, kde-format -msgid "The %1 package already provides this file" -msgstr "Le paquetage %1 fournit déjà ce fichier" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Impossible d'ouvrir le catalogue %2" +msgstr[1] "Impossible d'ouvrir les catalogues %2" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Le paquetage suivant va être installé" -msgstr[1] "Les paquetages suivants vont être installés" +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Ouverture impossible" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Impossible de trouver le fichier dans un quelconque paquetage" -msgstr[1] "Impossible de trouver les fichiers dans un quelconque paquetage" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "Impossible de trouver un paquetage à installer" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Impossible de trouver le paquetage" +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Impossible de démarrer une transaction de configuration" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "Un programme veut supprimer un fichier" -msgstr[1] "Un programme veut supprimer des fichiers" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Paramètres de KPackageKit" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 veut supprimer un fichier" -msgstr[1] "%1 veut supprimer des fichiers" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Toutes les heures" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "Le fichier suivant est sur le point d'être supprimé :" -msgstr[1] "Les paquetages suivants sont sur le point d'être supprimés :" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Tous les jours" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "" -"Voulez-vous rechercher des paquetages contenant ce fichier et le supprimer " -"maintenant ?" -msgstr[1] "" -"Voulez-vous rechercher des paquetages contenant ces fichiers et les " -"supprimer maintenant ?" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Toutes les semaines" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "Rechercher" +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Tous les mois" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "Le paquetage suivant va être supprimé" -msgstr[1] "Les paquetages suivants vont être supprimés" +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Jamais" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "" -"Impossible de trouver le fichier dans un quelconque paquetage installé" -msgstr[1] "" -"Impossible de trouver les fichiers dans un quelconque paquetage installé" +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Les mises à jour de sécurité uniquement" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "Impossible de trouver %1" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Toutes les mises à jour" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Aucune" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Impossible de définir les données d'origine" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2764,146 +3162,6 @@ msgid "Package file to install" msgstr "Fichier de paquetage à installer" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Cet élément n'est pas pris en charge par votre programme principal ou ce " -"n'est pas un fichier." -msgstr[1] "" -"Ces éléments ne sont pas pris en charge par votre programme principal ou ce " -"ne sont pas des fichiers." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Impossible d'installer" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Installer" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Voulez-vous installer ce fichier ?" -msgstr[1] "Voulez-vous installer ces fichiers ?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Installer ?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Le fichier n'a pas été installé" -msgstr[1] "Les fichiers n'ont pas été installés" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Impossible d'installer le fichier" -msgstr[1] "Impossible d'installer les fichiers" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Le fichier a été installé avec succès" -msgstr[1] "Les fichiers ont été installés avec succès" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Désolé, une erreur est survenue." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Un paquetage supplémentaire est nécessaire :" -msgstr[1] "Des paquetages supplémentaires sont nécessaires :" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Voulez-vous rechercher et installer ce paquetage maintenant ?" -msgstr[1] "Voulez-vous rechercher et installer ces paquetages maintenant ?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Un programme veut installer un paquetage" -msgstr[1] "Un programme veut installer des paquetages" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 veut installer un paquetage" -msgstr[1] "%1 veut installer des paquetages" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installer" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Impossible de démarrer une transaction de résolution" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -"Impossible de trouver le paquetage dans une quelconque source de logiciels" -msgstr[1] "" -"Impossible de trouver le paquetage dans une quelconque source de logiciels" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                %1
                                Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Un programme supplémentaire est nécessaire pour ouvrir ce type de fichier :" -"
                                %1
                                Voulez-vous rechercher un programme pour ouvrir ce type de " -"fichier maintenant ?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Un programme nécessite un nouveau type MIME" -msgstr[1] "Un programme nécessite de nouveaux types MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 nécessite un nouveau type MIME" -msgstr[1] "%1 nécessite de nouveaux types MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Rechercher" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Impossible de rechercher ce qui est fourni" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Application capable d'ouvrir ce type de fichier" -msgstr[1] "Applications capables d'ouvrir ce type de fichier" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" -"Impossible de trouver de nouvelles applications pour gérer ce type de fichier" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Impossible de trouver le(s) logiciel(s)" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2914,19 +3172,19 @@ msgid "Your emails" msgstr "jcornavin@laposte.net" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Sélectionner toutes les mises à jour" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Rafraîchir" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2964,390 +3222,392 @@ msgid "Required by" msgstr "Requis par" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Ajouter et supprimer des logiciels" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Chercher des paquetages" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtres" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Tous les paquetages" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transaction" +msgid "Transaction" +msgstr "Transaction" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "icône" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Téléchargement des paquetages" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Une bibliothèque pour réaliser « foo »" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" "Des modifications supplémentaires sont nécessaires pour mener à bien la tâche" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Actions" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nom du dépôt :" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL de la signature :" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identifiant de l'utilisateur de la signature :" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identifiant de la signature :" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Reconnaissez-vous l'utilisateur et faites-vous confiance à cette clé ?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Faites-vous confiance à l'origine des paquetages ?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" "Veuillez lire les informations importantes qui suivent avant de continuer :" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Configuration" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Paramètres de KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Vérifier les mises à jour :" +msgid "Update settings" +msgstr "Paramètres de mise à jour" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Installer automatiquement :" +msgid "Check for updates:" +msgstr "Vérifier les mises à jour :" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Icône de la boîte à miniatures" +msgid "Automatically install:" +msgstr "Installer automatiquement :" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Avertir lorsque des mises à jour sont disponibles" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Avertir lorsque de longues tâches doivent être effectuées" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "Origine des paquetages" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Afficher l'origine des paquetages de débogage et de développement" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "À propos du programme principal" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Nom du programme principal :" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "nom du programme principal ici" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Auteur du programme principal :" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Description du programme principal :" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "nom de l'auteur du programme principal ici" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "description du programme principal ici" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Le paquetage est visible" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Le plus récent" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Interface graphique" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Logiciel libre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Pris en charge" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Méthodes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Obtenir des mises à jour" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Mettre à jour le paquetage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Obtenir la liste des dépôts" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Rafraîchir le cache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Installer le paquetage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Activer un dépôt" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Mettre à jour le système" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Supprimer un paquetage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Activer le dépôt défini" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Chercher un nom" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Obtenir les dépendances" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "Obtenir ce qui est fourni" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Chercher des détails" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Obtenir les conditions préalables" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Obtenir les paquetages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Chercher un groupe" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Obtenir les détails de la mise à jour" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Chercher un fichier" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Obtenir une description" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Obtenir des fichiers" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Résoudre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Installer un fichier" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" -msgstr "SimulerInstallationFichiers" +msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" -msgstr "SimulerInstallationPaquetages" +msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" -msgstr "SimulerSuppressionPaquetages" +msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" -msgstr "SimulerMiseÀJourPaquetages" +msgstr "SimulateUpdatePackages" diff -Nru kpackagekit-0.5.4/po/ga/kpackagekit.po kpackagekit-0.6.0/po/ga/kpackagekit.po --- kpackagekit-0.5.4/po/ga/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/ga/kpackagekit.po 2010-01-30 09:00:56.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: playground-sysadmin/kpackagekit.po\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-01-20 10:11-0500\n" "Last-Translator: Kevin Scannell \n" "Language-Team: Irish \n" @@ -27,11 +27,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Mionsonraí" @@ -90,26 +90,26 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" @@ -189,28 +189,24 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Leathanach Baile" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Ceadúnas" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grúpa" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Leathanach Baile" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Méid" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "" @@ -222,24 +218,22 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Aimsigh" -#: AddRm/KpkAddRm.cpp:127 -#, fuzzy -#| msgid "All Packages" -msgid "All packages" -msgstr "Gach Pacáiste" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 #, fuzzy #| msgctxt "The transaction state" #| msgid "Testing changes" msgid "List of changes" msgstr "Athruithe á dtástáil" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 #, fuzzy #| msgctxt "Group of the package" #| msgid "Group" @@ -252,153 +246,153 @@ msgstr[3] "Grúpa" msgstr[4] "Grúpa" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cealaigh" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Bailiúcháin" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Suiteáilte" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Gan scagaire" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Forbairt" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafach" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Grafach amháin" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Téacs amháin" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Saor" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Foinse" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "" @@ -407,11 +401,11 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Suiteáil Anois" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "" @@ -420,11 +414,11 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "" @@ -433,53 +427,68 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Cuir i bhFeidhm Anois" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Failed to simulate package removal" +msgstr "Pacáistí á n-íosluchtú" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Earráid KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Failed to simulate package install" +msgstr "Pacáistí á n-íosluchtú" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 +msgid "Failed to install package" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 -msgid "Failed to install package" +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Folaigh" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "" @@ -501,7 +510,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "" @@ -516,13 +525,13 @@ msgid "Version" msgstr "Leagan nua" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cealaigh" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Críochnaithe i %1." @@ -595,371 +604,448 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Staid anaithnid" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Eolas á fháil" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Pacáistí á mbaint" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Pacáistí á suiteáil" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got package lists" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" -msgstr "" +msgstr "Fuarthas liostaí pacáistí" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Pacáistí á nuashonrú" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Pacáistí á nglanadh" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" -msgstr "" +msgstr "Pacáistí á suiteáil" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" -msgstr "" +msgstr "Pacáistí á mbaint" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The role of the transaction, in present tense" +#| msgid "Installing signature" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" -msgstr "" +msgstr "Síniú á shuiteáil" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" -msgstr "" +msgstr "Pacáistí á mbaint" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Athruithe á dtástáil" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" -msgstr "" +msgstr "Athruithe á dtástáil" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Críochnaithe" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Á Chealú" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Liosta pacáistí á íosluchtú" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Liostaí comhad á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" -msgstr "" +msgstr "Liosta pacáistí á íosluchtú" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Grúpaí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" -msgstr "" +msgstr "Liostaí comhad á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, loading databases" msgid "Loading cache" -msgstr "" +msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" -msgstr "" +msgstr "Fuarthas liostaí pacáistí" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Íosluchtaithe" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Nuashonraithe" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Suiteáilte" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Bainte" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Glanta" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Mionsonraí á bhfáil" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Nuashonruithe á bhfáil" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Á Shuiteáil" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Comhad á shuiteáil" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Pacáistí á nuashonrú" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Córas á nuashonrú" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Á Chealú" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Á Réiteach" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Síniú á shuiteáil" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 #, fuzzy #| msgctxt "The transaction state" #| msgid "Getting information" @@ -967,7 +1053,7 @@ msgid "Getting old transactions" msgstr "Eolas á fháil" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -975,19 +1061,19 @@ msgid "Simulating the install of files" msgstr "1 phacáiste suiteáilte" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Impossible to install" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Ní féidir a shuiteáil" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -995,162 +1081,162 @@ msgid "Simulating the update" msgstr "1 nuashonrú tábhachtach" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Fuarthas na mionsonraí" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Fuarthas nuashonruithe" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Suiteáladh comhaid logánta" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Nuashonraíodh pacáistí" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Nuashonraíodh an córas" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Cealaithe" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Fuarthas liosta comhad" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Suiteáladh síniú" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Fuarthas liostaí pacáistí" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Glacadh leis an EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Íosluchtaíodh pacáistí" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -1158,834 +1244,834 @@ msgid "Simulated the install of files" msgstr "1 phacáiste suiteáilte" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Impossible to install" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Ní féidir a shuiteáil" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Cuimhne ídithe" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 #, fuzzy #| msgid "Authentication failed" msgid "Authorization failed" msgstr "Theip ar fhíordheimhniú" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "Updated" msgid "Update not found" msgstr "Nuashonraithe" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got file list" msgid "Cannot get the file list" msgstr "Fuarthas liosta comhad" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgctxt "The action of the package, in past tense" #| msgid "Downloaded" msgid "The download failed" msgstr "Íosluchtaithe" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Comhad pacáiste le suiteáil" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Comhad pacáiste le suiteáil" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Comhad pacáiste le suiteáil" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Comhad pacáiste le suiteáil" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Earráid anaithnid" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" msgstr "" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." msgstr "" -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" "Please close some programs or restart your computer." msgstr "" -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." msgstr "" -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." msgstr "" -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." msgstr "" -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." msgstr "" -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." msgstr "" -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "" -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." msgstr "" -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." msgstr "" -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." msgstr "" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." msgstr "" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." msgstr "" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "" -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "" -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." msgstr "" -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "" -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." msgstr "" -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." msgstr "" -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgctxt "The transaction state" #| msgid "Downloading packages" msgid "The file list is not available for this package." msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Inrochtaineacht" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Oideachas" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Cluichí" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafaic" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Idirlíon" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Oifig" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Eile" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Forbairt" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Ilmheáin" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Córas" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Deasc GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Deasc KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Deasc XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Deasca eile" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Foilsiú" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Freastalaithe" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Clónna" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Logánú" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Slándáil" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Cumarsáid" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Líonra" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapaí" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Eolaíocht" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Doiciméadú" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Pacáistí is nuaí" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Grúpa anaithnid" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Nuashonrú síorghnách" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Gnáth-nuashonrú" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Nuashonrú tábhachtach" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Nuashonrú slándála" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Suiteáilte" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Ar Fáil" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Nuashonrú anaithnid" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" @@ -1995,7 +2081,7 @@ msgstr[3] "%1 nuashonrú síorghnách" msgstr[4] "%1 nuashonrú síorghnách" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2006,7 +2092,7 @@ msgstr[3] "%1 nuashonrú" msgstr[4] "%1 nuashonrú" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" @@ -2016,7 +2102,7 @@ msgstr[3] "%1 nuashonrú tábhachtach" msgstr[4] "%1 nuashonrú tábhachtach" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" @@ -2026,7 +2112,7 @@ msgstr[3] "%1 nuashonrú slándála" msgstr[4] "%1 nuashonrú slándála" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" @@ -2036,7 +2122,7 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" @@ -2046,7 +2132,7 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" @@ -2056,7 +2142,7 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" @@ -2066,7 +2152,7 @@ msgstr[3] "%1 bpacáiste suiteáilte" msgstr[4] "%1 pacáiste suiteáilte" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" @@ -2076,7 +2162,7 @@ msgstr[3] "%1 bpacáiste le fáil" msgstr[4] "%1 pacáiste le fáil" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" @@ -2086,7 +2172,7 @@ msgstr[3] "%1 nuashonrú anaithnid" msgstr[4] "%1 nuashonrú anaithnid" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2098,7 +2184,7 @@ msgstr[3] "%1 nuashonrú síorghnách" msgstr[4] "%1 nuashonrú síorghnách" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, fuzzy, kde-format #| msgctxt "Type of update, in the case it's just an update" #| msgid "1 update" @@ -2112,7 +2198,7 @@ msgstr[3] "%1 nuashonrú" msgstr[4] "%1 nuashonrú" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2124,7 +2210,7 @@ msgstr[3] "%1 nuashonrú tábhachtach" msgstr[4] "%1 nuashonrú tábhachtach" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2136,7 +2222,7 @@ msgstr[3] "%1 nuashonrú slándála" msgstr[4] "%1 nuashonrú slándála" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" @@ -2146,7 +2232,7 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" @@ -2156,7 +2242,7 @@ msgstr[3] "" msgstr[4] "" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2168,7 +2254,7 @@ msgstr[3] "%1 bpacáiste suiteáilte" msgstr[4] "%1 pacáiste suiteáilte" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2180,7 +2266,7 @@ msgstr[3] "%1 bpacáiste le fáil" msgstr[4] "%1 pacáiste le fáil" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2192,7 +2278,7 @@ msgstr[3] "%1 nuashonrú síorghnách" msgstr[4] "%1 nuashonrú síorghnách" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, fuzzy, kde-format #| msgctxt "Type of update, in the case it's just an update" #| msgid "1 update" @@ -2206,7 +2292,7 @@ msgstr[3] "%1 nuashonrú" msgstr[4] "%1 nuashonrú" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2218,7 +2304,7 @@ msgstr[3] "%1 nuashonrú tábhachtach" msgstr[4] "%1 nuashonrú tábhachtach" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2230,7 +2316,7 @@ msgstr[3] "%1 nuashonrú slándála" msgstr[4] "%1 nuashonrú slándála" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2242,7 +2328,7 @@ msgstr[3] "%1 nuashonrú slándála" msgstr[4] "%1 nuashonrú slándála" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, fuzzy, kde-format #| msgid "1 unknown update" #| msgid_plural "%1 unknown updates" @@ -2254,7 +2340,7 @@ msgstr[3] "%1 nuashonrú anaithnid" msgstr[4] "%1 nuashonrú anaithnid" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, fuzzy, kde-format #| msgctxt "Type of update, in the case it's just an update" #| msgid "1 update" @@ -2267,7 +2353,7 @@ msgstr[3] "%1 nuashonrú" msgstr[4] "%1 nuashonrú" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2279,7 +2365,7 @@ msgstr[3] "%1 bpacáiste suiteáilte" msgstr[4] "%1 pacáiste suiteáilte" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2291,7 +2377,7 @@ msgstr[3] "%1 bpacáiste le fáil" msgstr[4] "%1 pacáiste le fáil" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, fuzzy, kde-format #| msgid "1 unknown update" #| msgid_plural "%1 unknown updates" @@ -2303,792 +2389,1096 @@ msgstr[3] "%1 nuashonrú anaithnid" msgstr[4] "%1 nuashonrú anaithnid" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Tástáil" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got package lists" msgid "A newer package exists" msgstr "Fuarthas liostaí pacáistí" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgctxt "The transaction state" #| msgid "Downloading packages" msgid "Could not find package" msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "Package file to install" msgid "Package is already installed" msgstr "Comhad pacáiste le suiteáil" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgctxt "The action of the package, in past tense" #| msgid "Downloaded" msgid "Software source download failed" msgstr "Íosluchtaithe" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgctxt "The transaction state" #| msgid "Downloading packages" msgid "Could not get a transaction id from packagekitd." msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "" -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgctxt "The transaction state" #| msgid "Downloading packages" msgid "Could not talk to packagekitd." msgstr "Pacáistí á n-íosluchtú" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Earráid anaithnid" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 -#, kde-format -msgid "You have %1" -msgstr "" - -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "
                                And another update" -msgid_plural "
                                And %1 more updates" -msgstr[0] "" +msgid "" +"The following file is required:
                                • %2
                                Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                • %2
                                Do you want to search " +"for these now?" +msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "1 phacáiste suiteáilte" +msgstr[1] "%1 phacáiste suiteáilte" +msgstr[2] "%1 phacáiste suiteáilte" +msgstr[3] "%1 bpacáiste suiteáilte" +msgstr[4] "%1 pacáiste suiteáilte" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "1 phacáiste suiteáilte" +msgstr[1] "%1 phacáiste suiteáilte" +msgstr[2] "%1 phacáiste suiteáilte" +msgstr[3] "%1 bpacáiste suiteáilte" +msgstr[4] "%1 pacáiste suiteáilte" -#: SmartIcon/KpkUpdateIcon.cpp:191 -msgid "Do not ask again" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Suiteáil" -#: SmartIcon/KpkUpdateIcon.cpp:235 -msgid "Updates are being automatically installed." +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:262 -msgid "Security updates are being automatically installed." +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:289 -msgid "System update was successful." +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:298 -msgid "The software update failed." -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: SmartIcon/KpkDistroUpgrade.cpp:68 -msgid "Start upgrade now" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: SmartIcon/KpkDistroUpgrade.cpp:111 -msgid "Distribution upgrade finished. " -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Pacáistí á n-íosluchtú" +msgstr[1] "Pacáistí á n-íosluchtú" +msgstr[2] "Pacáistí á n-íosluchtú" +msgstr[3] "Pacáistí á n-íosluchtú" +msgstr[4] "Pacáistí á n-íosluchtú" -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 -msgid "KPackageKit" -msgstr "KPackageKit" +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Failed to find package" +msgstr "Pacáistí á n-íosluchtú" -#: SmartIcon/main.cpp:36 -msgid "KPackageKit Tray Icon" +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" msgstr "" -#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" - -#: SmartIcon/main.cpp:41 -msgid "Trever Fischer" -msgstr "Trever Fischer" +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                And another update" +msgid_plural "
                                And %1 more updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "Adrien Bustany" -msgstr "Adrien Bustany" +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "libpackagekit-qt and other stuff" +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 -#, fuzzy -#| msgctxt "The role of the transaction, in past tense" -#| msgid "Got package lists" -msgid "Refresh package list" -msgstr "Fuarthas liostaí pacáistí" +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 -#, fuzzy -#| msgid "Show Updates" -msgid "Show messages" -msgstr "Taispeáin Nuashonruithe" +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." +msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, fuzzy, kde-format -#| msgid "KPackageKit" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "KPackageKit" -msgstr[1] "KPackageKit" -msgstr[2] "KPackageKit" -msgstr[3] "KPackageKit" -msgstr[4] "KPackageKit" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 -msgid "The system update has completed" +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "1 phacáiste suiteáilte" +msgstr[1] "%1 phacáiste suiteáilte" +msgstr[2] "%1 phacáiste suiteáilte" +msgstr[3] "%1 bpacáiste suiteáilte" +msgstr[4] "%1 pacáiste suiteáilte" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" +msgstr "" + +#: SmartIcon/KpkDistroUpgrade.cpp:113 +msgid "Distribution upgrade finished. " msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 #, fuzzy -#| msgid "Restart" -msgctxt "Restart the computer" -msgid "Restart" -msgstr "Atosaigh" +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgid "Failed to start resolve transaction" +msgstr "Eolas á fháil" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgid "User canceled the transaction" +msgstr "Eolas á fháil" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" -msgstr "%1% - %2" +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Earráid anaithnid" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/PkInstallPackageNames.cpp:51 #, kde-format -msgid "%1" -msgstr "%1" +msgid "" +"An additional package is required:
                                • %2
                                Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                • %2
                                Do you want to search " +"for and install these packages now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "1 phacáiste suiteáilte" +msgstr[1] "%1 phacáiste suiteáilte" +msgstr[2] "%1 phacáiste suiteáilte" +msgstr[3] "%1 bpacáiste suiteáilte" +msgstr[4] "%1 pacáiste suiteáilte" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +#: SmartIcon/PkInstallPackageNames.cpp:71 #, fuzzy -#| msgid "KPackageKit" -msgid "KPackageKit settings" -msgstr "KPackageKit" +#| msgid "Install" +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Suiteáil" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Comhad pacáiste le suiteáil" +msgstr[1] "Comhad pacáiste le suiteáil" +msgstr[2] "Comhad pacáiste le suiteáil" +msgstr[3] "Comhad pacáiste le suiteáil" +msgstr[4] "Comhad pacáiste le suiteáil" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Failed to install packages" +msgstr "Pacáistí á n-íosluchtú" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" msgstr "" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, fuzzy, kde-format +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Could not find %1" +msgstr "Pacáistí á n-íosluchtú" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Slándáil Amháin" +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" msgstr "" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "" +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "" +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "" +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallProvideFile.cpp:57 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" msgstr[0] "1 phacáiste suiteáilte" msgstr[1] "%1 phacáiste suiteáilte" msgstr[2] "%1 phacáiste suiteáilte" msgstr[3] "%1 bpacáiste suiteáilte" msgstr[4] "%1 pacáiste suiteáilte" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" msgstr[0] "1 phacáiste suiteáilte" msgstr[1] "%1 phacáiste suiteáilte" msgstr[2] "%1 phacáiste suiteáilte" msgstr[3] "%1 bpacáiste suiteáilte" msgstr[4] "%1 pacáiste suiteáilte" -#: KPackageKit/KpkInstallProvideFile.cpp:68 +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" +#| msgid "Search packages" +msgctxt "Search for packages" +msgid "Search" +msgstr "Cuardaigh pacáistí" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Failed to find font" +msgstr "Pacáistí á n-íosluchtú" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Ní féidir a shuiteáil" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 msgid "Install" msgstr "Suiteáil" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                • %2
                                Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                • %2
                                Do you want to " +"search for these now?" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -#, fuzzy -#| msgctxt "The transaction state" -#| msgid "Downloading packages" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Pacáistí á n-íosluchtú" -msgstr[1] "Pacáistí á n-íosluchtú" -msgstr[2] "Pacáistí á n-íosluchtú" -msgstr[3] "Pacáistí á n-íosluchtú" -msgstr[4] "Pacáistí á n-íosluchtú" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -#, fuzzy -#| msgctxt "The transaction state" -#| msgid "Downloading packages" -msgid "Failed to find package" -msgstr "Pacáistí á n-íosluchtú" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "" - -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, fuzzy, kde-format +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "1 phacáiste suiteáilte" +msgstr[1] "%1 phacáiste suiteáilte" +msgstr[2] "%1 phacáiste suiteáilte" +msgstr[3] "%1 bpacáiste suiteáilte" +msgstr[4] "%1 pacáiste suiteáilte" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy #| msgctxt "The transaction state" #| msgid "Downloading packages" -msgid "Could not find %1" +msgid "The file name could not be found in any software source" msgstr "Pacáistí á n-íosluchtú" -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" msgstr "" -#: KPackageKit/main.cpp:46 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got package lists" +msgid "Refresh package list" +msgstr "Fuarthas liostaí pacáistí" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy #| msgid "Show Updates" -msgid "Show updates" +msgid "Show messages" msgstr "Taispeáin Nuashonruithe" -#: KPackageKit/main.cpp:47 -#, fuzzy -#| msgid "Show Settings" -msgid "Show settings" -msgstr "Taispeáin Socruithe" +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" -#: KPackageKit/main.cpp:48 -msgid "Show backend details" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "KPackageKit" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "KPackageKit" +msgstr[1] "KPackageKit" +msgstr[2] "KPackageKit" +msgstr[3] "KPackageKit" +msgstr[4] "KPackageKit" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" msgstr "" -#: KPackageKit/main.cpp:49 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 #, fuzzy -#| msgid "Impossible to install" -msgid "Mime type installer" -msgstr "Ní féidir a shuiteáil" +#| msgid "Restart" +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Atosaigh" -#: KPackageKit/main.cpp:50 -#, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "Comhad pacáiste le suiteáil" +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Impossible to install" -msgid "Single file installer" -msgstr "Ní féidir a shuiteáil" +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" -#: KPackageKit/main.cpp:52 -msgid "Single package remover" +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" msgstr "" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Comhad pacáiste le suiteáil" +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Ní féidir a shuiteáil" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Suiteáil" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "1 phacáiste suiteáilte" +msgstr[1] "%1 phacáiste suiteáilte" +msgstr[2] "%1 phacáiste suiteáilte" +msgstr[3] "%1 bpacáiste suiteáilte" +msgstr[4] "%1 pacáiste suiteáilte" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" msgstr[0] "" msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                                • %1
                                • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                  Do you want to install this catalog?

                                  • %2
                                  " +msgid_plural "" +"

                                  Do you want to install these catalogs?

                                  • %2
                                  " msgstr[0] "" msgstr[1] "" msgstr[2] "" msgstr[3] "" msgstr[4] "" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "1 phacáiste suiteáilte" -msgstr[1] "%1 phacáiste suiteáilte" -msgstr[2] "%1 phacáiste suiteáilte" -msgstr[3] "%1 bpacáiste suiteáilte" -msgstr[4] "%1 pacáiste suiteáilte" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Suiteáil Anois" +msgstr[1] "Suiteáil Anois" +msgstr[2] "Suiteáil Anois" +msgstr[3] "Suiteáil Anois" +msgstr[4] "Suiteáil Anois" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Suiteáil" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Comhad pacáiste le suiteáil" +msgstr[1] "Comhad pacáiste le suiteáil" +msgstr[2] "Comhad pacáiste le suiteáil" +msgstr[3] "Comhad pacáiste le suiteáil" +msgstr[4] "Comhad pacáiste le suiteáil" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgid "Failed to open" +msgstr "Pacáistí á n-íosluchtú" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Package file to install" +msgid "No package was found to be installed" +msgstr "Comhad pacáiste le suiteáil" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgid "Failed to start setup transaction" +msgstr "Eolas á fháil" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +#, fuzzy +#| msgid "KPackageKit" +msgid "KPackageKit settings" +msgstr "KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:68 +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "" + +#: Settings/KpkSettings.cpp:67 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Suiteáil" +#| msgid "Security Only" +msgid "Security only" +msgstr "Slándáil Amháin" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:68 #, fuzzy -#| msgctxt "The transaction state" -#| msgid "Getting information" -msgid "Failed to start resolve transaction" -msgstr "Eolas á fháil" +#| msgctxt "Type of update, in the case it's just an update" +#| msgid "1 update" +#| msgid_plural "%1 updates" +msgid "All updates" +msgstr "1 nuashonrú" -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                  %1
                                  Do " -"you want to search for a program to open this file type now?" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Show Updates" +msgid "Show updates" +msgstr "Taispeáin Nuashonruithe" -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "" +#: KPackageKit/main.cpp:47 +#, fuzzy +#| msgid "Show Settings" +msgid "Show settings" +msgstr "Taispeáin Socruithe" -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" +#: KPackageKit/main.cpp:48 +msgid "Show backend details" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" -msgstr[4] "" +#: KPackageKit/main.cpp:49 +#, fuzzy +#| msgid "Impossible to install" +msgid "Mime type installer" +msgstr "Ní féidir a shuiteáil" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "Comhad pacáiste le suiteáil" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Impossible to install" +msgid "Single file installer" +msgstr "Ní féidir a shuiteáil" + +#: KPackageKit/main.cpp:52 +msgid "Single package remover" msgstr "" +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Comhad pacáiste le suiteáil" + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -3099,7 +3489,7 @@ msgid "Your emails" msgstr "" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3108,13 +3498,13 @@ msgid "Select all updates" msgstr "Nuashonrú slándála" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Athnuaigh" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3152,187 +3542,186 @@ msgid "Required by" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Cuardaigh pacáistí" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Scagairí" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Gach Pacáiste" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" +msgid "Transaction" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Gníomh" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Gníomh" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Socruithe" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "Á Nuashonrú" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "" +#, fuzzy +#| msgid "Show Updates" +msgid "Check for updates:" +msgstr "Taispeáin Nuashonruithe" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" +msgid "Automatically install:" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "" +#: rc.cpp:128 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgid "Origin of packages" +msgstr "Liosta pacáistí á íosluchtú" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package file to install" msgid "backend name here" @@ -3340,258 +3729,285 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Description" +msgid "Backend description:" +msgstr "Cur Síos" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package file to install" +msgid "backend description here" +msgstr "Comhad pacáiste le suiteáil" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package file to install" msgid "Package is visible" msgstr "Comhad pacáiste le suiteáil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Déanann nuashonrú ar" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Updated packages" msgid "UpdatePackage" msgstr "Nuashonraíodh pacáistí" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Athnuaigh" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgctxt "The transaction state" #| msgid "Installing packages" msgid "InstallPackage" msgstr "Pacáistí á suiteáil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Updated system" msgid "UpdateSystem" msgstr "Nuashonraíodh an córas" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgctxt "The transaction state" #| msgid "Removing packages" msgid "RemovePackage" msgstr "Pacáistí á mbaint" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgid "Search packages" msgid "SearchName" msgstr "Cuardaigh pacáistí" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgid "Details" msgid "SearchDetails" msgstr "Mionsonraí" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Gach Pacáiste" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgctxt "Group of the package" #| msgid "Group" msgid "SearchGroup" msgstr "Grúpa" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got details" msgid "GetUpdateDetail" msgstr "Fuarthas na mionsonraí" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Cur Síos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Mionsonraí" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Resolving" msgid "Resolve" msgstr "Á Réiteach" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Suiteáilte" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Suiteáilte" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgctxt "The transaction state" #| msgid "Installing packages" msgid "SimulateInstallPackages" msgstr "Pacáistí á suiteáil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgctxt "The transaction state" #| msgid "Removing packages" msgid "SimulateRemovePackages" msgstr "Pacáistí á mbaint" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Updated packages" msgid "SimulateUpdatePackages" msgstr "Nuashonraíodh pacáistí" +#, fuzzy +#~| msgctxt "The transaction state" +#~| msgid "Getting information" +#~ msgid "User canceled the installation" +#~ msgstr "Eolas á fháil" + +#, fuzzy +#~| msgid "All Packages" +#~ msgid "All packages" +#~ msgstr "Gach Pacáiste" + #~ msgid "Confirm" #~ msgstr "Dearbhaigh" @@ -3625,9 +4041,6 @@ #~ msgid "(C) 2008 Daniel Nicoletti" #~ msgstr "© 2008 Daniel Nicoletti" -#~ msgid "Updating" -#~ msgstr "Á Nuashonrú" - #~ msgid "Update" #~ msgstr "Nuashonraigh" diff -Nru kpackagekit-0.5.4/po/gl/kpackagekit.po kpackagekit-0.6.0/po/gl/kpackagekit.po --- kpackagekit-0.5.4/po/gl/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/gl/kpackagekit.po 2010-01-30 09:01:01.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-03-13 21:06+0100\n" "Last-Translator: marce villarino \n" "Language-Team: Galician \n" @@ -30,11 +30,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detalles" @@ -99,20 +99,20 @@ "Recoméndase que manteña enchufado o ordenador mentres se anova o sistema " "operativo." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Completouse o paso á nova versión da distribución." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "O proceso de anovado da distribución saíu co código %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Fallou o comezo do paso á nova versión da distribución." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -120,7 +120,7 @@ "O proceso de anovar a distribución pechouse inesperadamente após comezar " "satisfactoriamente." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "O proceso de anovar a distribución fallou cun erro descoñecido." @@ -204,30 +204,26 @@ msgid "Time since last cache refresh: %1" msgstr "Tempo transcorrido desde o último refresco da caché: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nome do paquete" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Páxina do proxecto" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licenza" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 #, fuzzy #| msgid "Group" msgctxt "Group of the package" msgid "Group" msgstr "Grupo" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Páxina do proxecto" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Tamaño" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Non se achou ningún ficheiro." @@ -241,23 +237,21 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Procurar" -#: AddRm/KpkAddRm.cpp:127 -#, fuzzy -#| msgid "All Packages" -msgid "All packages" -msgstr "Todos os paquetes" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 #, fuzzy #| msgid "Testing changes" msgid "List of changes" msgstr "A probar as modificacións" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 #, fuzzy #| msgid "Group" msgctxt "Groups of packages" @@ -266,226 +260,239 @@ msgstr[0] "Grupo" msgstr[1] "Grupo" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cancelar" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Procurar polo &nome" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Procurar polo nome do &ficheiro" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Procurar pola &descrición" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Revisar as modificacións" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Coleccións" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Só coleccións" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Excluir as coleccións" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Instalado" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Só os instalados" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Só os dispoñíbeis" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Sen filtro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Desenvolvemento" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Só para desenvolvemento" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Só os ficheiros para usuarios finais" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Gráfico" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Só para entorno gráfico" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Só para modo texto" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 #, fuzzy #| msgid "Free" msgctxt "Filter for free packages" msgid "Free" msgstr "Libre" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Só software libre" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Só software privativo" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arquitecturas" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Só as arquitecturas nativas" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Só as arquitecturas non nativas" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 #, fuzzy #| msgid "Source" msgctxt "Filter for source packages" msgid "Source" msgstr "Fontes" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Só código fonte" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Só os que non sexan código fonte" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Agochar os subpaquetes" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Só mostra un paquete, non os subpaquetes" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Só os paquetes máis novos" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Mostrar só o paquete máis recente dispoñíbel" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Ver por grupos" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Mostra os paquetes por grupos segundo o estado" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Instalarase este paquete:" msgstr[1] "Instalaranse estes paquetes:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instalar agora" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Eliminarase este paquete:" msgstr[1] "Eliminaranse estes paquetes:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Eliminar agora" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Eliminarase e instalarase este paquete:" msgstr[1] "Eliminaranse e instalaranse estes paquetes:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Aplicar agora" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Non foi posíbel actualizar as listas de paquetes" + +#: libkpackagekit/KpkReviewChanges.cpp:187 #, fuzzy #| msgid "Sorry, your backend does not support removing packages" msgid "The current backend does not support removing packages." msgstr "A infraestrutura que está a empregar non permite eliminar paquetes" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 #, fuzzy #| msgid "KPackageKit" msgid "KPackageKit Error" msgstr "KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Non foi posíbel actualizar as listas de paquetes" + +#: libkpackagekit/KpkReviewChanges.cpp:224 #, fuzzy #| msgid "Sorry, your backend does not support installing packages" msgid "Current backend does not support installing packages." msgstr "A infraestrutura que está a empregar non permite instalar paquetes" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Non foi posíbel eliminar o paquete" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Fallou a instalación do paquete" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Non foi posíbel eliminar o paquete" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Acochar" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 #, fuzzy #| msgid "Allows you to hide the window but keeps running transaction task" msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Permítelle acochar a fiestra e á vez manter a executar as transaccións" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                                  Installing unsigned packages can compromise your system, as it is " @@ -500,11 +507,11 @@ "é posíbel verificar se o software veu dunha fonte de confianza. Desexa " "realmente continuar coa instalación?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "A instalar software non asinado" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 #, fuzzy #| msgid "A system restart is required" msgid "A media change is required" @@ -528,7 +535,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Requírese que se acepte a licenza" @@ -543,13 +550,13 @@ msgid "Version" msgstr "Nova versión" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cancelar" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Rematou en %1." @@ -606,514 +613,524 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Requírese a sinatura do software" -#: libkpackagekit/KpkStrings.cpp:31 +#: libkpackagekit/KpkStrings.cpp:32 #, fuzzy #| msgid "Unknown state" -msgctxt "The transaction state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Estado descoñecido" -#: libkpackagekit/KpkStrings.cpp:33 +#: libkpackagekit/KpkStrings.cpp:35 #, fuzzy #| msgid "Waiting for service to start" -msgctxt "The transaction state" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "A agardar o arranque do servizo" -#: libkpackagekit/KpkStrings.cpp:35 +#: libkpackagekit/KpkStrings.cpp:38 #, fuzzy #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "A agardar por outras tarefas" -#: libkpackagekit/KpkStrings.cpp:37 +#: libkpackagekit/KpkStrings.cpp:41 #, fuzzy #| msgid "Running task" -msgctxt "The transaction state" +msgctxt "transaction state, just started" msgid "Running task" msgstr "A executar a tarefa" -#: libkpackagekit/KpkStrings.cpp:39 +#: libkpackagekit/KpkStrings.cpp:44 #, fuzzy #| msgid "Querying" -msgctxt "The transaction state" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "A pescudar" -#: libkpackagekit/KpkStrings.cpp:41 +#: libkpackagekit/KpkStrings.cpp:47 #, fuzzy #| msgid "Getting information" -msgctxt "The transaction state" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "A obter información" -#: libkpackagekit/KpkStrings.cpp:43 +#: libkpackagekit/KpkStrings.cpp:50 #, fuzzy #| msgid "Removed packages" -msgctxt "The transaction state" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Paquetes eliminados" -#: libkpackagekit/KpkStrings.cpp:45 +#: libkpackagekit/KpkStrings.cpp:53 #, fuzzy #| msgid "Downloading packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "A obter os paquetes" -#: libkpackagekit/KpkStrings.cpp:47 +#: libkpackagekit/KpkStrings.cpp:56 #, fuzzy #| msgid "Installed packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Paquetes instalados" -#: libkpackagekit/KpkStrings.cpp:49 +#: libkpackagekit/KpkStrings.cpp:59 #, fuzzy #| msgid "Refreshing software list" -msgctxt "The transaction state" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "A anovar a lista de software" -#: libkpackagekit/KpkStrings.cpp:51 +#: libkpackagekit/KpkStrings.cpp:62 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "A actualizar os paquetes" -#: libkpackagekit/KpkStrings.cpp:53 +#: libkpackagekit/KpkStrings.cpp:65 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "A actualizar os paquetes" -#: libkpackagekit/KpkStrings.cpp:55 +#: libkpackagekit/KpkStrings.cpp:68 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "A actualizar os paquetes" -#: libkpackagekit/KpkStrings.cpp:57 +#: libkpackagekit/KpkStrings.cpp:71 #, fuzzy #| msgid "Resolving dependencies" -msgctxt "The transaction state" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "A resolver as dependencias" -#: libkpackagekit/KpkStrings.cpp:59 +#: libkpackagekit/KpkStrings.cpp:74 #, fuzzy #| msgid "Checking signatures" -msgctxt "The transaction state" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "A comprobar as sinaturas" -#: libkpackagekit/KpkStrings.cpp:61 +#: libkpackagekit/KpkStrings.cpp:77 #, fuzzy #| msgid "Rolling back" -msgctxt "The transaction state" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "A voltar atrás" -#: libkpackagekit/KpkStrings.cpp:63 +#: libkpackagekit/KpkStrings.cpp:80 #, fuzzy #| msgid "Testing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "A probar as modificacións" -#: libkpackagekit/KpkStrings.cpp:65 +#: libkpackagekit/KpkStrings.cpp:83 #, fuzzy #| msgid "Committing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "A entregar as modificacións" -#: libkpackagekit/KpkStrings.cpp:67 +#: libkpackagekit/KpkStrings.cpp:86 #, fuzzy #| msgid "Requesting data" -msgctxt "The transaction state" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "A pedir os datos" -#: libkpackagekit/KpkStrings.cpp:69 +#: libkpackagekit/KpkStrings.cpp:89 #, fuzzy #| msgid "Finished" -msgctxt "The transaction state" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Rematado" -#: libkpackagekit/KpkStrings.cpp:71 +#: libkpackagekit/KpkStrings.cpp:92 #, fuzzy #| msgid "Cancelling" -msgctxt "The transaction state" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "A cancelar" -#: libkpackagekit/KpkStrings.cpp:73 +#: libkpackagekit/KpkStrings.cpp:95 #, fuzzy #| msgid "Downloading repository information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "A obter a información do repositorio" -#: libkpackagekit/KpkStrings.cpp:75 +#: libkpackagekit/KpkStrings.cpp:98 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "A obter a lista de paquetes" -#: libkpackagekit/KpkStrings.cpp:77 +#: libkpackagekit/KpkStrings.cpp:101 #, fuzzy #| msgid "Downloading file lists" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "A obter as listas de ficheiros" -#: libkpackagekit/KpkStrings.cpp:79 +#: libkpackagekit/KpkStrings.cpp:104 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "A obter a lista de paquetes" -#: libkpackagekit/KpkStrings.cpp:81 +#: libkpackagekit/KpkStrings.cpp:107 #, fuzzy #| msgid "Downloading groups" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "A obter os grupos" -#: libkpackagekit/KpkStrings.cpp:83 +#: libkpackagekit/KpkStrings.cpp:110 #, fuzzy #| msgid "Downloading update information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "A obter a información da actualización" -#: libkpackagekit/KpkStrings.cpp:85 +#: libkpackagekit/KpkStrings.cpp:113 #, fuzzy #| msgid "Repackaging files" -msgctxt "The transaction state" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "A empaquetar de novo os ficheiros" -#: libkpackagekit/KpkStrings.cpp:87 +#: libkpackagekit/KpkStrings.cpp:116 #, fuzzy #| msgid "Loading cache" -msgctxt "The transaction state" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "A cargar a caché" -#: libkpackagekit/KpkStrings.cpp:89 +#: libkpackagekit/KpkStrings.cpp:119 #, fuzzy #| msgid "Scanning installed applications" -msgctxt "The transaction state" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "A examinar os programas instalados" -#: libkpackagekit/KpkStrings.cpp:91 +#: libkpackagekit/KpkStrings.cpp:122 #, fuzzy #| msgid "Generating package lists" -msgctxt "The transaction state" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "A xerar as listas de paquetes" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "A agardar por outras tarefas" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "A empaquetar de novo os ficheiros" + +#: libkpackagekit/KpkStrings.cpp:150 #, fuzzy #| msgid "Downloaded" msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Obtido" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 #, fuzzy #| msgid "Updated" msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Actualizado" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 #, fuzzy #| msgid "Installed" msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 #, fuzzy #| msgid "Removed" msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Eliminado" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 #, fuzzy #| msgid "Cleaned Up" msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Limpado" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 #, fuzzy #| msgid "Obsoleted" msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Obsoleto" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Grupo descoñecido" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 #, fuzzy #| msgid "Getting dependencies" msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "A obter as dependencias" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 #, fuzzy #| msgid "Getting update detail" msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "A obter os detalles da actualización" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 #, fuzzy #| msgid "Getting details" msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "A obter os detalles" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 #, fuzzy #| msgid "Getting requires" msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "A obter os requirimentos" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "A obter as actualizacións" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 #, fuzzy #| msgid "Searching details" msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "A procurar os detalles" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 #, fuzzy #| msgid "Searching for file" msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "A procurar o ficheiro" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "A procurar os grupos" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "A procurar polo nome do paquete" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 #, fuzzy #| msgid "Removing" msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "A eliminar" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 #, fuzzy #| msgid "Installing" msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "A instalar" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 #, fuzzy #| msgid "Installing file" msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "A instalar o ficheiro" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "A refrescar a caché de paquetes" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 #, fuzzy #| msgid "Updating packages" msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "A actualizar os paquetes" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 #, fuzzy #| msgid "Updating system" msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "A actualizar o sistema" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 #, fuzzy #| msgid "Canceling" msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "A cancelar" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 #, fuzzy #| msgid "Rolling back" msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "A voltar atrás" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 #, fuzzy #| msgid "Getting list of repositories" msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "A obter a lista de repositorios" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "A habilitar o repositorio" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "A axustar os datos do repositorio" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "A resolver" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 #, fuzzy #| msgid "Got file list" msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Obtívose a lista de ficheiros" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 #, fuzzy #| msgid "Getting what provides" msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "A obter o que fornece" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "A instalar a sinatura" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "A obter as listas de paquetes" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "A aceptar o EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "A obter os paquetes" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "A obter a información de actualización da distribución" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "A obter as actualizacións" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 #, fuzzy #| msgid "Getting information" msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "A obter información" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1121,21 +1138,21 @@ msgid "Simulating the install of files" msgstr "Non foi posíbel instalar o ficheiro" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Mime Type Installer" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Instalador de tipos mime" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "A procurar polo nome do paquete" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -1143,224 +1160,224 @@ msgid "Simulating the update" msgstr "1 actualización importante" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Grupo descoñecido" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 #, fuzzy #| msgid "Got dependencies" msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Obtivéronse as dependencias" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 #, fuzzy #| msgid "Got update detail" msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Obtivo os detalles da actualización" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 #, fuzzy #| msgid "Got details" msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Obtivéronse os detalles" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 #, fuzzy #| msgid "Got requires" msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Obtivéronse os requirimentos" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 #, fuzzy #| msgid "Got updates" msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Obtivéronse actualizacións" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 #, fuzzy #| msgid "Searched for package details" msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Procuráronse detalles do paquete" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 #, fuzzy #| msgid "Searched for file" msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Procurouse un ficheiro" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 #, fuzzy #| msgid "Searched groups" msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Procurouse por grupos" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 #, fuzzy #| msgid "Searched for package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Procurouse polo nome do paquete" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 #, fuzzy #| msgid "Removed packages" msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Paquetes eliminados" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 #, fuzzy #| msgid "Installed packages" msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Paquetes instalados" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 #, fuzzy #| msgid "Installed local files" msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Ficheiros locais instalados" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 #, fuzzy #| msgid "Refreshed package cache" msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Caché de paquetes refrescada" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 #, fuzzy #| msgid "Updated packages" msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Paquetes actualizados" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 #, fuzzy #| msgid "Updated system" msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Anovouse o sistema" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 #, fuzzy #| msgid "Canceled" msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Cancelado" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 #, fuzzy #| msgid "Rolled back" msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Voltado cara tras" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 #, fuzzy #| msgid "Got list of repositories" msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Obtívose a lista de repositorios" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 #, fuzzy #| msgid "Enabled repository" msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Repositorio habilitado" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 #, fuzzy #| msgid "Set repository data" msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Configurar os datos do repositorio" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 #, fuzzy #| msgid "Resolved" msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Resolto" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 #, fuzzy #| msgid "Got file list" msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Obtívose a lista de ficheiros" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 #, fuzzy #| msgid "Got what provides" msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Obtívose o que fornece" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 #, fuzzy #| msgid "Installed signature" msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Sinatura instalada" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 #, fuzzy #| msgid "Got package lists" msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Obtivéronse as listas de paquetes" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 #, fuzzy #| msgid "Accepted EULA" msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "EULA aceptada" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 #, fuzzy #| msgid "Downloaded packages" msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Paquetes obtidos" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 #, fuzzy #| msgid "Got distribution upgrades" msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Obtivéronse as novas versións da distribución" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 #, fuzzy #| msgid "Got what provides" msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Obtívose o que fornece" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 #, fuzzy #| msgid "Transactions" msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Transaccións" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1368,288 +1385,300 @@ msgid "Simulated the install of files" msgstr "Non foi posíbel instalar o ficheiro" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Mime Type Installer" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Instalador de tipos mime" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "A procurar polo nome do paquete" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to update system" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Non foi posíbel actualizar o sistema" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Non se dispón de conexión á rede" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Non se dispón de caché de paquetes" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Esgotouse a memoria" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Non foi posíbel criar un fío" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Non está permitido por esta infraestrutura" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Aconteceu un erro interno do sistema" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Non está presente unha relación na que se poda confiar na seguridade" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "O paquete non está instalado" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Non se achou o paquete" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "O paquete xa está instalado" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Fallou a obtención do paquete" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Non se achou o grupo" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "A lista de grupo non era válida" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Fallou a resolución de dependencias" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "O filtro de procuras non era válido" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "O identificador do paquete non estaba ben formado" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Erro da transacción" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Non se atopou o nome do repositorio" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Non foi posíbel eliminar do sistema un paquete protexido" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Cancelouse a tarefa" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "A tarefa cancelouse pola forza" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Fallou a lectura do ficheiro de configuración" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Non foi posíbel cancelar a tarefa" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Non foi posíbel instalar os paquetes de fontes" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Fallou a aceptación da licenza" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Hai un conflito entre paquetes sobre un ficheiro local" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Os paquetes non son compatíbeis" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Aconteceu un problema ao conectar a unha fonte de software" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Fallou o inicio" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Fallou a finalización" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Non é posíbel obter o bloqueo" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Non hai ningún paquete para actualizar" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Non é posíbel escribir a configuración do repositorio" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Fallou a instalación local" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Sinatura GPG incorrecta" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Falta a sinatura GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "A configuración do repositorio non é válida" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Ficheiro de paquete non válido" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Paquete instalado bloqueado" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "O paquete está corrompido" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Xa están instalados todos os paquetes" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Non foi posíbel atopar o ficheiro que se especificou" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Non hai dispoñíbeis máis réplicas" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 #, fuzzy #| msgid "Distribution upgrade available" msgid "No distribution upgrade data is available" msgstr "Disponse dunha versión nova da distribución" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "Package is incompatible with this system" msgstr "Xa está instalado o paquete que está a tentar instalar." -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 #, fuzzy #| msgid "Authentication failed" msgid "Authorization failed" msgstr "Fallou a autenticación" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Non se achou o paquete" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot install from untrusted origin" msgstr "" +"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " +"fonte de software." -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot update from untrusted origin" msgstr "" +"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " +"fonte de software." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgid "Got file list" msgid "Cannot get the file list" msgstr "Obtívose a lista de ficheiros" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "A system restart is required" msgid "Cannot get package requires" msgstr "Requírese que se reinicie o sistema" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Fallou a obtención do paquete" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "O paquete a instalar" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "O paquete a instalar" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "O paquete a instalar" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "O paquete a instalar" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Erro descoñecido" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1657,7 +1686,7 @@ "Non dispón de conexión á rede.\n" "Verifique a conexión á rede e probe de novo" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1665,7 +1694,7 @@ "Debe reconstruír a lista de paquetes.\n" "Isto debería ter sido feito automaticamente pola infraestrutura." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1675,12 +1704,12 @@ "memoria.\n" "Peche algún programa ou reinicie o ordenador." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Non foi posíbel criar un fío de execución para servir o pedido do usuario." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1688,7 +1717,7 @@ "Esa acción non está permitida pola infraestrutura.\n" "Por favor, informe do erro, isto non debera ter acontecido." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1696,41 +1725,41 @@ "Aconteceu un problema que non se estaba a agardar.\n" "Por favor informe deste erro coa descrición deste." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Non se puido estabelecer unha relación de confianza coa fonte de software.\n" "Verifique a configuración da seguridade." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Non ten instalado o paquete que está a tentar eliminar ou actualizar." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "O paquete que se está a modificar non foi atopado no sistema nin en ningunha " "fonte de software." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Xa está instalado o paquete que está a tentar instalar." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1738,7 +1767,7 @@ "Fallou a obtención do paquete.\n" "Verifique a conexión á rede." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1746,7 +1775,7 @@ "Non se atopou o tipo do grupo.\n" "Verifique a lista de grupos e ténteo de novo." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1754,14 +1783,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Non foi posíbel cargar a lista de grupos.\n" "Pode axudalo actualizar a caché, aínda que normalmente isto é un erro da " "fonte de software." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1769,11 +1798,11 @@ "Non foi posíbel achar unha dependencia do paquete.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "O filtro de procuras non estaba correctamente formado." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1782,7 +1811,7 @@ "do sistema.\n" "Polo xeral isto indica un erro interno e debería ser informado." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1790,27 +1819,27 @@ "Aconteceu un erro ao executar a transacción.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Non se achou o nome da fonte remota de software.\n" "Poida que teña que habilitar un ítem nas Fontes de software." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Non se permite eliminar do sistema paquetes protexidos." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "A tarefa cancelouse con éxito e non se modificou ningún paquete." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1818,7 +1847,7 @@ "A tarefa cancelouse con éxito e non se modificou ningún paquete.\n" "A infraestrutura non saíu limpamente." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1826,11 +1855,11 @@ "Non foi posíbel abrir o ficheiro nativo de configuración do paquete.\n" "Verifique que a configuración do sistema sexa válida." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Non é seguro cancelar agora a tarefa." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1838,7 +1867,7 @@ "Normalmente os paquetes de código fonte non son instalados deste xeito.\n" "Comprobe a extensión do ficheiro que está a tentar instalar." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1846,44 +1875,44 @@ "Non se aceitou o acordo de licenza.\n" "Para utilizar este software terá que aceitar a licenza." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Dous paquetes fornecen o mesmo ficheiro.\n" "Polo xeral isto débese a que se mesturan paquetes de distintas fontes." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Hai varios paquetes incompatíbeis entre si.\n" "Polo xeral isto débese a que se mesturan paquetes de distintas fontes." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software source\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Aconteceu un problema (posibelmente temporal) ao conectar cunha fonte de " "software\n" "Consulte os detalles do erro." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1891,7 +1920,7 @@ "Non foi posíbel iniciar a infraestrutura de empaquetamento.\n" "Isto pode acontecer se está a empregar á vez outra ferramenta de paquetería." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1899,7 +1928,7 @@ "Non foi posíbel pechar a instancia da infraestrutura.\n" "Normalmente pode ignorar este erro." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1907,15 +1936,15 @@ "Non foi posíbel obter o bloqueo exclusivo na infraestrutura de paquetería.\n" "Peche calquera outra ferramenta de paquetería que poda ter aberta." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Non foi posíbel actualizar ningún dos paquetes escollidos." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Non foi posíbel modificar a configuración do repositorio." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1923,11 +1952,11 @@ "Fallou a instalación do ficheiro local.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Non foi posíbel comprobar a sinatura do paquete." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1935,11 +1964,11 @@ "Falta a sinatura do paquete, que fica sen validar.\n" "O paquete non foi asinado cunha chave GPG cando foi criado." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "A configuración do repositorio non era válida e non se puido ler." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1947,7 +1976,7 @@ "O paquete que está a tentar instalar non é válido.\n" "O ficheiro do paquete pode estar corrompido, ou non ser un paquete correcto." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1955,18 +1984,18 @@ "A configuración do sistema de paquetería impediu que se instalase este " "paquete." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "O paquete que obtivo está corrompido e debe descargalo de novo." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Todos os paquetes escollidos para instalar están xa instalados no sistema." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1974,21 +2003,21 @@ "Non foi posíbel achar no sistema o ficheiro especificado.\n" "Comprobe que o ficheiro aínda existe e que non foi borrado." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Non foi posíbel atopar os datos requiridos en ningunha das fontes de " "software coñecidas.\n" "Non había máis sitios de replica onde tentalo." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " @@ -1996,80 +2025,80 @@ #| "There were no more download mirrors that could be tried." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Non foi posíbel atopar os datos requiridos en ningunha das fontes de " "software coñecidas.\n" "Non había máis sitios de replica onde tentalo." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Xa está instalado o paquete que está a tentar instalar." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "" "O paquete que se está a modificar non foi atopado no sistema nin en ningunha " "fonte de software." -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "" "O paquete que se está a modificar non foi atopado no sistema nin en ningunha " "fonte de software." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The specified file could not be found" msgid "The file list is not available for this package." msgstr "Non foi posíbel atopar o ficheiro que se especificou" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Non foi posíbel atopar o ficheiro que se especificou" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -2081,7 +2110,7 @@ "Non foi posíbel achar unha dependencia do paquete.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2093,7 +2122,7 @@ "Fallou a instalación do ficheiro local.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2105,7 +2134,7 @@ "Fallou a instalación do ficheiro local.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2117,7 +2146,7 @@ "Fallou a instalación do ficheiro local.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2129,7 +2158,7 @@ "Fallou a instalación do ficheiro local.\n" "Hai máis información no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -2137,329 +2166,329 @@ "Aconteceu un erro descoñecido, por favor, informe do erro.\n" "Hai máis información dispoñíbel no informe pormenorizado." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 #, fuzzy #| msgid "Accessibility" msgctxt "The group type" msgid "Accessibility" msgstr "Accesibilidade" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 #, fuzzy #| msgid "Accessories" msgctxt "The group type" msgid "Accessories" msgstr "Accesorios" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 #, fuzzy #| msgid "Education" msgctxt "The group type" msgid "Education" msgstr "Educación" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 #, fuzzy #| msgid "Games" msgctxt "The group type" msgid "Games" msgstr "Xogos" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 #, fuzzy #| msgid "Graphics" msgctxt "The group type" msgid "Graphics" msgstr "Gráficos" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 #, fuzzy #| msgid "Internet" msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 #, fuzzy #| msgid "Office" msgctxt "The group type" msgid "Office" msgstr "Oficina" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 #, fuzzy #| msgid "Other" msgctxt "The group type" msgid "Other" msgstr "Outro" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 #, fuzzy #| msgid "Development" msgctxt "The group type" msgid "Development" msgstr "Desenvolvemento" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 #, fuzzy #| msgid "Multimedia" msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 #, fuzzy #| msgid "System" msgctxt "The group type" msgid "System" msgstr "Sistema" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 #, fuzzy #| msgid "GNOME desktop" msgctxt "The group type" msgid "GNOME desktop" msgstr "Escritorio GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 #, fuzzy #| msgid "KDE desktop" msgctxt "The group type" msgid "KDE desktop" msgstr "Escritorio KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 #, fuzzy #| msgid "XFCE desktop" msgctxt "The group type" msgid "XFCE desktop" msgstr "Escritorio XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 #, fuzzy #| msgid "Other desktops" msgctxt "The group type" msgid "Other desktops" msgstr "Outros escritorios" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 #, fuzzy #| msgid "Publishing" msgctxt "The group type" msgid "Publishing" msgstr "Publicación" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 #, fuzzy #| msgid "Servers" msgctxt "The group type" msgid "Servers" msgstr "Servidores" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 #, fuzzy #| msgid "Fonts" msgctxt "The group type" msgid "Fonts" msgstr "Tipos de letra" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 #, fuzzy #| msgid "Admin tools" msgctxt "The group type" msgid "Admin tools" msgstr "Administración" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 #, fuzzy #| msgid "Legacy" msgctxt "The group type" msgid "Legacy" msgstr "Legado" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 #, fuzzy #| msgid "Localization" msgctxt "The group type" msgid "Localization" msgstr "Localización" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 #, fuzzy #| msgid "Virtualization" msgctxt "The group type" msgid "Virtualization" msgstr "Virtualización" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 #, fuzzy #| msgid "Security" msgctxt "The group type" msgid "Security" msgstr "Seguridade" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 #, fuzzy #| msgid "Power management" msgctxt "The group type" msgid "Power management" msgstr "Xestión da enerxía" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 #, fuzzy #| msgid "Communication" msgctxt "The group type" msgid "Communication" msgstr "Comunicación" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 #, fuzzy #| msgid "Network" msgctxt "The group type" msgid "Network" msgstr "Rede" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 #, fuzzy #| msgid "Maps" msgctxt "The group type" msgid "Maps" msgstr "Mapas" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 #, fuzzy #| msgid "Software sources" msgctxt "The group type" msgid "Software sources" msgstr "Fontes de software" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 #, fuzzy #| msgid "Science" msgctxt "The group type" msgid "Science" msgstr "Ciencia" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 #, fuzzy #| msgid "Documentation" msgctxt "The group type" msgid "Documentation" msgstr "Documentación" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 #, fuzzy #| msgid "Electronics" msgctxt "The group type" msgid "Electronics" msgstr "Electrónica" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 #, fuzzy #| msgid "Package collections" msgctxt "The group type" msgid "Package collections" msgstr "Coleccións de paquetes" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 #, fuzzy #| msgid "Vendor" msgctxt "The group type" msgid "Vendor" msgstr "Fabricante" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 #, fuzzy #| msgid "Only newest packages" msgctxt "The group type" msgid "Newest packages" msgstr "Só os paquetes máis novos" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 #, fuzzy #| msgid "Unknown group" msgctxt "The group type" msgid "Unknown group" msgstr "Grupo descoñecido" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 #, fuzzy #| msgid "Trivial update" msgctxt "The type of update" msgid "Trivial update" msgstr "Actualización trivial" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 #, fuzzy #| msgid "Normal update" msgctxt "The type of update" msgid "Normal update" msgstr "Actualización normal" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 #, fuzzy #| msgid "Important update" msgctxt "The type of update" msgid "Important update" msgstr "Actualización importante" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 #, fuzzy #| msgid "Security update" msgctxt "The type of update" msgid "Security update" msgstr "Actualización de seguridade" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 #, fuzzy #| msgid "Bug fix update" msgctxt "The type of update" msgid "Bug fix update" msgstr "Actualización de corrección de erros" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 #, fuzzy #| msgid "Enhancement update" msgctxt "The type of update" msgid "Enhancement update" msgstr "Actualización con mellorías" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 #, fuzzy #| msgid "Blocked update" msgctxt "The type of update" msgid "Blocked update" msgstr "Actualización trancada" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 #, fuzzy #| msgid "Installed" msgctxt "The type of update" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 #, fuzzy #| msgid "Available" msgctxt "The type of update" msgid "Available" msgstr "Dispoñíbel" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 #, fuzzy #| msgid "Unknown update" msgctxt "The type of update" msgid "Unknown update" msgstr "Actualización descoñecida" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 actualización trivial" msgstr[1] "%1 actualizacións triviais" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2469,63 +2498,63 @@ msgstr[0] "1 actualización" msgstr[1] "%1 actualizacións" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 actualización importante" msgstr[1] "%1 actualizacións importantes" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 actualización de seguridade" msgstr[1] "%1 actualizacións de seguridade" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 actualización de corrección de erros" msgstr[1] "%1 actualizacións de corrección de erros" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 actualización de melloría" msgstr[1] "%1 actualización de mellorías" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 actualización trancada" msgstr[1] "%1 actualizacións trancadas" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "Instalouse 1 paquete" msgstr[1] "Instaláronse %1 paquetes" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 paquete dispoñíbel" msgstr[1] "%1 paquetes dispoñíbeis" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 actualización descoñecida" msgstr[1] "%1 actualizacións descoñecidas" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2534,7 +2563,7 @@ msgstr[0] "1 actualización trivial" msgstr[1] "%1 actualizacións triviais" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2544,7 +2573,7 @@ msgstr[0] "1 actualización" msgstr[1] "%1 actualizacións" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2553,7 +2582,7 @@ msgstr[0] "1 actualización importante" msgstr[1] "%1 actualizacións importantes" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2562,7 +2591,7 @@ msgstr[0] "1 actualización de seguridade" msgstr[1] "%1 actualizacións de seguridade" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2571,7 +2600,7 @@ msgstr[0] "1 actualización de corrección de erros" msgstr[1] "%1 actualizacións de corrección de erros" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2580,7 +2609,7 @@ msgstr[0] "1 actualización de melloría" msgstr[1] "%1 actualización de mellorías" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2589,7 +2618,7 @@ msgstr[0] "Instalouse 1 paquete" msgstr[1] "Instaláronse %1 paquetes" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "All packages are already installed" msgid "1 available package selected to be installed" @@ -2597,7 +2626,7 @@ msgstr[0] "Xa están instalados todos os paquetes" msgstr[1] "Xa están instalados todos os paquetes" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2606,7 +2635,7 @@ msgstr[0] "1 actualización trivial" msgstr[1] "%1 actualizacións triviais" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2616,7 +2645,7 @@ msgstr[0] "1 actualización" msgstr[1] "%1 actualizacións" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2625,7 +2654,7 @@ msgstr[0] "1 actualización importante" msgstr[1] "%1 actualizacións importantes" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2634,7 +2663,7 @@ msgstr[0] "1 actualización de seguridade" msgstr[1] "%1 actualizacións de seguridade" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2643,7 +2672,7 @@ msgstr[0] "1 actualización de corrección de erros" msgstr[1] "%1 actualizacións de corrección de erros" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2652,7 +2681,7 @@ msgstr[0] "1 actualización de melloría" msgstr[1] "%1 actualización de mellorías" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, fuzzy, kde-format #| msgid "1 blocked update" #| msgid_plural "%1 blocked updates" @@ -2661,7 +2690,7 @@ msgstr[0] "1 actualización trancada" msgstr[1] "%1 actualizacións trancadas" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2670,7 +2699,7 @@ msgstr[0] "Instalouse 1 paquete" msgstr[1] "Instaláronse %1 paquetes" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2679,7 +2708,7 @@ msgstr[0] "1 paquete dispoñíbel" msgstr[1] "%1 paquetes dispoñíbeis" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, fuzzy, kde-format #| msgid "1 unknown update" #| msgid_plural "%1 unknown updates" @@ -2688,292 +2717,499 @@ msgstr[0] "1 actualización descoñecida" msgstr[1] "%1 actualizacións descoñecidas" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 #, fuzzy #| msgid "No restart is necessary for this update" msgid "No restart is necessary" msgstr "Esta actualización non precisa reiniciar nada" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 #, fuzzy #| msgid "You need to restart the application" msgid "You will be required to restart this application" msgstr "Deberá reiniciar o programa" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You will be required to log out and back in" msgstr "Deberá saír e entrar de novo no sistema" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 #, fuzzy #| msgid "No restart is required" msgid "A restart will be required" msgstr "Non precisa dun reinicio" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." msgstr "Requírese que saia e entre de novo no sistema tras esta actualización" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "No restart is required" msgid "A restart will be required due to a security update." msgstr "Non precisa dun reinicio" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Non precisa dun reinicio" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "No restart is required" msgid "A restart is required" msgstr "Non precisa dun reinicio" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in" msgstr "Deberá saír e entrar de novo no sistema" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Deberá reiniciar o programa" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in to remain secure." msgstr "Deberá saír e entrar de novo no sistema" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "No restart is required" msgid "A restart is required to remain secure." msgstr "Non precisa dun reinicio" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Estábel" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Inestábel" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Probas" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "O filtro de procuras non era válido" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "A lista de grupo non era válida" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Non se dispón de caché de paquetes" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "O paquete non está instalado" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgid "Generating package lists" msgid "A newer package exists" msgstr "A xerar as listas de paquetes" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "Failed to install package" msgid "Could not find package" msgstr "Fallou a instalación do paquete" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "O paquete xa está instalado" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Fallou a obtención do paquete" -#: libkpackagekit/KpkStrings.cpp:896 +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 #, fuzzy #| msgid "You don't have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +msgid "You do not have the necessary privileges to perform this action." msgstr "Non ten os privilexios precisos para realizar esta acción." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Non foi posíbel eliminar do sistema un paquete protexido" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Non foi posíbel comprobar a sinatura do paquete." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." msgstr "A lista de grupo non era válida" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "Non se instalou o ficheiro" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Failed to install package" msgid "Could not talk to packagekitd." msgstr "Fallou a instalación do paquete" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Erro descoñecido" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                  • %2
                                  Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                  • %2
                                  Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +#, fuzzy +#| msgid "Failed to install package" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to start search file transaction" +msgstr "Fallou a procura de provisións" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The %1 package already provides this file" +msgstr "O paquete xa está instalado" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Non foi posíbel instalar o ficheiro" +msgstr[1] "Non foi posíbel instalar os ficheiros" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +#, fuzzy +#| msgid "The following package will be installed:" +#| msgid_plural "The following packages will be installed:" +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Instalarase este paquete:" +msgstr[1] "Instalaranse estes paquetes:" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Non foi posíbel atopar o ficheiro que se especificou" +msgstr[1] "Non foi posíbel atopar o ficheiro que se especificou" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to find package" +msgstr "Fallou a instalación do paquete" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Deberá %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                  And another update" msgid_plural "
                                  And %1 more updates" msgstr[0] "
                                  E outra actualización" msgstr[1] "
                                  E %1 actualizacións máis" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Examinar e actualizar" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Non agora" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 #, fuzzy #| msgid "Don't ask anymore" msgid "Do not ask again" msgstr "Non voltar preguntar" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Estanse a instalar automaticamente as actualizacións." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Estanse a instalar automaticamente as actualizacións de seguridade." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 #, fuzzy #| msgid "System update was successful!" msgid "System update was successful." msgstr "A actualización do sistema tivo éxito!" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Fallou a actualización do software." -#: SmartIcon/KpkDistroUpgrade.cpp:68 -msgid "Start upgrade now" -msgstr "Iniciar agora o anovado da distribución" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +#, fuzzy +#| msgid "The following package will be removed:" +#| msgid_plural "The following packages will be removed:" +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Eliminarase este paquete:" +msgstr[1] "Eliminaranse estes paquetes:" -#: SmartIcon/KpkDistroUpgrade.cpp:111 -msgid "Distribution upgrade finished. " +#: SmartIcon/KpkInstallProvideFile.cpp:50 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Desexa instalar este ficheiro?" +msgstr[1] "Desexa instalar estes ficheiros?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" +msgstr "Iniciar agora o anovado da distribución" + +#: SmartIcon/KpkDistroUpgrade.cpp:113 +msgid "Distribution upgrade finished. " msgstr "Rematou de anovar a distribución." +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +#, fuzzy +#| msgid "Transactions" +msgid "Failed to start resolve transaction" +msgstr "Transaccións" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgid "Transactions" +msgid "User canceled the transaction" +msgstr "Transaccións" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Erro descoñecido" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                                  • %2
                                  Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                  • %2
                                  Do you want to search " +"for and install these packages now?" +msgstr[0] "Desexa instalar este ficheiro?" +msgstr[1] "Desexa instalar estes ficheiros?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +#, fuzzy +#| msgid "Failed to install package" +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "O paquete xa está instalado" +msgstr[1] "O paquete xa está instalado" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Fallou a instalación do paquete" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " +"fonte de software." +msgstr[1] "" +"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " +"fonte de software." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "Could not find %1" +msgstr "Fallou a instalación do paquete" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2998,227 +3234,296 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt e outras cousas" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Transaccións" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Refresh Packages List" -msgid "Refresh package list" -msgstr "Refrescar a lista de paquetes" +#| msgid "" +#| "An additional program is required to open this type of file:
                                  %1
                                  Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Requírese un programa adicional para abrir este tipo de ficheiro:
                                  %1
                                  Desexa procurar agora un programa que abra este tipo de ficheiro?" +msgstr[1] "" +"Requírese un programa adicional para abrir este tipo de ficheiro:
                                  %1
                                  Desexa procurar agora un programa que abra este tipo de ficheiro?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy -#| msgid "Show Updates" -msgid "Show messages" -msgstr "Mostrar as actualizacións" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#| msgid "Failed to install package" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format -#| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Nome do paquete" -msgstr[1] "Nome do paquete" +#| msgid "Failed to install package" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Procurar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Fallou a procura de provisións" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Programa que pode abrir este tipo de ficheiro" +msgstr[1] "Programas que poden abrir este tipo de ficheiro" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 #, fuzzy -#| msgid "The software update failed." -msgid "The system update has completed" -msgstr "Fallou a actualización do software." +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Non se atoparon novos programas para manexar este tipo de ficheiro" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 #, fuzzy -#| msgid "Restart" -msgctxt "Restart the computer" -msgid "Restart" -msgstr "Reiniciar" +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Non foi posíbel achar software" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend or it is not a file" +#| msgid_plural "" +#| "These items are not supported by your backend or they are not files" +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Este ítem non é admitido pola infraestrutura ou non é un ficheiro" +msgstr[1] "" +"Estes ítems non están admitidos pola infraestrutura ou non son ficheiros" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" -msgstr "%1% - %2" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "É imposíbel de instalar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "%1" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Desexa instalar este ficheiro?" +msgstr[1] "Desexa instalar estes ficheiros?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Desexa instalar?" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -#, fuzzy -#| msgid "KPackageKit Settings" -msgid "KPackageKit settings" -msgstr "Configuración de KPackageKit" +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Non se instalou o ficheiro" +msgstr[1] "Non se instalaron os ficheiros" -#: Settings/KpkSettings.cpp:60 -#, fuzzy -#| msgid "Hourly" -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Horariamente" +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "O ficheiro instalouse con éxito" +msgstr[1] "Os ficheiros instaláronse con éxito" -#: Settings/KpkSettings.cpp:61 +#: SmartIcon/PkInstallPackageFiles.cpp:235 #, fuzzy -#| msgid "Daily" -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Diariamente" +#| msgid "Sorry, an error occurred" +msgid "An error occurred." +msgstr "Aconteceu un erro" -#: Settings/KpkSettings.cpp:62 -#, fuzzy -#| msgid "Weekly" -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Semanalmente" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                  • %2
                                  Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                  • %2
                                  Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:63 +#: SmartIcon/PkInstallGStreamerResources.cpp:75 #, fuzzy -#| msgid "Monthly" -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Mensualmente" +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Un programa require un novo tipo mime" +msgstr[1] "Un programa require novos tipos mime" -#: Settings/KpkSettings.cpp:64 +#: SmartIcon/PkInstallGStreamerResources.cpp:80 #, fuzzy -#| msgid "Never" -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nunca" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Só as de seguridade" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Todas as actualizacións" +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Un programa require un novo tipo mime" +msgstr[1] "Un programa require novos tipos mime" -#: Settings/KpkSettings.cpp:68 +#: SmartIcon/PkInstallGStreamerResources.cpp:85 #, fuzzy -#| msgid "None" -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Ningunha" +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Un programa require un novo tipo mime" +msgstr[1] "Un programa require novos tipos mime" -#: Settings/KpkSettings.cpp:163 -#, fuzzy -#| msgid "You don't have the necessary privileges to perform this action." -msgid "You do not have the necessary privileges to perform this action." -msgstr "Non ten os privilexios precisos para realizar esta acción." +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:164 -#, fuzzy -#| msgid "Failed set origin data" -msgid "Failed to set origin data" -msgstr "Fallou a configuración dos datos da orixe" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -#, fuzzy -#| msgid "The following package will be removed:" -#| msgid_plural "The following packages will be removed:" -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Eliminarase este paquete:" -msgstr[1] "Eliminaranse estes paquetes:" +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 +#: SmartIcon/PkInstallGStreamerResources.cpp:155 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" msgstr[0] "Desexa instalar este ficheiro?" msgstr[1] "Desexa instalar estes ficheiros?" -#: KPackageKit/KpkInstallProvideFile.cpp:57 +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Could not find plugin in any configured software source" +msgstr "" +"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " +"fonte de software." + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Fallou a procura de provisións" + +#: SmartIcon/PkSearchFile.cpp:91 #, fuzzy -#| msgid "Failed to install package" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Fallou a instalación do paquete" -msgstr[1] "Fallou a instalación do paquete" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The file name could not be found in any software source" +msgstr "" +"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " +"fonte de software." -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "Fallou a instalación do paquete" -msgstr[1] "Fallou a instalación do paquete" +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Transaccións" -#: KPackageKit/KpkInstallProvideFile.cpp:68 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalar" +#| msgid "Refresh Packages List" +msgid "Refresh package list" +msgstr "Refrescar a lista de paquetes" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy -#| msgid "Failed to search for provides" -msgid "Failed to start search file transaction" -msgstr "Fallou a procura de provisións" +#| msgid "Show Updates" +msgid "Show messages" +msgstr "Mostrar as actualizacións" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:101 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "O paquete xa está instalado" +#| msgid "Package Name" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Nome do paquete" +msgstr[1] "Nome do paquete" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -#, fuzzy -#| msgid "The following package will be installed:" -#| msgid_plural "The following packages will be installed:" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Instalarase este paquete:" -msgstr[1] "Instalaranse estes paquetes:" +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:116 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 #, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Non foi posíbel atopar o ficheiro que se especificou" -msgstr[1] "Non foi posíbel atopar o ficheiro que se especificou" +#| msgid "The software update failed." +msgid "The system update has completed" +msgstr "Fallou a actualización do software." -#: KPackageKit/KpkInstallProvideFile.cpp:118 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 #, fuzzy -#| msgid "Failed to install package" -msgid "Failed to find package" -msgstr "Fallou a instalación do paquete" +#| msgid "Restart" +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Reiniciar" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Non agora" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 #, fuzzy #| msgid "Failed to install package" msgid "A program wants to remove a file" @@ -3226,14 +3531,15 @@ msgstr[0] "Fallou a instalación do paquete" msgstr[1] "Fallou a instalación do paquete" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "Fallou a instalación do paquete" +msgstr[1] "Fallou a instalación do paquete" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 #, fuzzy #| msgid "The following package will be removed:" #| msgid_plural "The following packages will be removed:" @@ -3242,7 +3548,7 @@ msgstr[0] "Eliminarase este paquete:" msgstr[1] "Eliminaranse estes paquetes:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" @@ -3254,14 +3560,14 @@ msgstr[0] "Desexa instalar este ficheiro?" msgstr[1] "Desexa instalar estes ficheiros?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 #, fuzzy #| msgid "Search" msgctxt "Search for a package and remove" msgid "Search" msgstr "Procurar" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 #, fuzzy #| msgid "The following package will be removed:" #| msgid_plural "The following packages will be removed:" @@ -3270,7 +3576,7 @@ msgstr[0] "Eliminarase este paquete:" msgstr[1] "Eliminaranse estes paquetes:" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -3278,223 +3584,227 @@ msgstr[0] "Non foi posíbel atopar o ficheiro que se especificou" msgstr[1] "Non foi posíbel atopar o ficheiro que se especificou" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "Could not find %1" -msgstr "Fallou a instalación do paquete" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +#| msgid "" +#| "An additional program is required to open this type of file:
                                  %1
                                  Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                  • %1
                                  • Do you want to search for a program to open this file type now?" msgstr "" +"Requírese un programa adicional para abrir este tipo de ficheiro:
                                    %1
                                    Desexa procurar agora un programa que abra este tipo de ficheiro?" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Show Updates" -msgid "Show updates" -msgstr "Mostrar as actualizacións" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Un programa require un novo tipo mime" +msgstr[1] "Un programa require novos tipos mime" -#: KPackageKit/main.cpp:47 -#, fuzzy -#| msgid "Show Settings" -msgid "Show settings" -msgstr "Mostrar a configuración" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 require un novo tipo mime" +msgstr[1] "%1 require novos tipos mime" -#: KPackageKit/main.cpp:48 +#: SmartIcon/PkInstallMimeTypes.cpp:68 #, fuzzy -#| msgid "Searched for package details" -msgid "Show backend details" -msgstr "Procuráronse detalles do paquete" +#| msgid "Search" +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Procurar" -#: KPackageKit/main.cpp:49 -#, fuzzy -#| msgid "Mime Type Installer" -msgid "Mime type installer" -msgstr "Instalador de tipos mime" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Non se atoparon novos programas para manexar este tipo de ficheiro" -#: KPackageKit/main.cpp:50 -#, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "O paquete a instalar" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Non foi posíbel achar software" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Mime Type Installer" -msgid "Single file installer" -msgstr "Instalador de tipos mime" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                    Do you want to install this catalog?

                                    • %2
                                    " +msgid_plural "" +"

                                    Do you want to install these catalogs?

                                    • %2
                                    " +msgstr[0] "Desexa instalar este ficheiro?" +msgstr[1] "Desexa instalar estes ficheiros?" -#: KPackageKit/main.cpp:52 +#: SmartIcon/PkInstallCatalogs.cpp:58 #, fuzzy -#| msgid "Searching by package name" -msgid "Single package remover" -msgstr "A procurar polo nome do paquete" +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instalar agora" +msgstr[1] "Instalar agora" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "O paquete a instalar" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instalar" -#: KPackageKit/KpkInstallFiles.cpp:81 +#: SmartIcon/PkInstallCatalogs.cpp:99 #, fuzzy -#| msgid "This item is not supported by your backend or it is not a file" -#| msgid_plural "" -#| "These items are not supported by your backend or they are not files" -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Este ítem non é admitido pola infraestrutura ou non é un ficheiro" -msgstr[1] "" -"Estes ítems non están admitidos pola infraestrutura ou non son ficheiros" +#| msgid "Sorry, your backend does not support installing packages" +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "A infraestrutura que está a empregar non permite instalar paquetes" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "É imposíbel de instalar" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Non está permitido por esta infraestrutura" -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instalar" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "O paquete a instalar" +msgstr[1] "O paquete a instalar" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Desexa instalar este ficheiro?" -msgstr[1] "Desexa instalar estes ficheiros?" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Fallou a finalización" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Desexa instalar?" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Non foi posíbel instalar os paquetes de fontes" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Non se instalou o ficheiro" -msgstr[1] "Non se instalaron os ficheiros" +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Transactions" +msgid "Failed to start setup transaction" +msgstr "Transaccións" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Non foi posíbel instalar o ficheiro" -msgstr[1] "Non foi posíbel instalar os ficheiros" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +#, fuzzy +#| msgid "KPackageKit Settings" +msgid "KPackageKit settings" +msgstr "Configuración de KPackageKit" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "O ficheiro instalouse con éxito" -msgstr[1] "Os ficheiros instaláronse con éxito" +#: Settings/KpkSettings.cpp:61 +#, fuzzy +#| msgid "Hourly" +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Horariamente" -#: KPackageKit/KpkInstallFiles.cpp:197 +#: Settings/KpkSettings.cpp:62 #, fuzzy -#| msgid "Sorry, an error occurred" -msgid "An error occurred." -msgstr "Aconteceu un erro" +#| msgid "Daily" +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Diariamente" -#: KPackageKit/KpkInstallPackageName.cpp:47 +#: Settings/KpkSettings.cpp:63 #, fuzzy -#| msgid "A system restart is required" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Requírese que se reinicie o sistema" -msgstr[1] "Requírese que se reinicie o sistema" +#| msgid "Weekly" +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Semanalmente" -#: KPackageKit/KpkInstallPackageName.cpp:50 +#: Settings/KpkSettings.cpp:64 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Desexa instalar este ficheiro?" -msgstr[1] "Desexa instalar estes ficheiros?" +#| msgid "Monthly" +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Mensualmente" -#: KPackageKit/KpkInstallPackageName.cpp:57 +#: Settings/KpkSettings.cpp:65 #, fuzzy -#| msgid "Failed to install package" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Fallou a instalación do paquete" -msgstr[1] "Fallou a instalación do paquete" +#| msgid "Never" +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nunca" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "Fallou a instalación do paquete" -msgstr[1] "Fallou a instalación do paquete" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Só as de seguridade" -#: KPackageKit/KpkInstallPackageName.cpp:68 +#: Settings/KpkSettings.cpp:68 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalar" +#| msgid "All Updates" +msgid "All updates" +msgstr "Todas as actualizacións" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:69 #, fuzzy -#| msgid "Transactions" -msgid "Failed to start resolve transaction" -msgstr "Transaccións" +#| msgid "None" +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Ningunha" -#: KPackageKit/KpkInstallPackageName.cpp:112 +#: Settings/KpkSettings.cpp:167 #, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " -"fonte de software." -msgstr[1] "" -"O paquete que se está a modificar non foi atopado no sistema nin en ningunha " -"fonte de software." +#| msgid "Failed set origin data" +msgid "Failed to set origin data" +msgstr "Fallou a configuración dos datos da orixe" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                    %1
                                    Do " -"you want to search for a program to open this file type now?" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" msgstr "" -"Requírese un programa adicional para abrir este tipo de ficheiro:
                                    %1
                                    Desexa procurar agora un programa que abra este tipo de ficheiro?" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Un programa require un novo tipo mime" -msgstr[1] "Un programa require novos tipos mime" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Show Updates" +msgid "Show updates" +msgstr "Mostrar as actualizacións" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 require un novo tipo mime" -msgstr[1] "%1 require novos tipos mime" +#: KPackageKit/main.cpp:47 +#, fuzzy +#| msgid "Show Settings" +msgid "Show settings" +msgstr "Mostrar a configuración" -#: KPackageKit/KpkInstallMimeType.cpp:64 +#: KPackageKit/main.cpp:48 #, fuzzy -#| msgid "Search" -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Procurar" +#| msgid "Searched for package details" +msgid "Show backend details" +msgstr "Procuráronse detalles do paquete" -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Fallou a procura de provisións" +#: KPackageKit/main.cpp:49 +#, fuzzy +#| msgid "Mime Type Installer" +msgid "Mime type installer" +msgstr "Instalador de tipos mime" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Programa que pode abrir este tipo de ficheiro" -msgstr[1] "Programas que poden abrir este tipo de ficheiro" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "O paquete a instalar" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Non se atoparon novos programas para manexar este tipo de ficheiro" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Mime Type Installer" +msgid "Single file installer" +msgstr "Instalador de tipos mime" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Non foi posíbel achar software" +#: KPackageKit/main.cpp:52 +#, fuzzy +#| msgid "Searching by package name" +msgid "Single package remover" +msgstr "A procurar polo nome do paquete" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "O paquete a instalar" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" @@ -3508,7 +3818,7 @@ msgid "Your emails" msgstr "Obtivéronse os detalles" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3516,13 +3826,13 @@ msgid "Select all updates" msgstr "Actualización de seguridade" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Anovar" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3560,181 +3870,183 @@ msgid "Required by" msgstr "É requirido por" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Engadir e eliminar software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Procurar paquetes" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtros" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Todos os paquetes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "Transacción de KPackageKit" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Transaccións" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Acción" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "A obter os paquetes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Unha biblioteca para facer nada" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "Etiqueta de texto" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Acción" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "Etiqueta de texto" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nome do repositorio:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL da sinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identificación do usuario da sinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificación da sinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Recoñece ao usuario e confiar nesta chave?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Confía na orixe dos paquetes?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Lea esta importante información antes de continuar:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Configuración" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Configuración de KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Comprobar as actualizacións:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "A anovar" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Instalar automaticamente:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Comprobar as actualizacións:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Icona intelixente na bandexa" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Instalar automaticamente:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Notificar cando haxa dispoñíbeis actualizacións" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Notificar cando se rematen tarefas longas" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Orixe dos paquetes" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Mostrar as fontes dos paquetes de depuración e desenvolvemento" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 #, fuzzy #| msgid "Package Name" msgid "Backend name:" @@ -3742,7 +4054,7 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package Name" msgid "backend name here" @@ -3750,13 +4062,21 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 #, fuzzy #| msgid "Package Name" msgid "Backend author:" msgstr "Nome do paquete" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find Description" +msgid "Backend description:" +msgstr "Procurar pola descrición" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 #, fuzzy @@ -3764,254 +4084,329 @@ msgid "backend author name here" msgstr "Nome do paquete" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package Name" +msgid "backend description here" +msgstr "Nome do paquete" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Paquete instalado bloqueado" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Só software libre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Actualizacións" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgid "Updated packages" msgid "UpdatePackage" msgstr "Paquetes actualizados" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 #, fuzzy #| msgid "Repository" msgid "GetRepositoryList" msgstr "Repositorio" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Anovar" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgid "Installed packages" msgid "InstallPackage" msgstr "Paquetes instalados" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 #, fuzzy #| msgid "Repository name:" msgid "RepositoryEnable" msgstr "Nome do repositorio:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgid "Updated system" msgid "UpdateSystem" msgstr "Anovouse o sistema" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgid "Removed packages" msgid "RemovePackage" msgstr "Paquetes eliminados" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Nome do repositorio:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgid "Search" msgid "SearchName" msgstr "Procurar" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Depende de" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 #, fuzzy #| msgid "Got what provides" msgid "WhatProvides" msgstr "Obtívose o que fornece" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgid "Searching details" msgid "SearchDetails" msgstr "A procurar os detalles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgid "Got requires" msgid "GetRequires" msgstr "Obtivéronse os requirimentos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Todos os paquetes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgid "Searched groups" msgid "SearchGroup" msgstr "Procurouse por grupos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgid "Got update detail" msgid "GetUpdateDetail" msgstr "Obtivo os detalles da actualización" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgid "Search killed" msgid "SearchFile" msgstr "Matouse a procura" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Descrición" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Detalles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgid "Resolved" msgid "Resolve" msgstr "Resolto" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Instalado" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Instalado" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "Installed packages" msgid "SimulateInstallPackages" msgstr "Paquetes instalados" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "Removed packages" msgid "SimulateRemovePackages" msgstr "Paquetes eliminados" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "Updated packages" msgid "SimulateUpdatePackages" msgstr "Paquetes actualizados" +#, fuzzy +#~| msgid "Transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Transaccións" + +#, fuzzy +#~| msgid "This item is not supported by your backend or it is not a file" +#~| msgid_plural "" +#~| "These items are not supported by your backend or they are not files" +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Este ítem non é admitido pola infraestrutura ou non é un ficheiro" +#~ msgstr[1] "" +#~ "Estes ítems non están admitidos pola infraestrutura ou non son ficheiros" + +#, fuzzy +#~| msgid "A system restart is required" +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Requírese que se reinicie o sistema" +#~ msgstr[1] "Requírese que se reinicie o sistema" + +#, fuzzy +#~| msgid "Do you want to install this file?" +#~| msgid_plural "Do you want to install these files?" +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Desexa instalar este ficheiro?" +#~ msgstr[1] "Desexa instalar estes ficheiros?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                    %1
                                    Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Requírese un programa adicional para abrir este tipo de ficheiro:
                                    %" +#~ "1
                                    Desexa procurar agora un programa que abra este tipo de ficheiro?" + +#, fuzzy +#~| msgid "All Packages" +#~ msgid "All packages" +#~ msgstr "Todos os paquetes" + +#, fuzzy +#~| msgid "You don't have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Non ten os privilexios precisos para realizar esta acción." + +#~ msgid "Package Name" +#~ msgstr "Nome do paquete" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Configuración de KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Icona intelixente na bandexa" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Notificar cando se rematen tarefas longas" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "Transacción de KPackageKit" + +#~ msgid "A library to do foo" +#~ msgstr "Unha biblioteca para facer nada" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Tamén se instalarán estes paquetes por mor das súas dependencias" @@ -4024,9 +4419,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Tamén debe eliminar/instalar os seguintes paquetes:" -#~ msgid "Failed to update package lists" -#~ msgstr "Non foi posíbel actualizar as listas de paquetes" - #~ msgid "Failed to refresh package lists" #~ msgstr "Non foi posíbel refrescar as listas de paquetes" @@ -4102,9 +4494,6 @@ #~ msgid "Downloading" #~ msgstr "A obter" -#~ msgid "Updating" -#~ msgstr "A anovar" - #~ msgid "Cleaning Up" #~ msgstr "A limpar" @@ -4181,9 +4570,6 @@ #~ msgid "Find Name" #~ msgstr "Procurar polo nome" -#~ msgid "Find Description" -#~ msgstr "Procurar pola descrición" - #~ msgid "Find File" #~ msgstr "Procurar un ficheiro" diff -Nru kpackagekit-0.5.4/po/lt/kpackagekit.po kpackagekit-0.6.0/po/lt/kpackagekit.po --- kpackagekit-0.5.4/po/lt/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/lt/kpackagekit.po 2010-01-30 09:02:15.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-09-19 01:15+0300\n" "Last-Translator: Andrius Štikonas \n" "Language-Team: Lithuanian \n" @@ -27,11 +27,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Smulkiau" @@ -97,27 +97,27 @@ "Rekomenduotina palikti kompiuterį prijungtą prie išorinio maitinimo tol, kol " "vyksta sistemos atnaujinimas." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Distributyvo atnaujinimas atliktas." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Distributyvo atnaujinimo procesas buvo nutrauktas su kodu %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Distributyvo atnaujinimo proceso pradėti nepavyko." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" "Distributyvo atnaujinimo procesas nulūžo neužilgo po sėkmingos pradžios." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Distributyvo atnaujinimo procesas nutrūko dėl nežinomos klaidos." @@ -197,28 +197,24 @@ msgid "Time since last cache refresh: %1" msgstr "Laikas nuo praėjusio atmintinės atnaujinimo: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Paketo pavadinimas" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Namų puslapis" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licencija" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grupė" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Namų puslapis" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Dydis" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Failų nerasta." @@ -232,19 +228,19 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Ieškoti" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Visi paketai" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Pakeitimų sąrašas" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" @@ -253,153 +249,153 @@ msgstr[2] "Grupės:" msgstr[3] "Grupės:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Atšaukti" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Ieškoti pagal &vardą" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Ieškoti pagal f&ailo pavadinimą" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Ieškoti pagal a&prašymą" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Peržiūrėti pakeitimus" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Kolekcijos" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Tik kolekcijos" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Išskyrus kolekcijas" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Įdiegti" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Tik įdiegti" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Tik prieinami" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Be filtro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Development" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Tik development" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Tik vartotojo failai" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafinės terpės" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Tik grafinės terpės" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Tik tesktinės" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Laisvos" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Tik laisvos programos" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Tik nelaisvos programos" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architektūros" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Tik vietinės architektūros" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Tik nevietinės architektūros" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Šaltinis" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Tik šaltinio teksto" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Tik ne šaltinio teksto" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Slėpti subpaketus" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Rodyti tik vieną paketą, ne subpaketus" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Tik naujausi paketai" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Rodyti tik naujausius prieinamus paketus" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Rodyti grupėmis" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Rodyti paketus grupėmis pagal statusą" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Bus įdiegtas šis paketas:" @@ -407,11 +403,11 @@ msgstr[2] "Bus įdiegti šie paketai:" msgstr[3] "Bus įdiegti šie paketai:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Įdiegti dabar" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Šis paketas bus pašalintas:" @@ -419,11 +415,11 @@ msgstr[2] "Šie paketai bus pašalinti:" msgstr[3] "Šie paketai bus pašalinti:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Šalinti dabar" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Šis paketas bus pašalintas arba įdiegtas:" @@ -431,42 +427,55 @@ msgstr[2] "Šie paketai bus pašalinti ir įdiegti:" msgstr[3] "Šie paketai bus pašalinti ir įdiegti:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Pritaikyti dabar" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to remove package" +msgid "Failed to simulate package removal" +msgstr "Nepavyko pašalinti paketo" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Ši programinė sąsaja nepalaiko paketų šalinimo." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit klaida" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to simulate package install" +msgstr "Nepavyko įdiegti paketų" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Šiuo metu naudojama programinė sąsaja nepalaiko paketų įdiegimo." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Nepavyko pašalinti paketo" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Nepavyko įdiegti paketų" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Nepavyko pašalinti paketo" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Slėpti" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Leidžia paslėpti langą paliekant veikti pradėtą procesą." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                                    Installing unsigned packages can compromise your system, as it is " @@ -481,11 +490,11 @@ "nėra įmanoma patikrinti, ar programa atėjo iš patikimo šaltinio. Ar tikrai " "norite tęsti programų diegimą?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Diegiama nepasirašyta programinė įranga" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Reikia pakeisti media" @@ -505,7 +514,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Reikia sutikti su licencijos sutartimi" @@ -518,13 +527,13 @@ msgid "Version" msgstr "Versija" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Atšaukti" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Baigta %1." @@ -590,391 +599,498 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Reikalingas programinės įrangos parašas." -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Nežinoma būsena" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Laukiama kol bus paleistas servisas" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Laukiama kitų užduočių" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Veikiančios užduotys" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Užklausiama" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Gaunama informacija" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Šalinami paketai" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Atsisiunčiami paketai" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Diegiami paketai" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Atnaujinamas programinės įrangos sąrašas" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Atnaujinami paketai" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Paketai išvalomi" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Nebevartojami paketai" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Sprendžiamos priklausomybių sąsajos" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Tikrinami parašai" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Atstatoma" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Pakeitimai išbandomi" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Pritaikomi pakeitimai" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Užklausiama duomenų" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Baigta" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Atšaukiama" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Atsisiunčiama repozitorijų informacija" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Atsisiunčiami paketų sąrašai" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Atsisiunčiami failų sąrašai" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Atsisiunčiami pakeitimų sąrašai" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Atsisiunčiamos grupės" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Atsisiunčiama atnaujinimų informacija" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Failai pakuojami iš naujo" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" -msgstr "Įkeliama laikinoji atmintinė" +msgstr "Atnaujinamas programų sąrašas" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Peržiūrimos įdiegtos programos" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generuojami paketų sąrašai" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Laukiama paketų tvarkytuvės užrakto" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Laukiama kitų užduočių" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Failai pakuojami iš naujo" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Atsisiųsta" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Atnajinta" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Idiegta" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Pašalinta" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Išvaloma" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Nebevartojami" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Nežinomas vaidmens tipas" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Gaunamos priklausomybės" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Gaunamos atnaujinimų detalės" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Gaunamos detalės" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Gaunama informacija apie privalomus paketus" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Gaunami atnaujinimai" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Iškoma detalių" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Ieškoma failo" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Iškoma grupių" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Ieškoti paketo pavadinimo" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Šalinama" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Diegiama" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Diegiamas failas" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Atnaujinama paketų atmintinė" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Atnaujinami paketai" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Atnaujinama sistema" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Atšaukiama" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Atstatoma" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Gaunamas repozitorijų sąrašas" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Repozitorija įgalinama" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Nustatomi repozitorijos duomenys" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Nustatomas adresas" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Gaunamas failų sąrašas" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Iškoma kas pateikia" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Diegiamas parašas" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Gaunami paketų sąrašai" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Priimamas EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Atsisiunčiami paketai" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Gaunama distributyvo atnaujinimo informacija" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Gaunamos kategorijos" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Gaunami senesni veiksmai" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Mime Type Installer" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Mime tipų diegiklis" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Searching by package name" @@ -982,179 +1098,179 @@ msgid "Simulating the remove" msgstr "Ieškoti paketo pavadinimo" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Nežinomas vaidmens tipas" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Turi priklausomybių" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Turi atnaujinimo detalių" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Turi detalių" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Turi reikalaujamų" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Turi atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Ieškota paketų detalių" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Ieškota failo" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Ieškota grupių" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Ieškoti paketo pavadinimo" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Pašalinti paketai" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Įdiegti paketai" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Įdiegti vietiniai failai" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Atnaujinta paketų atmintinė" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Atnaujinti paketai" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Atnaujinta sistema" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Atšaukta" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Atstatyta" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Gautas repozitorijų sąrašas" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Įgalinta repozitorija" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Nustatyti repozitorijos duomenis" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Nustatyta" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Sąrašas gautas" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Gauta kas suteikia" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Parašas įdiegtas" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Gauti paketų sąrašai" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "EULA priimta" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Atsisiųsti paketai" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Gauta nauja distributyvo versija" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Gautos kategorijos" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Gauti seni veiksmai" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Mime Type Installer" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Mime tipų diegiklis" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Searching by package name" @@ -1162,269 +1278,273 @@ msgid "Simulated the remove" msgstr "Ieškoti paketo pavadinimo" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to update system" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Nepavyko atnaujinti sistemos" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Nėra tinklo ryšio" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Paketų atmintinės nėra" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Trūksta atminties" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Nepavyko sukurti gijos" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Ši programinė sąsaja šito nepalaiko" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Įvyko vidinė sistemos klaida" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Saugaus pasitikėjimo ryšio nėra" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Paketas nėra įdiegtas" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Paketo nerasta" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Paketas jau įdiegtas" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Paketo atsisiuntimas nepavyko" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Grupė nerasta" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Grupės sąrašas buvo neteisingas" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Priklausomybių sprendimas nepavyko" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Paieškos filtras neteisingas" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Paketo identifikatorius buvo suformuotas neteisingas" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Operacijos klaida" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Repozitorijos pavadinimas nerastas" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Nepavyko pašalinti apsaugoto sistemos paketo" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Užduotis buvo nutraukta" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Užduotis buvo nutraukta prievartiniu būdu" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Nepavyko perskaityti konfigūracijos failo" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Užduotis negali būti nutraukta" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Šaltinio paketo įdiegti neįmanoma" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Patvirtinti licencijos susitarimo nepavyko" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Konfliktas tarp paketų dėl vietinių failų" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Paketas nebuvo suderinamas" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Problema susijungiant su programinės įrangos šaltiniu" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Nepavyko inicializuoti" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Nepavyko užbaigti" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Nepavyko gauti užrakto" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Atnaujintinų paketų nėra" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Nepavyksta įrašyti repozitorijos konfigūracijos" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Užrakto įdiegimas nepavyko" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Blogas GPG parašas" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Trūkstamas GPG parašas" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Neteisinga repozitorijos konfigūracija" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Neteisingas paketo failas" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Paketo diegimas užblokuotas" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Paketas sugadintas" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Visi paketai jau įdiegti" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Nepavyko rasti nurodyto failo" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Daugiau nėra prieinamų veidrodžių" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Nėra duomenų apie naują distributyvo versiją" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Paketas nesuderinamas su sistema" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Diske nebėra vietos" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Paketo nerasta" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "The package is not installed" +msgid "Cannot install from untrusted origin" +msgstr "Paketas nėra įdiegtas" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "The package signature could not be verified." +msgid "Cannot update from untrusted origin" +msgstr "Nepavyko patikrinti paketo parašo." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got file list" msgid "Cannot get the file list" msgstr "Sąrašas gautas" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "A system restart is required" msgid "Cannot get package requires" msgstr "Reikia paleisti sistemą iš naujo" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Paketo atsisiuntimas nepavyko" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Paketo failas įdiegimui" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Paketo failas įdiegimui" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Paketo failas įdiegimui" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Paketo failas įdiegimui" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Nežinoma klaida" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1432,7 +1552,7 @@ "Nėra ryšio su tinklu.\n" "Prašome patikrinti ryšio nustatymus ir bandyti iš naujo" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1440,7 +1560,7 @@ "Reikia iš naujo sukurti paketų sąrašą.\n" "Programinė sąsaja tai turėjo atlikti automatiškai." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1450,11 +1570,11 @@ "Prašome užverti kai kurias daug atminties naudojančias programas arba " "paleisti kompiuterį iš naujo." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Vartotojo užklausai patenkinti nepavyko sukurti programos gijos." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1462,7 +1582,7 @@ "Programinė sąsaja nepalaiko šio veiksmo.\n" "Prašome pranešti apie šią ydą, taip neturėtų būti." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1470,41 +1590,41 @@ "Kilo netikėta problema.\n" "Prašome pranešti apie šią ydą ir pateikti klaidos aprašymą." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Nepavyko nustatyti pasitikėjimo programos šaltiniu santykio.\n" "Prašome patikrinti Jūsų programinės įrangos parašų nustatymus." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Paketas, kurį bandote pašalinti arba atnaujinti, išvis nėra įdiegtas." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Nei sistemoje, nei bet kuriame programų repozitorijoje nepavyko rasti " "paketo, kurį bandote modifikuoti." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Paketas, kurį bandote įdiegti, ir taip yra įdiegtas." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1512,7 +1632,7 @@ "Nepavyko atsisiųsti paketo.\n" "Prašome patikrinti, ar turite ryšį su tinklu." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1520,7 +1640,7 @@ "Nepavyko rasti grupės tipo.\n" "Prašome patikrinti savo grupių sąrašą ir bandyti iš naujo." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1528,14 +1648,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Nepavyko įkelti grupių sąrašo.\n" "Gali būti, kad problemą padės išspręsti paketų sąrašų atnaujinimas, nors " "dažniausiai šios problemos priežastis glūdi repozitorijose." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1543,11 +1663,11 @@ "Nepavyko rasti paketo priklausomybių.\n" "Detaliame pranešime yra daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Paieškos filtras nebuvo teisingai suformuotas." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1556,7 +1676,7 @@ "suformuotas.\n" "Dažniausiai tai reiškia vidinę ydą, apie kurią būtina pranešti." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1564,27 +1684,27 @@ "Vykdant operaciją įvyko klaida.\n" "Daugiau informacijos rasite detaliame pranešime." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Programos nepavyko rasti nutolusiuose programinės įrangos šaltiniuose.\n" "Gali būti, kad nėra įjungtas reikiamas programinės įrangos šaltinis." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Negalima pašalinti apsaugoto sistemos paketo." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Procesas nutrauktas sėkmingai, paketų pakeitimų neatlikta." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1592,7 +1712,7 @@ "Užduotis sėkmingai nutraukta ir jokių paketų pakeitimų neatlikta.\n" "Programinė sąsaja baigė darbą netvarkingai." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1600,11 +1720,11 @@ "Nepavyko atverti vietinio paketo konfigūravimo failo.\n" "Prašome patikrinti, ar jūsų sistemos konfigūracija yra teisinga." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Užduotį šiuo metu nutraukti nesaugu." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1612,7 +1732,7 @@ "Šaltinių failai paprastai tokiu būdu nediegiami.\n" "Pasitikrinkite failo, kurį norite įdiegti, priesagą." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1620,65 +1740,65 @@ "Jūs dar nesutikote su licencijos sutarties sąlygomis.\n" "Norėdami naudoti šią programą turite sutikti su jos licencija." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Šis failas yra dviejuose paketuose.\n" "Dažniausiai taip nutinka naudojant paketus iš kelių skirtingų programinės " "įrangos šaltinių." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Šis failas yra dviejuose paketuose.\n" "Dažniausiai taip nutinka naudojant paketus iš kelių skirtingų programinės " "įrangos šaltinių." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." msgstr "" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." msgstr "" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." msgstr "" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "" -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1686,11 +1806,11 @@ "Vietinio failo diegimas nepavyko.\n" "Detaliame pranešime rasite daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Nepavyko patikrinti paketo parašo." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1698,11 +1818,11 @@ "Paketo parašo nėra, ir šis paketas nėra patikimas.\n" "Paketas nebuvo pasirašytas GPG raktu jį sukūrus." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Repozitorijų konfigūracija neteisinga, jos nepavyko perskaityti." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1710,7 +1830,7 @@ "Bandomas įdiegti paketas nėra tinkamas.\n" "Paketo failas gali būti sugadintas, o gal būt tai iš tiesų nėra paketas." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1718,17 +1838,17 @@ "Paketo įdiegti nepavyko dėl jūsų kompiuterio paketų valdymo sistemos " "konfigūracijos." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Atsisiųstas paketas yra sugadintas, jį teks atsisiųsti iš naujo." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Visi diegimui pažymėti paketai jau yra įdiegti sistemoje." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1736,21 +1856,21 @@ "Nurodyto failo sistemoje nepavyko rasti.\n" "Patikrinkite ar failas vis dar egzistuoja, ar nebuvo ištrintas." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Nepavyko rasti reikalingų atnaujinimo duomenų nei viename iš sukonfigūruotų " "programinės įrangos šaltinių.\n" "Daugiau nebėra atsisiuntimo veidrodžių, kuriuos būtų galima pamėginti." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required upgrade data could not be found in any of the configured " @@ -1758,19 +1878,19 @@ #| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Nepavyko rasti reikalingų atnaujinimo duomenų nei viename iš sukonfigūruotų " "programinės įrangos šaltinių.\n" "Distributyvo atnaujinimų sąrašas bus neprieinamas." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Bandomas įdiegti paketas nėra suderinamas su šia sistema." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1778,52 +1898,52 @@ "Įrenginyje neužtenka vietos.\n" "Norėdami įvykdyti operaciją, atlaisvinkite dalį vietos sistemos diske." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "The package is not installed" -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "Paketas nėra įdiegtas" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "The package signature could not be verified." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "Nepavyko patikrinti paketo parašo." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The specified file could not be found" msgid "The file list is not available for this package." msgstr "Nepavyko rasti nurodyto failo" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Nepavyko rasti nurodyto failo" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -1835,7 +1955,7 @@ "Nepavyko rasti paketo priklausomybių.\n" "Detaliame pranešime yra daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1847,7 +1967,7 @@ "Vietinio failo diegimas nepavyko.\n" "Detaliame pranešime rasite daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1859,7 +1979,7 @@ "Vietinio failo diegimas nepavyko.\n" "Detaliame pranešime rasite daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1871,7 +1991,7 @@ "Vietinio failo diegimas nepavyko.\n" "Detaliame pranešime rasite daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1883,7 +2003,7 @@ "Vietinio failo diegimas nepavyko.\n" "Detaliame pranešime rasite daugiau informacijos." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1891,232 +2011,232 @@ "Nežinoma klaida, prašome užpildyti pranešimą apie įdą.\n" "Daugiau informacijos rasite detaliajame pranešime." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Pritaikymas neįgaliesiems" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Pagalbininkai" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Švietimas" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Žaidimai" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafika" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internetas" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Biuras" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Kita" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Programavimas" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistema" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME darbastalis" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE darbastalis" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE darbastalis" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Kiti darbastaliai" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publikavimas" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Serveriai" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Šriftai" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Administravimo įrankiai" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Pasenusios programos" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Lokalizavimas" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualizacija" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Saugumas" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Maitinimo valdymas" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Bendravimas" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Tinklas" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Žemėlapiai" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Programinės įrangos šaltiniai" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Mokslas" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentacija" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronika" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Paketų kolekcijos" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Gamintojas" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Naujausi paketai" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Nežinoma grupė" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Nereikšmingas atnaujinimas" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Įprastas atnaujinimas" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Svarbus atnaujinimas" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Saugumo atnaujinimai" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Atnaujinimas klaidų ištaisymui" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Patobulinantis atnaujinimas" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Užblokuotas atnaujinimas" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Idiegta" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Prieinamas" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Nežinomas atnaujinimas" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" @@ -2125,7 +2245,7 @@ msgstr[2] "%1 trivialūs atnaujinimai" msgstr[3] "%1 trivialių atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2135,7 +2255,7 @@ msgstr[2] "%1 atnaujinimai" msgstr[3] "%1 atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" @@ -2144,7 +2264,7 @@ msgstr[2] "%1 svarbūs atnaujinimai" msgstr[3] "%1 svarbių atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" @@ -2153,7 +2273,7 @@ msgstr[2] "%1 saugumo atnaujinimai" msgstr[3] "%1 saugumo atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" @@ -2162,7 +2282,7 @@ msgstr[2] "%1 ydas taisantys atnaujinimai" msgstr[3] "%1 ydas taisančių atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" @@ -2171,7 +2291,7 @@ msgstr[2] "%1 patobulinimo atnaujinimai" msgstr[3] "%1 patobulinimo atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" @@ -2180,7 +2300,7 @@ msgstr[2] "%1 užblokuoti atnaujinimai" msgstr[3] "%1 užblokuotų atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" @@ -2189,7 +2309,7 @@ msgstr[2] "%1 įdiegti paketai" msgstr[3] "%1 įdiegtų paketų" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" @@ -2198,7 +2318,7 @@ msgstr[2] "Yra %1 paketai" msgstr[3] "Yra %1 paketų" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" @@ -2207,7 +2327,7 @@ msgstr[2] "%1 nežinomi atnaujinimai" msgstr[3] "%1 nežinomų atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" @@ -2216,7 +2336,7 @@ msgstr[2] "Pasirinkti %1 trivialūs atnaujinimai" msgstr[3] "Pasirinkta %1 trivialių atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2226,7 +2346,7 @@ msgstr[2] "Pasirinkti %1 atnaujinimai" msgstr[3] "Pasirinkta %1 atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" @@ -2235,7 +2355,7 @@ msgstr[2] "%1 svarbūs atnaujinimai" msgstr[3] "%1 svarbių atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" @@ -2244,7 +2364,7 @@ msgstr[2] "Pasirinkti %1 saugumo atnaujinimai" msgstr[3] "Pasirinkta %1 saugumo atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" @@ -2253,7 +2373,7 @@ msgstr[2] "Pasirinkti %1 ydas taisantys atnaujinimai" msgstr[3] "Pasirinkta %1 ydas taisančių atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" @@ -2262,7 +2382,7 @@ msgstr[2] "Pasirinkti %1 patobulinimo atnaujinimai" msgstr[3] "Pasirinkta %1 patobulinimo atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2273,7 +2393,7 @@ msgstr[2] "%1 įdiegti paketai" msgstr[3] "%1 įdiegtų paketų" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "All packages are already installed" msgid "1 available package selected to be installed" @@ -2283,7 +2403,7 @@ msgstr[2] "Visi paketai jau įdiegti" msgstr[3] "Visi paketai jau įdiegti" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" @@ -2292,7 +2412,7 @@ msgstr[2] "%1 trivialūs atnaujinimai, %2 pasirikti" msgstr[3] "%1 trivialių atnaujinimų, %2 pasirikta" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2302,7 +2422,7 @@ msgstr[2] "%1 atnaujinimai, %2 pasirikti" msgstr[3] "%1 atnaujinimų, %2 pasirikta" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" @@ -2311,7 +2431,7 @@ msgstr[2] "%1 svarbūs atnaujinimai, %2 pasirikti" msgstr[3] "%1 svarbių atnaujinimų, %2 pasirikta" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" @@ -2320,7 +2440,7 @@ msgstr[2] "%1 saugumo atnaujinimai, %2 pasirikti" msgstr[3] "%1 saugumo atnaujinimų, %2 pasirikta" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" @@ -2329,7 +2449,7 @@ msgstr[2] "%1 ydas taisantys atnaujinimai, %2 pasirikti" msgstr[3] "%1 ydas taisančių atnaujinimų, %2 pasirikta" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" @@ -2338,7 +2458,7 @@ msgstr[2] "%1 patobulinimo atnaujinimai, %2 pasirikti" msgstr[3] "%1 patobulinimo atnaujinimų, %2 pasirikta" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" @@ -2347,7 +2467,7 @@ msgstr[2] "%1 užblokuoti atnaujinimai" msgstr[3] "%1 užblokuotų atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2358,7 +2478,7 @@ msgstr[2] "%1 įdiegti paketai" msgstr[3] "%1 įdiegtų paketų" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2369,7 +2489,7 @@ msgstr[2] "Yra %1 paketai" msgstr[3] "Yra %1 paketų" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" @@ -2378,292 +2498,511 @@ msgstr[2] "%1 nežinomi atnaujinimai" msgstr[3] "%1 nežinomų atnaujinimų" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 #, fuzzy #| msgid "No restart is necessary for this update" msgid "No restart is necessary" msgstr "Po šio atnaujinimo nereikia iš naujo paleisti kompiuterio" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 #, fuzzy #| msgid "You need to restart the application" msgid "You will be required to restart this application" msgstr "Turite paleisti programą iš naujo" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You will be required to log out and back in" msgstr "Turite išsiregistruoti ir prisiregistruoti iš naujo" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 #, fuzzy #| msgid "No restart is required" msgid "A restart will be required" msgstr "Nereikia paleisti sistemos iš naujo" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." msgstr "" "Po šio atnaujinimo turėsite išsiregistruoti ir prisiregistruoti iš naujo" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "No restart is required" msgid "A restart will be required due to a security update." msgstr "Nereikia paleisti sistemos iš naujo" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Nereikia paleisti sistemos iš naujo" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "No restart is required" msgid "A restart is required" msgstr "Nereikia paleisti sistemos iš naujo" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in" msgstr "Turite išsiregistruoti ir prisiregistruoti iš naujo" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Turite paleisti programą iš naujo" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in to remain secure." msgstr "Turite išsiregistruoti ir prisiregistruoti iš naujo" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "No restart is required" msgid "A restart is required to remain secure." msgstr "Nereikia paleisti sistemos iš naujo" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabilus" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Nestabilus" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testavimas" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "Paieškos filtras neteisingas" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "Grupės sąrašas buvo neteisingas" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Paketų atmintinės nėra" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "Paketas nėra įdiegtas" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgctxt "The transaction state" #| msgid "Generating package lists" msgid "A newer package exists" msgstr "Generuojami paketų sąrašai" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "Failed to install package" msgid "Could not find package" msgstr "Nepavyko įdiegti paketų" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "Paketas jau įdiegtas" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Paketo atsisiuntimas nepavyko" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Šiam veiksmui atlikti neturite reikiamų teisių." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Nepavyko pašalinti apsaugoto sistemos paketo" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Nepavyko patikrinti paketo parašo." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." msgstr "Grupės sąrašas buvo neteisingas" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "Failas nebuvo įdiegtas" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Failed to install package" msgid "Could not talk to packagekitd." msgstr "Nepavyko įdiegti paketų" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Nežinoma klaida" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "Jūs turite %1" +msgid "" +"The following file is required:
                                    • %2
                                    Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                    • %2
                                    Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, kde-format -msgid "
                                    And another update" -msgid_plural "
                                    And %1 more updates" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +#, fuzzy +#| msgid "Failed to install package" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Įdiegti" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to start search file transaction" +msgstr "Paieška pagal savybę „pateikia“ nepavyko" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The %1 package already provides this file" +msgstr "Paketas jau įdiegtas" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Nepavyko įdiegti failo" +msgstr[1] "Nepavyko įdiegti failų" +msgstr[2] "Nepavyko įdiegti failų" +msgstr[3] "Nepavyko įdiegti failų" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +#, fuzzy +#| msgid "The following package will be installed:" +#| msgid_plural "The following packages will be installed:" +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Bus įdiegtas šis paketas:" +msgstr[1] "Bus įdiegti šie paketai:" +msgstr[2] "Bus įdiegti šie paketai:" +msgstr[3] "Bus įdiegti šie paketai:" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Nepavyko rasti nurodyto failo" +msgstr[1] "Nepavyko rasti nurodyto failo" +msgstr[2] "Nepavyko rasti nurodyto failo" +msgstr[3] "Nepavyko rasti nurodyto failo" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Nepavyko rasto paketo" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Jums prieinami %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                    And another update" +msgid_plural "
                                    And %1 more updates" msgstr[0] "
                                    Ir kitą atnaujinimą" msgstr[1] "
                                    Ir dar %1 atnaujinimą" msgstr[2] "
                                    Ir dar %1 atnaujinimus" msgstr[3] "
                                    Ir dar %1 atnaujinimų" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Peržiūrėti atnaujinimą" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Ne dabar" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Daugiau neklausti" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Atnaujinimai diegiami automatiškai" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Automatiškai diegiami saugumo atnaujinimai." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Sistemos atnaujinimas baigtas sėkmingai." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Programinės įrangos atnaujinimas nepavyko." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +#, fuzzy +#| msgid "The following package will be removed:" +#| msgid_plural "The following packages will be removed:" +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Šis paketas bus pašalintas:" +msgstr[1] "Šie paketai bus pašalinti:" +msgstr[2] "Šie paketai bus pašalinti:" +msgstr[3] "Šie paketai bus pašalinti:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Ar norite įdiegti šį failą?" +msgstr[1] "Ar norite įdiegti šiuos failus?" +msgstr[2] "Ar norite įdiegti šiuos failus?" +msgstr[3] "Ar norite įdiegti šiuos failus?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Pradėti atnaujinimą dabar" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Distributyvo atnaujinimas baigtas." +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "Failed to start resolve transaction" +msgstr "Gauti seni veiksmai" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Gauti seni veiksmai" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Įvykos nežinoma klaida" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                                    • %2
                                    Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                    • %2
                                    Do you want to search " +"for and install these packages now?" +msgstr[0] "Ar norite įdiegti šį failą?" +msgstr[1] "Ar norite įdiegti šiuos failus?" +msgstr[2] "Ar norite įdiegti šiuos failus?" +msgstr[3] "Ar norite įdiegti šiuos failus?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +#, fuzzy +#| msgid "Failed to install package" +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Įdiegti" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Paketas jau įdiegtas" +msgstr[1] "Paketas jau įdiegtas" +msgstr[2] "Paketas jau įdiegtas" +msgstr[3] "Paketas jau įdiegtas" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Nepavyko įdiegti paketų" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "Could not find %1" +msgstr "Nepavyko įdiegti paketų" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2688,222 +3027,326 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt ir kiti dalykai" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Veiksmai" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Refresh Packages List" -msgid "Refresh package list" -msgstr "Atnaujinti paketų sąrašą" +#| msgid "" +#| "An additional program is required to open this type of file:
                                    %1
                                    Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Šio tipo failui:
                                    %1
                                    atverti reikia papildomos programos. Ar norite " +"dabar ieškoti programos, kuria galėsite atverti šio tipo failus?" +msgstr[1] "" +"Šio tipo failui:
                                    %1
                                    atverti reikia papildomos programos. Ar norite " +"dabar ieškoti programos, kuria galėsite atverti šio tipo failus?" +msgstr[2] "" +"Šio tipo failui:
                                    %1
                                    atverti reikia papildomos programos. Ar norite " +"dabar ieškoti programos, kuria galėsite atverti šio tipo failus?" +msgstr[3] "" +"Šio tipo failui:
                                    %1
                                    atverti reikia papildomos programos. Ar norite " +"dabar ieškoti programos, kuria galėsite atverti šio tipo failus?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy -#| msgid "Show Updates" -msgid "Show messages" -msgstr "Rodyti atnaujinimus" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "Slėpti šį ženkliuką" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Paketas: %1" -msgstr[1] "Paketai: %1" -msgstr[2] "Paketai: %1" -msgstr[3] "Paketai: %1" +#| msgid "Failed to install package" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format -#| msgctxt "The transaction state" -#| msgid "Waiting for package manager lock" -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" -msgstr[0] "Laukiama paketų tvarkytuvės užrakto" -msgstr[1] "Laukiama paketų tvarkytuvės užrakto" -msgstr[2] "Laukiama paketų tvarkytuvės užrakto" -msgstr[3] "Laukiama paketų tvarkytuvės užrakto" +#| msgid "Failed to install package" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 #, fuzzy -#| msgid "The software update failed." -msgid "The system update has completed" -msgstr "Programinės įrangos atnaujinimas nepavyko." +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Ieškoti" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 -msgctxt "Restart the computer" -msgid "Restart" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Paieška pagal savybę „pateikia“ nepavyko" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Programa, galinti atverti šio tipo failą" +msgstr[1] "Programa, galinti atverti šio tipo failą" +msgstr[2] "Programos, galinčios atverti šio tipo failą" +msgstr[3] "Programos, galinčios atverti šio tipo failą" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" -msgstr "%1% - %2" +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Nepavyko rasti naujų programų, kurios galėtų apdoroti šio tipo failus" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "%1" +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Nepavyko rasti programinės įrangos" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Šis atvejis nepalaikomas jūsų programinės sąsajos, arba tai – ne failas." +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Neįmanoma įdiegti" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "KPackageKit nustatymai" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Įdiegti" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Kas valandą" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Ar norite įdiegti šį failą?" +msgstr[1] "Ar norite įdiegti šiuos failus?" +msgstr[2] "Ar norite įdiegti šiuos failus?" +msgstr[3] "Ar norite įdiegti šiuos failus?" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Kas dieną" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "įdiegti?" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Kas savaitę" +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Failas nebuvo įdiegtas" +msgstr[1] "Failai nebuvo įdiegti" +msgstr[2] "Failai nebuvo įdiegti" +msgstr[3] "Failai nebuvo įdiegti" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Kas mėnesį" +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Failas buvo sėkmingai įdiegtas" +msgstr[1] "Failai buvo sėkmingai įdiegti" +msgstr[2] "Failai buvo sėkmingai įdiegti" +msgstr[3] "Failai buvo sėkmingai įdiegti" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Niekada" +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Įvyko klaida" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Tik saugumo" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                    • %2
                                    Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                    • %2
                                    Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Visi atnaujinimai" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Programai reikia naujo mime tipo" +msgstr[1] "Programai reikia naujų mime tipų" +msgstr[2] "Programai reikia naujų mime tipų" +msgstr[3] "Programai reikia naujų mime tipų" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Jokio" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Programai reikia naujo mime tipo" +msgstr[1] "Programai reikia naujų mime tipų" +msgstr[2] "Programai reikia naujų mime tipų" +msgstr[3] "Programai reikia naujų mime tipų" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Šiam veiksmui atlikti neturite reikiamų teisių." +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Programai reikia naujo mime tipo" +msgstr[1] "Programai reikia naujų mime tipų" +msgstr[2] "Programai reikia naujų mime tipų" +msgstr[3] "Programai reikia naujų mime tipų" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Nepavyko nustatyti originalių duomenų" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -#, fuzzy -#| msgid "The following package will be removed:" -#| msgid_plural "The following packages will be removed:" -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Šis paketas bus pašalintas:" -msgstr[1] "Šie paketai bus pašalinti:" -msgstr[2] "Šie paketai bus pašalinti:" -msgstr[3] "Šie paketai bus pašalinti:" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" msgstr[0] "Ar norite įdiegti šį failą?" msgstr[1] "Ar norite įdiegti šiuos failus?" msgstr[2] "Ar norite įdiegti šiuos failus?" -msgstr[3] "Ar norite įdiegti šiuos failus?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -#, fuzzy -#| msgid "Failed to install package" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Nepavyko įdiegti paketų" -msgstr[1] "Nepavyko įdiegti paketų" -msgstr[2] "Nepavyko įdiegti paketų" -msgstr[3] "Nepavyko įdiegti paketų" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "Nepavyko įdiegti paketų" -msgstr[1] "Nepavyko įdiegti paketų" -msgstr[2] "Nepavyko įdiegti paketų" -msgstr[3] "Nepavyko įdiegti paketų" +msgstr[3] "Ar norite įdiegti šiuos failus?" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Įdiegti" +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 +#: SmartIcon/PkInstallGStreamerResources.cpp:167 #, fuzzy #| msgid "Failed to search for provides" -msgid "Failed to start search file transaction" +msgid "Failed to search for plugin" msgstr "Paieška pagal savybę „pateikia“ nepavyko" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "Paketas jau įdiegtas" +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file name could not be found in any software source" +msgstr "Nepavyko rasti nurodyto failo" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Veiksmai" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy -#| msgid "The following package will be installed:" -#| msgid_plural "The following packages will be installed:" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Bus įdiegtas šis paketas:" -msgstr[1] "Bus įdiegti šie paketai:" -msgstr[2] "Bus įdiegti šie paketai:" -msgstr[3] "Bus įdiegti šie paketai:" +#| msgid "Refresh Packages List" +msgid "Refresh package list" +msgstr "Atnaujinti paketų sąrašą" -#: KPackageKit/KpkInstallProvideFile.cpp:116 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Nepavyko rasti nurodyto failo" -msgstr[1] "Nepavyko rasti nurodyto failo" -msgstr[2] "Nepavyko rasti nurodyto failo" -msgstr[3] "Nepavyko rasti nurodyto failo" +#| msgid "Show Updates" +msgid "Show messages" +msgstr "Rodyti atnaujinimus" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "Slėpti šį ženkliuką" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paketas: %1" +msgstr[1] "Paketai: %1" +msgstr[2] "Paketai: %1" +msgstr[3] "Paketai: %1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, fuzzy, kde-format +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "Laukiama paketų tvarkytuvės užrakto" +msgstr[1] "Laukiama paketų tvarkytuvės užrakto" +msgstr[2] "Laukiama paketų tvarkytuvės užrakto" +msgstr[3] "Laukiama paketų tvarkytuvės užrakto" -#: KPackageKit/KpkInstallProvideFile.cpp:118 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 #, fuzzy -#| msgid "Failed to install package" -msgid "Failed to find package" -msgstr "Nepavyko įdiegti paketų" +#| msgid "The software update failed." +msgid "The system update has completed" +msgstr "Programinės įrangos atnaujinimas nepavyko." + +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Ne dabar" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 #, fuzzy #| msgid "Failed to install package" msgid "A program wants to remove a file" @@ -2913,16 +3356,17 @@ msgstr[2] "Nepavyko įdiegti paketų" msgstr[3] "Nepavyko įdiegti paketų" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "Nepavyko įdiegti paketų" +msgstr[1] "Nepavyko įdiegti paketų" +msgstr[2] "Nepavyko įdiegti paketų" +msgstr[3] "Nepavyko įdiegti paketų" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Šis failas bus pašalintas:" @@ -2930,7 +3374,7 @@ msgstr[2] "Šie failai bus pašalinti:" msgstr[3] "Šie failai bus pašalinti:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" @@ -2944,12 +3388,12 @@ msgstr[2] "Ar norite įdiegti šiuos failus?" msgstr[3] "Ar norite įdiegti šiuos failus?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Ieškoti" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 #, fuzzy #| msgid "The following package will be removed:" #| msgid_plural "The following packages will be removed:" @@ -2960,7 +3404,7 @@ msgstr[2] "Šie paketai bus pašalinti:" msgstr[3] "Šie paketai bus pašalinti:" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -2970,234 +3414,222 @@ msgstr[2] "Nepavyko rasti nurodyto failo" msgstr[3] "Nepavyko rasti nurodyto failo" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "Could not find %1" -msgstr "Nepavyko įdiegti paketų" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +#| msgid "" +#| "An additional program is required to open this type of file:
                                    %1
                                    Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                    • %1
                                    • Do you want to search for a program to open this file type now?" msgstr "" +"Šio tipo failui:
                                      %1
                                      atverti reikia papildomos programos. Ar norite " +"dabar ieškoti programos, kuria galėsite atverti šio tipo failus?" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Show Updates" -msgid "Show updates" -msgstr "Rodyti atnaujinimus" - -#: KPackageKit/main.cpp:47 -#, fuzzy -#| msgid "Show Settings" -msgid "Show settings" -msgstr "Rodyti nustatymus" - -#: KPackageKit/main.cpp:48 -#, fuzzy -#| msgctxt "The role of the transaction, in past tense" -#| msgid "Searched for package details" -msgid "Show backend details" -msgstr "Ieškota paketų detalių" - -#: KPackageKit/main.cpp:49 -#, fuzzy -#| msgid "Mime Type Installer" -msgid "Mime type installer" -msgstr "Mime tipų diegiklis" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Programai reikia naujo mime tipo" +msgstr[1] "Programai reikia naujų mime tipų" +msgstr[2] "Programai reikia naujų mime tipų" +msgstr[3] "Programai reikia naujų mime tipų" -#: KPackageKit/main.cpp:50 -#, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "Paketo failas įdiegimui" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 reikia naujo mime tipo" +msgstr[1] "%1 reikia naujų mime tipų" +msgstr[2] "%1 reikia naujų mime tipų" +msgstr[3] "%1 reikia naujų mime tipų" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Mime Type Installer" -msgid "Single file installer" -msgstr "Mime tipų diegiklis" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Ieškoti" -#: KPackageKit/main.cpp:52 -#, fuzzy -#| msgctxt "The role of the transaction, in present tense" -#| msgid "Searching by package name" -msgid "Single package remover" -msgstr "Ieškoti paketo pavadinimo" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Nepavyko rasti naujų programų, kurios galėtų apdoroti šio tipo failus" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Paketo failas įdiegimui" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Nepavyko rasti programinės įrangos" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                      Do you want to install this catalog?

                                      • %2
                                      " msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Šis atvejis nepalaikomas jūsų programinės sąsajos, arba tai – ne failas." -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Neįmanoma įdiegti" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Įdiegti" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" +"

                                      Do you want to install these catalogs?

                                      • %2
                                      " msgstr[0] "Ar norite įdiegti šį failą?" msgstr[1] "Ar norite įdiegti šiuos failus?" msgstr[2] "Ar norite įdiegti šiuos failus?" msgstr[3] "Ar norite įdiegti šiuos failus?" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "įdiegti?" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Įdiegti dabar" +msgstr[1] "Įdiegti dabar" +msgstr[2] "Įdiegti dabar" +msgstr[3] "Įdiegti dabar" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Failas nebuvo įdiegtas" -msgstr[1] "Failai nebuvo įdiegti" -msgstr[2] "Failai nebuvo įdiegti" -msgstr[3] "Failai nebuvo įdiegti" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Įdiegti" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Nepavyko įdiegti failo" -msgstr[1] "Nepavyko įdiegti failų" -msgstr[2] "Nepavyko įdiegti failų" -msgstr[3] "Nepavyko įdiegti failų" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Šiuo metu naudojama programinė sąsaja nepalaiko paketų įdiegimo." -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Failas buvo sėkmingai įdiegtas" -msgstr[1] "Failai buvo sėkmingai įdiegti" -msgstr[2] "Failai buvo sėkmingai įdiegti" -msgstr[3] "Failai buvo sėkmingai įdiegti" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Ši programinė sąsaja šito nepalaiko" -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Įvyko klaida" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Paketo failas įdiegimui" +msgstr[1] "Paketo failas įdiegimui" +msgstr[2] "Paketo failas įdiegimui" +msgstr[3] "Paketo failas įdiegimui" -#: KPackageKit/KpkInstallPackageName.cpp:47 +#: SmartIcon/PkInstallCatalogs.cpp:148 #, fuzzy -#| msgid "A system restart is required" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Reikia paleisti sistemą iš naujo" -msgstr[1] "Reikia paleisti sistemą iš naujo" -msgstr[2] "Reikia paleisti sistemą iš naujo" -msgstr[3] "Reikia paleisti sistemą iš naujo" +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Nepavyko užbaigti" -#: KPackageKit/KpkInstallPackageName.cpp:50 +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Ar norite įdiegti šį failą?" -msgstr[1] "Ar norite įdiegti šiuos failus?" -msgstr[2] "Ar norite įdiegti šiuos failus?" -msgstr[3] "Ar norite įdiegti šiuos failus?" +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Šaltinio paketo įdiegti neįmanoma" -#: KPackageKit/KpkInstallPackageName.cpp:57 +#: SmartIcon/PkInstallCatalogs.cpp:206 #, fuzzy -#| msgid "Failed to install package" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Nepavyko įdiegti paketų" -msgstr[1] "Nepavyko įdiegti paketų" -msgstr[2] "Nepavyko įdiegti paketų" -msgstr[3] "Nepavyko įdiegti paketų" +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "Failed to start setup transaction" +msgstr "Gauti seni veiksmai" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "KPackageKit nustatymai" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Kas valandą" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Kas dieną" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "Nepavyko įdiegti paketų" -msgstr[1] "Nepavyko įdiegti paketų" -msgstr[2] "Nepavyko įdiegti paketų" -msgstr[3] "Nepavyko įdiegti paketų" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Kas savaitę" -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Įdiegti" +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Kas mėnesį" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Niekada" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:67 #, fuzzy -#| msgctxt "The role of the transaction, in past tense" -#| msgid "Got old transactions" -msgid "Failed to start resolve transaction" -msgstr "Gauti seni veiksmai" +#| msgid "Security Only" +msgid "Security only" +msgstr "Tik saugumo" -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "Visi atnaujinimai" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                      %1
                                      Do " -"you want to search for a program to open this file type now?" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Jokio" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Nepavyko nustatyti originalių duomenų" + +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" msgstr "" -"Šio tipo failui:
                                      %1
                                      atverti reikia papildomos programos. Ar norite " -"dabar ieškoti programos, kuria galėsite atverti šio tipo failus?" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Programai reikia naujo mime tipo" -msgstr[1] "Programai reikia naujų mime tipų" -msgstr[2] "Programai reikia naujų mime tipų" -msgstr[3] "Programai reikia naujų mime tipų" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Show Updates" +msgid "Show updates" +msgstr "Rodyti atnaujinimus" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 reikia naujo mime tipo" -msgstr[1] "%1 reikia naujų mime tipų" -msgstr[2] "%1 reikia naujų mime tipų" -msgstr[3] "%1 reikia naujų mime tipų" +#: KPackageKit/main.cpp:47 +#, fuzzy +#| msgid "Show Settings" +msgid "Show settings" +msgstr "Rodyti nustatymus" -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Ieškoti" +#: KPackageKit/main.cpp:48 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Searched for package details" +msgid "Show backend details" +msgstr "Ieškota paketų detalių" -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Paieška pagal savybę „pateikia“ nepavyko" +#: KPackageKit/main.cpp:49 +#, fuzzy +#| msgid "Mime Type Installer" +msgid "Mime type installer" +msgstr "Mime tipų diegiklis" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Programa, galinti atverti šio tipo failą" -msgstr[1] "Programa, galinti atverti šio tipo failą" -msgstr[2] "Programos, galinčios atverti šio tipo failą" -msgstr[3] "Programos, galinčios atverti šio tipo failą" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "Paketo failas įdiegimui" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Nepavyko rasti naujų programų, kurios galėtų apdoroti šio tipo failus" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Mime Type Installer" +msgid "Single file installer" +msgstr "Mime tipų diegiklis" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Nepavyko rasti programinės įrangos" +#: KPackageKit/main.cpp:52 +#, fuzzy +#| msgctxt "The role of the transaction, in present tense" +#| msgid "Searching by package name" +msgid "Single package remover" +msgstr "Ieškoti paketo pavadinimo" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Paketo failas įdiegimui" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" @@ -3209,7 +3641,7 @@ msgid "Your emails" msgstr "Jūsų e. laiškai" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3218,13 +3650,13 @@ msgid "Select all updates" msgstr "Saugumo atnaujinimai" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Atnaujinti" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3262,181 +3694,183 @@ msgid "Required by" msgstr "Reikalaujamas paketo" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Pridėti ir šalinti programinę įrangą" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Ieškoti paketų" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtrai" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Visi paketai" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit – operacija" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Veiksmai" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Veiksmas" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Paketai atsisiunčiami" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Biblioteka, atliekanti funkciją foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TekstoEtiketė" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Veiksmas" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TekstoEtiketė" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Repozitorijos pavadinimas:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Parašo URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Parašo vartotojo identifikatorius:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Parašo identifikatorius:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Ar atpažįstate šį vartotoją, ar pasitikite šiuo raktu?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Ar pasitikite šių paketų kilmės šaltiniu?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Prieš tęsiant prašome perskaityti šią svarbią informaciją:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Nustatymai" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit nustatymai" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Tikrinti, ar yra atnaujinimų:" +#, fuzzy +#| msgid "Show Settings" +msgid "Update settings" +msgstr "Rodyti nustatymus" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automatiškai diegti:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Tikrinti, ar yra atnaujinimų:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Išmoningas dėklo ženkliukas" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Automatiškai diegti:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Perspėti, kai yra atnaujinimų" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Perspėti, kai užbaigiami ilgai trukę veiksmai" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Paketų kilmė" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Rodyti išriktavimo ir programavimo paketų kilmę" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 #, fuzzy #| msgid "Package Name" msgid "Backend name:" @@ -3444,7 +3878,7 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package Name" msgid "backend name here" @@ -3452,13 +3886,21 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 #, fuzzy #| msgid "Package Name" msgid "Backend author:" msgstr "Paketo pavadinimas" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "Ieškoti pagal a&prašymą" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 #, fuzzy @@ -3466,263 +3908,271 @@ msgid "backend author name here" msgstr "Paketo pavadinimas" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package Name" +msgid "backend description here" +msgstr "Paketo pavadinimas" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Paketo diegimas užblokuotas" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Tik laisvos programos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Atnaujinimai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Updated packages" msgid "UpdatePackage" msgstr "Atnaujinti paketai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 #, fuzzy #| msgid "Repository" msgid "GetRepositoryList" msgstr "Saugykla" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Atnaujinti" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Installed packages" msgid "InstallPackage" msgstr "Įdiegti paketai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 #, fuzzy #| msgid "Repository name:" msgid "RepositoryEnable" msgstr "Repozitorijos pavadinimas:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Updated system" msgid "UpdateSystem" msgstr "Atnaujinta sistema" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Removed packages" msgid "RemovePackage" msgstr "Pašalinti paketai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Repozitorijos pavadinimas:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgctxt "Search for a new mime type" #| msgid "Search" msgid "SearchName" msgstr "Ieškoti" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Priklauso nuo" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got what provides" msgid "WhatProvides" msgstr "Gauta kas suteikia" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgctxt "The role of the transaction, in present tense" #| msgid "Searching details" msgid "SearchDetails" msgstr "Iškoma detalių" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got requires" msgid "GetRequires" msgstr "Turi reikalaujamų" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Visi paketai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Searched groups" msgid "SearchGroup" msgstr "Ieškota grupių" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got update detail" msgid "GetUpdateDetail" msgstr "Turi atnaujinimo detalių" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgctxt "Search for a new mime type" #| msgid "Search" msgid "SearchFile" msgstr "Ieškoti" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Aprašymas" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Smulkiau" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Resolved" msgid "Resolve" msgstr "Nustatyta" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Įdiegti" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Įdiegti" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Installed packages" msgid "SimulateInstallPackages" msgstr "Įdiegti paketai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Removed packages" msgid "SimulateRemovePackages" msgstr "Pašalinti paketai" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Updated packages" diff -Nru kpackagekit-0.5.4/po/nb/kpackagekit.po kpackagekit-0.6.0/po/nb/kpackagekit.po --- kpackagekit-0.5.4/po/nb/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/nb/kpackagekit.po 2010-01-30 09:02:43.000000000 +0000 @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: KDE 4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2008-11-26 17:46+0100\n" "Last-Translator: Karl Ove Hufthammer \n" "Language-Team: Norwegian Bokmål \n" @@ -28,11 +28,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "" @@ -89,26 +89,26 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" @@ -188,28 +188,24 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" msgstr "" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "" @@ -221,244 +217,253 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "" msgstr[1] "" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:177 -msgid "Current backend does not support installing packages." +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "" @@ -478,7 +483,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "" @@ -491,13 +496,13 @@ msgid "Version" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "" @@ -547,1367 +552,1375 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" msgstr "" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." msgstr "" -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" "Please close some programs or restart your computer." msgstr "" -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." msgstr "" -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." msgstr "" -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." msgstr "" -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." msgstr "" -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." msgstr "" -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "" -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." msgstr "" -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." msgstr "" -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." msgstr "" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." msgstr "" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." msgstr "" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "" -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "" -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." msgstr "" -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "" -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." msgstr "" -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." msgstr "" -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -1915,70 +1928,70 @@ msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -1986,56 +1999,56 @@ msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2043,704 +2056,912 @@ msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "" -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 -#, kde-format -msgid "You have %1" -msgstr "" - -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "
                                      And another update" -msgid_plural "
                                      And %1 more updates" +msgid "" +"The following file is required:
                                      • %2
                                      Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                      • %2
                                      Do you want to search " +"for these now?" msgstr[0] "" msgstr[1] "" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkUpdateIcon.cpp:191 -msgid "Do not ask again" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:235 -msgid "Updates are being automatically installed." +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:262 -msgid "Security updates are being automatically installed." +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:289 -msgid "System update was successful." +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:298 -msgid "The software update failed." -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkDistroUpgrade.cpp:68 -msgid "Start upgrade now" -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkDistroUpgrade.cpp:111 -msgid "Distribution upgrade finished. " -msgstr "" +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 -msgid "KPackageKit" +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" msgstr "" -#: SmartIcon/main.cpp:36 -msgid "KPackageKit Tray Icon" +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" msgstr "" -#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 -msgid "Daniel Nicoletti" -msgstr "" +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                      And another update" +msgid_plural "
                                      And %1 more updates" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/main.cpp:41 -msgid "Trever Fischer" +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" msgstr "" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "Adrien Bustany" +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" msgstr "" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "libpackagekit-qt and other stuff" +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 -msgid "Refresh package list" +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 -msgid "Show messages" +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" msgstr[0] "" msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkInstallProvideFile.cpp:61 #, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" msgstr[0] "" msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 -msgid "The system update has completed" +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 -msgctxt "Restart the computer" -msgid "Restart" +#: SmartIcon/KpkDistroUpgrade.cpp:113 +msgid "Distribution upgrade finished. " msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                      • %2
                                      Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                      • %2
                                      Do you want to search " +"for and install these packages now?" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "" +msgstr[1] "" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" msgstr "" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "" +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" msgstr "" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" msgstr "" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" msgstr "" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" msgstr "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" msgstr "" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" msgstr "" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" msgstr "" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" msgstr "" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +msgid "" +"The following plugin is required:
                                      • %2
                                      Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                      • %2
                                      Do you want to " +"search for these now?" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallGStreamerResources.cpp:104 #, kde-format -msgid "Could not find %1" -msgstr "" +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:46 -msgid "Show updates" +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" msgstr "" -#: KPackageKit/main.cpp:47 -msgid "Show settings" +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" msgstr "" -#: KPackageKit/main.cpp:48 -msgid "Show backend details" +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" msgstr "" -#: KPackageKit/main.cpp:49 -msgid "Mime type installer" +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" msgstr "" -#: KPackageKit/main.cpp:50 -msgid "Package name installer" +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" msgstr "" -#: KPackageKit/main.cpp:51 -msgid "Single file installer" +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" msgstr "" -#: KPackageKit/main.cpp:52 -msgid "Single package remover" +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" msgstr "" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, kde-format +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, kde-format +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallMimeType.cpp:46 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format msgid "" -"An additional program is required to open this type of file:
                                      %1
                                      Do " -"you want to search for a program to open this file type now?" +"An additional program is required to open this type of file:
                                      • %1
                                      • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 +#: SmartIcon/PkInstallMimeTypes.cpp:57 msgid "A program requires a new mime type" msgid_plural "A program requires new mime types" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallMimeType.cpp:57 +#: SmartIcon/PkInstallMimeTypes.cpp:61 #, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallMimeType.cpp:64 +#: SmartIcon/PkInstallMimeTypes.cpp:68 msgctxt "Search for a new mime type" msgid "Search" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                        Do you want to install this catalog?

                                        • %2
                                        " +msgid_plural "" +"

                                        Do you want to install these catalogs?

                                        • %2
                                        " msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Ikke støttet" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Klarte ikke å åpne" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "" + +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "" + +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "" + +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "" + +#: KPackageKit/main.cpp:48 +msgid "Show backend details" +msgstr "" + +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "" + +#: KPackageKit/main.cpp:50 +msgid "Package name installer" +msgstr "" + +#: KPackageKit/main.cpp:51 +msgid "Single file installer" +msgstr "" + +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" msgstr "" #: rc.cpp:1 @@ -2753,19 +2974,19 @@ msgid "Your emails" msgstr "" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2803,388 +3024,390 @@ msgid "Required by" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" +msgid "Transaction" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 -msgid "Actions" -msgstr "" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:80 -msgid "TextLabel" +msgid "Actions" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" +msgid "Update settings" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" +msgid "Check for updates:" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" +msgid "Automatically install:" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "" diff -Nru kpackagekit-0.5.4/po/nds/kpackagekit.po kpackagekit-0.6.0/po/nds/kpackagekit.po --- kpackagekit-0.5.4/po/nds/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/nds/kpackagekit.po 2010-01-30 09:02:48.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-09-27 02:01+0200\n" "Last-Translator: Sönke Dibbern \n" "Language-Team: Low Saxon \n" @@ -31,11 +31,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Enkelheiten" @@ -104,26 +104,26 @@ "Dat is anraadt, dat Du Dien Reekner bi't Opfrischen na't Stroomnett " "tokoppelt lettst." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Distributschoon-Opfrischen afslaten" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Distributschoon-Opfrischen mit Kode %1 beendt." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Distributschoon-Opfrischen lett sik nich starten." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "Distributschoon-Opfrischen is kort na en normaal Start afstört." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Distributschoon-Opfrischen is mit en nich begäng Fehler fehlslaan." @@ -211,28 +211,24 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Paketnaam" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Tohuussiet" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Lizenz" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Koppel" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Tohuussiet" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Grött" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Keen Dateien funnen" @@ -244,235 +240,248 @@ msgid "KDE interface for managing software" msgstr "KDE-Koppelsteed för de Software-Pleeg" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Söken" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "All Paketen" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "List mit de Ännern" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Koppel:" msgstr[1] "Koppeln:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Afbreken" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Na &Naam söken" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Na &Dateinaam söken" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Na &Beschrieven söken" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Ännern nakieken" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Sammeln" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Bloots Sammeln" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Sammeln utsluten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installeert" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Bloots installeert" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Bloots verföögbor" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Keen Filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Utwickeln" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Bloots Utwickeln" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Bloots Ennbruker-Dateien" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafik" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Bloots Grafik" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Bloots Text" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Free" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Bloots fre'e Programmen" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Bloots nich-fre'e Programmen" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architekturen" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Bloots normaal Architekturen" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Bloots nich-normaal Architekturen" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Born" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Bloots Bornkode" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Bloots \"nich-Bornkode\"" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Ünnerpaketen versteken" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Bloots een Paket wiesen, keen Ünnerpaketen" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Bloots niegste Paketen" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Bloots niegst verföögbor Paketen wiesen" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Ansicht as Koppeln" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Paketen as Koppeln na ehr Status wiesen" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Dit Paket warrt installeert:" msgstr[1] "Disse Paketen warrt installeert:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Nu installeren" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Dit Paket warrt wegmaakt::" msgstr[1] "Disse Paketen warrt wegmaakt:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Nu wegmaken" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Dit Paket warrt wegdaan un installeert:" msgstr[1] "Disse Paketen warrt wegdaan un installeert:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Nu bruken" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Paketlisten laat sik nich opfrischen" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Dat aktuelle Hülpprogramm ünnerstütt dat Wegdoon vun Paketen nich." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit-Fehler" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Paketlisten laat sik nich opfrischen" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Dat aktuelle Hülpprogramm ünnerstütt dat Installeren vun Paketen nich." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Paket lett sik nich wegmaken" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Paket lett sik nich installeren" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Paket lett sik nich wegmaken" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Versteken" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 #, fuzzy #| msgid "Allows you to hide the window but keeps running transaction task" msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Lett Di dat Finster versteken bides de Transakschoon wiederlöppt" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                                        Installing unsigned packages can compromise your system, as it is " @@ -488,11 +497,11 @@ "vun en Born kummt, den Du troen deist. Büst Du seker, Du wullt dat " "Installeren wiedermaken?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Nich ünnerschreven Software installeren" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "En Medienwessel deit noot" @@ -512,7 +521,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Lizenzövereenkamen deit noot" @@ -525,13 +534,13 @@ msgid "Version" msgstr "Verschoon" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Afbreken" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "In %1 afslaten." @@ -581,807 +590,934 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Programmsignatuur deit noot" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Nich begäng Status" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "An't Töven, dat de Deenst starten deit" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "An't Töven op anner Opgaven" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Opgaav warrt utföhrt" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Bi to anfragen" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Informatschonen warrt haalt" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Paketen warrt wegmaakt" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Paketen warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Paketen warrt installeert" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Software-List warrt opfrischt" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Paketen warrt opfrischt" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Paketen warrt oprüümt" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "An't Pröven op överhaalt Paketen" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Afhangigkeiten warrt oplööst" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Ünnerschriften warrt pröövt" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "An't Torüchdreihen" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Ännern warrt utprobeert" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Ännern warrt inspeelt" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Daten warrt anfraagt" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Afslaten" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Bi to afbreken" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Archiev-Informatschonen warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Paketlist warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Dateilisten warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Ännernlist warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Koppeln warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Opfrisch-Informatschonen warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Dateien warrt nieg inpackt" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Twischenspieker warrt laadt" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Installeert Programmen warrt dörkeken" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Paketlisten warrt opstellt" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "An't Töven op Paketpleger-Slott" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for authentication" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "An't Töven op Identiteetprööv" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating the list of running applications" +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "De List mit lopen Programmen warrt opfrischt" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for applications currently in use" +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "An't Kieken na Programmen, de opstunns in Bruuk sünd" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for libraries currently in use" +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "An't Kieken na Bibliotheken, de opstunns in Bruuk sünd" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Dateien warrt nieg inpackt" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Daallaadt" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Opfrischt" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installeert" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Wegmaakt" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Oprüümt" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Överhaalt" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Nich begäng Rull" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Afhangigkeiten warrt haalt" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Opfrisch-Enkelheiten warrt haalt" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Enkelheiten warrt haalt" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Vörutsetten warrt haalt" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Opfrischen warrt haalt" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Enkelheiten warrt söcht" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Datei warrt söcht" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Koppeln warrt söcht" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "An't Söken na Paketnaam" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "An't Wegmaken" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Bi to installeren" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Datei warrt installeert" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Paket-Twischenspieker warrt opfrischt" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Paketen warrt opfrischt" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Systeem warrt opfrischt" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Bi to afbreken" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "An't Torüchdreihen" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "List vun Archiven warrt haalt" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Archiev warrt anmaakt" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Archievdaten warrt fastleggt" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "An't Oplösen" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Dateilist warrt haalt" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Praatstellen warrt haalt" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Ünnerschrift warrt installeert" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Paketlisten warrt haalt" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "EULA annehmen" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Paketen warrt daallaadt" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Distributschoon-Opfrischinformatschonen warrt haalt" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Kategorien warrt haalt" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Ole Vörgäng warrt haalt" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Installeren vun Dateien warrt simuleert" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Installeren warrt simuleert" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Wegmaken warrt simuleert" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Opfrischen warrt simuleert" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Nich begäng Rull-Typ" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Afhangigkeiten funnen" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Opfrisch-Enkelheiten funnen" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Enkelheiten funnen" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Vörutsetten funnen" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Opfrischen funnen" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Na Paket-Enkelheiten söcht" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Na Datei söcht" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Na Koppeln söcht" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Paketnaam söcht" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Paketen wegmaakt" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Paketen installeert" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Lokaal Dateien installeert" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Paket-Twischenspieker opfrischt" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Paketen opfrischt" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Systeem opfrischt" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Afbraken" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Torüchdreiht" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "List vun Archiven funnen" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Archiev anmaakt" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Archievdaten fastleggt" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Oplööst" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Dateilist funnen" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Praatstellen funnen" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Ünnerschrift installeert" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Paketlist funnen" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "EULA annahmen" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Paketen daallaadt" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Distributschoon-Opfrischen funnen " -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Kategorien funnen" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Ole Vörgäng funnen" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Installeren vun Dateien simuleert" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Installeren simuleert" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Wegmaken simuleert" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Opfrischen simuleert" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Keen Nettwarkverbinnen verföögbor" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Keen Paket-Twischenspieker verföögbor." -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Nich noog Spieker" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Strang lett sik nich opstellen" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Vun dissen Hülpprogramm nich ünnerstütt" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Dat geev en intern Systeemfehler." -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Keen Sekerheit-Vertroenbetog vörwiest" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Dat Paket is nich installeert." -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Dat Paket lett sik nich finnen." -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Dat Paket is al installeert." -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Dat Paket lett sik nich daalladen." -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "De Koppel lett sik nich finnen." -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "De Koppel-List is leeg." -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Afhangigkeiten leet sik nich oplösen." -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Söökfilter wöör leeg." -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "De Paketkennen wöör leeg" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Vörgang - Fehler" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Programmarchivnaam lett sik nich finnen" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "En schuult Systeempaket lett sik nich wegdoon." -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "De Opgaav wöör afbraken" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "De Opgaav wöör mit Willen afbraken" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Instellendatei lett sik nich lesen." -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Disse Opgaav lett sik nich afbreken." -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Bornpaketen laat sik nich installeren." -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Lizenzövereenkamen fehlslaan" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokaal Dateikonflikt twischen Paketen" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Paketen sünd nich kompatibel." -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +#, fuzzy +#| msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Problem bi't Tokoppeln na en Software-Born" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Torechtmaken fehlslaan" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Afsluten fehlslaan" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Slott lett sik nich fastsetten" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Keen Paketen för't Opfrischen" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Programmarchiv-Instellen laat sik nich schrieven" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokaal Installatschoon fehlslaan" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Leeg GPG-Signatuur" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "GPG-Signatuur fehlt" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Leeg Programmarchiv-Instellen" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Leeg Paketdatei" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Paket-Installatschoon blockeert" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Paket is leeg" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "All Paketen sünd al installeert" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "De angeven Datei lett sik nich finnen." -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Keen anner Spegelservers verföögbor" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Keen Distributschoon-Opfrischendaten verföögbor" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Paket is mit dit Systeem nich kompatibel" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Keen Platz mehr na op de Plaat" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Verlövenprööv fehlslaan" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Opfrischen lett sik nich finnen" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "Cannot install from untrusted orign" +msgid "Cannot install from untrusted origin" msgstr "Installeren vun nich vertroot Born nich mööglich" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "Cannot update from untrusted orign" +msgid "Cannot update from untrusted origin" msgstr "Opfrischen vun nich vertroot Born nich mööglich" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Dateilist lett sik nich halen" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Paket-Afhangigkeiten laat sik nich halen" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +#, fuzzy +#| msgid "Cannot disable orign" +msgid "Cannot disable origin" msgstr "Born lett sik nich utmaken" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Daalladen is fehlslaan" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Paket lett sik nich inrichten" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Paket lett sik nich buen" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Paket lett sik nich installeren" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Paket lett sik nich wegmaken" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Nich begäng Fehler" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1389,7 +1525,7 @@ "Keen Nettwarkverbinnen verföögbor.\n" "Bitte prööv Dien Verbinnen-Instellen un versöök dat denn wedder." -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1397,7 +1533,7 @@ "De Paketlist mutt nieg opstellt warrn.\n" "Normalerwies schull dat Hülpprogramm dat automaatsch doon." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1406,11 +1542,11 @@ "De Deenst för Brukeranfragen hett nich noog Spieker.\n" "Maak bitte anner Programmen to oder start Dien Reekner nieg." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "En Strang för de Brukeranfraag lett sik nich opstellen." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1418,7 +1554,7 @@ "Dat Hülpprogramm ünnerstütt disse Akschoon nich.\n" "Bitte maak en Fehler künnig, dit schull nich vörkamen." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1426,33 +1562,41 @@ "Dat hett en nich verwacht Problem geven.\n" "Bitte maak dissen Fehler künnig un föög en Fehlerbeschrieven bi." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 +#, fuzzy +#| msgid "" +#| "A security trust relationship could not be made with the software orign.\n" +#| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "För den Software-Born lett sik keen Sekerheit-Vertroenbetog opstellen.\n" "Prööv bitte Dien Software ehr Ünnerschrift-Instellen." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Dat Paket, dat Du wegdoon oder opfrischen wullt, is noch nich installeert." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software orign." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Dat Paket, dat Du ännern wullt, lett sik nich op Dien Systeem oder binnen " "jichtenseen Software-Born finnen." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Dat Paket, dat Du installeren wullt, is al installeert." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1460,7 +1604,7 @@ "Dat Paket lett sik nich daalladen\n" "Bitte prööv Dien Nettwarkverbinnen." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1468,17 +1612,22 @@ "De Koppeltyp lett sik nich finnen.\n" "Bitte prööv Dien Koppeln-List, un versöök dat denn nochmaal." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 +#, fuzzy +#| msgid "" +#| "The group list could not be loaded.\n" +#| "Refreshing your cache may help, although this is normally a software " +#| "orign error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "De Koppel-List lett sik nich laden.\n" "Villicht hölpt en Opfrischen vun den Twischenspieker, man normalerwies is " "dat en Fehler binnen den Software-Born." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1486,11 +1635,11 @@ "En Paket-Afhangigkeit lett sik nich finnen.\n" "Mehr Informatschonen laat sik binnen den utföhrlichen Bericht finnen." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "De Söökfilter wöör leeg." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1498,7 +1647,7 @@ "De Paketkennen weer bi't Loosstüern na den Server leeg.\n" "Normalerwies wiest dat op en intern Fehler, maak em bitte künnig." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1506,23 +1655,27 @@ "Dat geev en Fehler bi't Utföhren vun de Akschoon.\n" "Mehr Informatschonen laat sik binnen den utföhrlichen Bericht finnen." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 +#, fuzzy +#| msgid "" +#| "The remote software orign name was not found.\n" +#| "You may need to enable an item in Software Origns." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "De feern Software-Bornnaam lett sik nich finnen.\n" "Villicht muttst Du en Indrag binnen de Software-Borns anmaken." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Dat Wegdoon vun en schuult Systeempaket is nich tolaten." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "De Opgaav wöör ahn Paketinstallatschoon afbraken." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1530,7 +1683,7 @@ "De Opgaav wöör ahn Paketinstallatschoon afbraken.\n" "Dat Hülpprogramm wöör nich püük beendt." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1538,11 +1691,11 @@ "De normaal Paket-Instellendatei lett sik nich opmaken.\n" "Kiek bitte, wat Dien Systeeminstellen gellt." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Nu lett sik de Opgaav nich seker afbreken." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1550,7 +1703,7 @@ "Bornpaketen warrt normalerwies nich op disse Oort installeert.\n" "Prööv bitte de Verwiedern vun de Datei, de Du installeren wullt." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1558,34 +1711,47 @@ "Du hest dat Bruukverlööfnis-Övereenkamen nich tostimmt.\n" "Du muttst dat Övereenkamen tostimmen, wenn Du disse Software bruken wullt." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 +#, fuzzy +#| msgid "" +#| "Two packages provide the same file.\n" +#| "This is usually due to mixing packages for different software origns." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Twee Paketen stellt de sülve Datei praat.\n" "Normalerwies kummt dat vör, wenn Paketen ut verscheden Software-Borns mischt " "warrt." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 +#, fuzzy +#| msgid "" +#| "Multiple packages exist that are not compatible with each other.\n" +#| "This is usually due to mixing packages from different software origns." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Dat gifft en Reeg Paketen, de nich toenanner kompatibel sünd.\n" "Normalerwies kummt dat vör, wenn Paketen ut verscheden Software-Borns mischt " "warrt." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 +#, fuzzy +#| msgid "" +#| "There was a (possibly temporary) problem connecting to a software " +#| "origns.\n" +#| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Dat gifft en (villicht tietwies) Problem bi't Tokoppeln na en Software-" "Born.\n" "Kiek Di bitte den utföhrlichen Fehler an, dor staht mehr Enkelheiten." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1593,7 +1759,7 @@ "Dat Paketpleeg-Hülpprogramm lett sik nich torechtmaken.\n" "Dat kaamt vör, wenn to de sülve Tiet anner Paketpleeg-Warktüüch bruukt warrt." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1601,7 +1767,7 @@ "De Hülpprogramm-Utgaav lett sik nich utmaken.\n" "Dissen Fehler kann Een normalerwies övergahn." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1610,15 +1776,15 @@ "Maak bitte all anner, öller Paketpleeg-Warktüüch to, de Du villicht opmaakt " "hest." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Keen vun de utsöchten Paketen lett sik opfrischen." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "De Programmarchiv-Instellen laat sik nich ännern." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1626,11 +1792,11 @@ "Lokaal Datei lett sik nich installeren.\n" "Mehr Informatschonen laat sik binnen den utföhrlichen Bericht finnen." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "De Paketsignatuur lett sik nich pröven." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1638,11 +1804,11 @@ "De Paketsignatuur fehlt, un dissen Paket warrt nich troot\n" "Dit Paket wöör ahn ünnerschreven GPG-Slötel opstellt." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "De Programmarchiv-Instellen wöör leeg un leet sik nich lesen." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1650,26 +1816,26 @@ "Dat Paket, dat Du installeren wullt, is leeg.\n" "Villicht is de Paketdatei schaadhaftig, oder keen propper Paketdatei." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" "Dien Paketpleegsysteem hett dat Installeren vun dit Paket nich tolaten." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Dat daallaadt Paket is leeg un mutt nochmaal daallaadt warrn." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "All för de Installatschoon utsöcht Paketen sünd al op den Reekner " "installeert." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1677,31 +1843,41 @@ "De angeven Datei lett sik op Dien Systeem nich finnen.\n" "Prööv bitte, dat gifft de Datei noch un se wöör nich wegdaan." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 +#, fuzzy +#| msgid "" +#| "Required data could not be found on any of the configured software " +#| "origns.\n" +#| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Nödig Daten laat sik binnen keen vun de instellten Software-Borns finnen.\n" "Dat gifft keen anner Daallaad-Spegelservers, de utprobeert warrn köönt." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 +#, fuzzy +#| msgid "" +#| "Required upgrade data could not be found in any of the configured " +#| "software origns.\n" +#| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Nödig Opgradeer-Daten laat sik binnen keen vun de instellten Software-Borns " "finnen.\n" "De List mit Distributschoon-Opgraderen is nich verföögbor." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "Dat Paket, dat Du installeren wullt, is to dit Systeem nich kompatibel." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1710,11 +1886,11 @@ "Maak op de Systeemplaat wat Platz free, wenn Du dissen Akschoon utföhren " "wullt." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "En anner Medium deit noot, wenn Du de Akschoon afsluten wullt." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1722,7 +1898,7 @@ "Du hest de Identiteetprööv nich mit Spood afslaten.\n" "Prööv bitte de Passwoort- un Konto-Instellen." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1731,29 +1907,35 @@ "De angeven Opfrischen lett sik nich finnen.\n" "Se is villicht al installeert oder nich mehr op den Server verföögbor." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +#, fuzzy +#| msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "Dat Paket lett sik nich vun en nich vertroot Born installeren." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +#, fuzzy +#| msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "Dat Paket lett sik nich vun en nich vertroot Born opfrischen." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "De Dateilist för dit Paket is nich verföögbor." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" "De Informatschonen dor över, wat vun dit Paketen afhangen deit, laat sik " "nich halen." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +#, fuzzy +#| msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "De angeven Software-Born lett sik nich utmaken." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1761,7 +1943,7 @@ "De Daalladen lett sik nich automaatsch utföhren, versöök dat vun Hand.\n" "Mehr Informatschonen gifft dat binnen den utföhrlichen Bericht." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1769,7 +1951,7 @@ "Een vun de utsöchten Paketen lett sik nich mit Spood inrichten.\n" "Mehr Informatschonen gifft dat binnen den utföhrlichen Bericht." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1777,7 +1959,7 @@ "Een vun de utsöchten Paketen lett sik nich mit Spood buen.\n" "Mehr Informatschonen gifft dat binnen den utföhrlichen Bericht." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1785,7 +1967,7 @@ "Een vun de utsöchten Paketen lett sik nich mit Spood installeren.\n" "Mehr Informatschonen gifft dat binnen den utföhrlichen Bericht." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1793,7 +1975,7 @@ "Een vun de utsöchten Paketen lett sik nich mit Spood wegmaken.\n" "Mehr Informatschonen gifft dat binnen den utföhrlichen Bericht." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1801,239 +1983,239 @@ "Nich begäng Fehler, bitte maak em künnig.\n" "Mehr Informatschonen laat sik binnen den utföhrlichen Bericht finnen." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Toganghülp" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Bito" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Lehren" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Spelen" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafik" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kontoor" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Anner" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Utwickeln" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Systeem" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME-Schriefdisch" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE-Schriefdisch" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE-Schriefdisch" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Anner Schriefdischen" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Apenmaken" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servers" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Schriftoorden" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Systeemwarktüüch" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Oolt" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Översetten" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualiseren" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Sekerheit" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Stroomkuntrull" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Kommunikatschoon" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Nettwark" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Koorten" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Software-Borns" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Wetenschap" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokmentatschoon" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronik" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Paketsammeln" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Maker" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Niegst Paketen" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Nich begäng Koppel" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Eenfach Opfrischen" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normaal Opfrischen" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Wichtig Opfrischen" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Sekerheit-Opfrischen" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Fehlerricht-Opfrischen" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Verbeter-Opfrischen" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blockeert Opfrischen" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Installeert" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Verföögbor" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Nich begäng Opfrischen" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 eenfach Opfrischen" msgstr[1] "%1 eenfach Opfrischen" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2041,70 +2223,70 @@ msgstr[0] "1 Opfrischen" msgstr[1] "%1 Opfrischen" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 wichtig Opfrischen" msgstr[1] "%1 wichtig Opfrischen" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 Sekerheit-Opfrischen" msgstr[1] "%1 Sekerheit-Opfrischen" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 Fehlerrichten-Opfrischen" msgstr[1] "%1 Fehlerrichten-Opfrischen" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 Verbetern-Opfrischen" msgstr[1] "%1 Verbetern-Opfrischen" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blockeert Opfrischen" msgstr[1] "%1 blockeert Opfrischen" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 installeert Paket" msgstr[1] "%1 installeert Paketen" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 Paket verföögbor" msgstr[1] "%1 Paketen verföögbor" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 nich begäng Opfrischen" msgstr[1] "%1 nich begäng Opfrischen" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 eenfach Opfrischen utsöcht" msgstr[1] "%1 eenfach Opfrischen utsöcht" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2112,56 +2294,56 @@ msgstr[0] "1 Opfrischen utsöcht" msgstr[1] "%1 Opfrischen utsöcht" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 wichtig Opfrischen utsöcht" msgstr[1] "%1 wichtig Opfrischen utsöcht" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 Sekerheit-Opfrischen utsöcht" msgstr[1] "%1 Sekerheit-Opfrischen utsöcht" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 Fehlerricht-Opfrischen utsöcht" msgstr[1] "%1 Fehlerricht-Opfrischen utsöcht" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 Verbeter-Opfrischen utsöcht" msgstr[1] "%1 Verbeter-Opfrischen utsöcht" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 installeert Paket för't Wegmaken utsöcht" msgstr[1] "%1 installeert Paketen för't Wegmaken utsöcht" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 verföögbor Paket för't Installeren utsöcht" msgstr[1] "%1 verföögbor Paketen för't Installeren utsöcht" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 eenfach Opfrischen" msgstr[1] "%1 eenfach Opfrischen, %2 utsöcht" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2169,336 +2351,508 @@ msgstr[0] "%1 Opfrischen" msgstr[1] "%1 Opfrischen, %2 utsöcht" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 wichtig Opfrischen" msgstr[1] "%1 wichtig Opfrischen, %2 utsöcht" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 Sekerheit-Opfrischen" msgstr[1] "%1 Sekerheit-Opfrischen, %2 utsöcht" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 Fehlerricht-Opfrischen" msgstr[1] "%1 Fehlerricht-Opfrischen, %2 utsöcht" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 Verbeter-Opfrischen" msgstr[1] "%1 Verbeter-Opfrischen, %2 utsöcht" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 blockeert Opfrischen" msgstr[1] "%1 blockeert Opfrischen" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 installeert Paket" msgstr[1] "%1 installeert Paketen, %2 för't Wegmaken utsöcht" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 Paket verföögbor" msgstr[1] "%1 verföögbor Paketen, %2 för't Installeren utsöcht" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 nich begäng Opfrischen" msgstr[1] "%1 nich begäng Opfrischen" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "En Niegstart deit nich noot" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Du muttst dat Programm nieg starten" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Du muttst Di af- un wedder anmellen" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "En Niegstart is nödig" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "Na disse Sekerheit-Opfrischen muttst Du Di af- un wedder anmellen" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "Na disse Sekerheit-Opfrischen muttst en Niegstart utföhren" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Keen Niegstart nödig" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "No restart is required" msgid "A restart is required" msgstr "Keen Niegstart nödig" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in" msgstr "Du muttst Di af- un wedder anmellen." -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Du muttst dat Programm nieg starten." -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in to remain secure." msgstr "Du muttst Di af- un wedder anmellen." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "No restart is required" msgid "A restart is required to remain secure." msgstr "Keen Niegstart nödig" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stevig" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Jackelig" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Utproberen" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "Söökfilter wöör leeg." -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "De Koppel-List is leeg." -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Keen Paket-Twischenspieker verföögbor." -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "Dat Paket is nich installeert." -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgid "Generating package lists" msgid "A newer package exists" msgstr "Paketlisten warrt opstellt" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "Failed to install package" msgid "Could not find package" msgstr "Paket lett sik nich installeren" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "Dat Paket is al installeert." -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Dat Paket lett sik nich daalladen." -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Du hest nich noog Verlöven för disse Akschoon." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "En schuult Systeempaket lett sik nich wegdoon." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "De Paketsignatuur lett sik nich pröven." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." msgstr "De Koppel-List is leeg." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "De Datei wöör nich installeert." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Failed to install package" msgid "Could not talk to packagekitd." msgstr "Paket lett sik nich installeren" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Nich begäng Fehler" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "Du hest %1" +msgid "" +"The following file is required:
                                        • %2
                                        Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                        • %2
                                        Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, kde-format -msgid "
                                        And another update" -msgid_plural "
                                        And %1 more updates" -msgstr[0] "
                                        Un een anner Opfrischen" -msgstr[1] "
                                        Un %1 anner Opfrischen" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "En Programm will en Datei installeren." +msgstr[1] "En Programm will Dateien installeren." -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "Bekieken un opfrischen" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "\"%1\" will en Datei installeren" +msgstr[1] "\"%1\" will Dateien installeren" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Nu nich" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installeren" -#: SmartIcon/KpkUpdateIcon.cpp:191 -#, fuzzy -#| msgid "Do not notify me again" +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "De Dateisöök-Vörgang lett sik nich starten" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Dat Paket \"%1\" stellt disse Datei al praat." + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Datei lett sik nich installeren" +msgstr[1] "Torechtmaken fehlslaan" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Dit Paket warrt installeert:" +msgstr[1] "Disse Paketen warrt installeert:" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "De Datei lett sik binnen keen Paket finnen." +msgstr[1] "De Dateien laat sik binnen keen Paketen finnen." + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Paket lett sik nich finnen" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Du hest %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                        And another update" +msgid_plural "
                                        And %1 more updates" +msgstr[0] "
                                        Un een anner Opfrischen" +msgstr[1] "
                                        Un %1 anner Opfrischen" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Bekieken un opfrischen" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +#, fuzzy +#| msgid "Do not notify me again" msgid "Do not ask again" msgstr "Nienich wedder Bescheed geven" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Opfrischen warrt automaatsch installeert" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Sekerheit-Opfrischen warrt automaatsch installeert" -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 #, fuzzy #| msgid "System update was successful!" msgid "System update was successful." msgstr "Systeem mit Spood opfrischt!" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Dat Opfrischen vun de Software is fehlslaan." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Disse Datei deit noot:" +msgstr[1] "Disse Dateien doot noot:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Wullt Du dor nu na söken?" +msgstr[1] "Wullt Du dor nu na söken?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "\"%1\" will en Datei installeren" +msgstr[1] "\"%1\" will Dateien installeren" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Nu Opfrischen" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Distributschoon-Opfrischen afslaten. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "De Oplöös-Vörgang lett sik nich starten" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Ole Vörgäng funnen" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Nich begäng Fehler" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                                        • %2
                                        Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                        • %2
                                        Do you want to search " +"for and install these packages now?" +msgstr[0] "Wullt Du dit Paket nu söken un installeren?" +msgstr[1] "Wullt Du disse Paketen nu söken un installeren?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "En Programm will en Paket installeren" +msgstr[1] "En Programm will Paketen installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "\"%1\" will en Paket installeren" +msgstr[1] "\"%1\" will Paketen installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Dat Paket is al installeert." +msgstr[1] "Dat Paket is al installeert." + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Paket lett sik nich installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Dat Paket lett sik binnen keen Software-Born finnen." +msgstr[1] "De Paketen laat sik binnen keen Software-Born finnen." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "\"%1\" lett sik nich finnen" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2523,254 +2877,513 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt un anner Saken" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
                                        %1
                                        Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"En Programm bito deit noot, wenn Du Dateien vun dissen Typ opmaken wullt:" +"
                                        %1
                                        Wullt Du nu en Programm söken, mit dat sik disse Dateityp " +"opmaken lett?" +msgstr[1] "" +"En Programm bito deit noot, wenn Du Dateien vun dissen Typ opmaken wullt:" +"
                                        %1
                                        Wullt Du nu en Programm söken, mit dat sik disse Dateityp " +"opmaken lett?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "En Programm will en Datei installeren." +msgstr[1] "En Programm will Dateien installeren." + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "\"%1\" will en Datei installeren" +msgstr[1] "\"%1\" will Dateien installeren" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Söken" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Praatstellen laat sik nich söken" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Programm, dat dissen Dateityp opmaken kann" +msgstr[1] "Programmen, de dissen Dateityp opmaken köönt" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Keen Programmen to finnen, de dissen Dateityp opmaken köönt" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Söök na Software fehlslaan" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Disse Indrag warrt vun Dien Hülpprogramm nich ünnerstütt, oder dat is keen " +"Datei." +msgstr[1] "" +"Disse Indrääg warrt vun Dien Hülpprogramm nich ünnerstütt, oder dat sünd " +"keen Dateien." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Installeren nich mööglich" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installeren" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Wullt Du disse Datei installeren?" +msgstr[1] "Wullt Du disse Dateien installeren?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Installeren?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "De Datei wöör nich installeert." +msgstr[1] "De Dateien wöörn nich installeert." + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Datei wöör mit Spood installeert" +msgstr[1] "Dateien wören mit Spood installeert" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Dat geev en Fehler." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                        • %2
                                        Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                        • %2
                                        Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "En Programm bruukt en nieg MIME-Typ" +msgstr[1] "En Programm bruukt nieg MIME-Typen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "En Programm bruukt en nieg MIME-Typ" +msgstr[1] "En Programm bruukt nieg MIME-Typen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "En Programm bruukt en nieg MIME-Typ" +msgstr[1] "En Programm bruukt nieg MIME-Typen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Wullt Du dit Paket nu söken un installeren?" +msgstr[1] "Wullt Du disse Paketen nu söken un installeren?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Dat Paket lett sik binnen keen Software-Born finnen." + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Praatstellen laat sik nich söken" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Dat Paket lett sik binnen keen Software-Born finnen." + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Vörgäng" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy #| msgid "Refresh Packages List" msgid "Refresh package list" msgstr "Paketlist opfrischen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy #| msgid "Updates" msgid "Show messages" msgstr "Opfrischen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, fuzzy, kde-format #| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "Paketnaam" msgstr[1] "Paketnaam" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "" msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 #, fuzzy #| msgid "The update has completed" msgid "The system update has completed" msgstr "Opfrischen afslaten" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 #, fuzzy #| msgid "Restart" msgctxt "Restart the computer" msgid "Restart" msgstr "Nieg starten" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Nu nich" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "En Programm will en Datei wegmaken." +msgstr[1] "En Programm will Dateien wegmaken." + +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "\"%1\" will en Datei wegmaken." +msgstr[1] "\"%1\" will Dateien wegmaken." + +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "Disse Datei warrt wegmaakt:" +msgstr[1] "Disse Dateien warrt wegmaakt:" + +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "Wullt Du nu Paketen söken un wegmaken, de disse Datei bargt?" +msgstr[1] "Wullt Du nu Paketen söken un wegmaken, de disse Dateien bargt?" + +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Söken" + +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Dit Paket warrt wegmaakt:" +msgstr[1] "Disse Paketen warrt wegmaakt:" + +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "De Datei lett sik binnen keen installeert Paket finnen." +msgstr[1] "De Dateien laat sik binnen keen installeert Paket finnen." + +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
                                        %1
                                        Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                        • %1
                                        • Do you want to search for a program to open this file type now?" +msgstr "" +"En Programm bito deit noot, wenn Du Dateien vun dissen Typ opmaken wullt:" +"
                                          %1
                                          Wullt Du nu en Programm söken, mit dat sik disse Dateityp " +"opmaken lett?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "En Programm bruukt en nieg MIME-Typ" +msgstr[1] "En Programm bruukt nieg MIME-Typen" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "\"%1\" bruukt en nieg MIME-Typ" +msgstr[1] "\"%1\" bruukt nieg MIME-Typen" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Söök" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Keen Programmen to finnen, de dissen Dateityp opmaken köönt" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Söök na Software fehlslaan" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                          Do you want to install this catalog?

                                          • %2
                                          " +msgid_plural "" +"

                                          Do you want to install these catalogs?

                                          • %2
                                          " +msgstr[0] "Wullt Du disse Datei installeren?" +msgstr[1] "Wullt Du disse Dateien installeren?" + +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Nu installeren" +msgstr[1] "Nu installeren" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Installeren" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Dat aktuelle Hülpprogramm ünnerstütt dat Installeren vun Paketen nich." + +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "Ünnerstütt" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package failed to configure" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Paket lett sik nich inrichten" +msgstr[1] "Paket lett sik nich inrichten" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Afsluten fehlslaan" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Bornpaketen laat sik nich installeren." + +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "De Oplöös-Vörgang lett sik nich starten" + #: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 #, fuzzy #| msgid "KPackageKit Settings" msgid "KPackageKit settings" msgstr "KPackageKit-Instellen" -#: Settings/KpkSettings.cpp:60 +#: Settings/KpkSettings.cpp:61 #, fuzzy #| msgid "Hourly" msgctxt "Hourly refresh the package cache" msgid "Hourly" msgstr "Elk Stünn" -#: Settings/KpkSettings.cpp:61 +#: Settings/KpkSettings.cpp:62 #, fuzzy #| msgid "Daily" msgctxt "Daily refresh the package cache" msgid "Daily" msgstr "Elk Dag" -#: Settings/KpkSettings.cpp:62 +#: Settings/KpkSettings.cpp:63 #, fuzzy #| msgid "Weekly" msgctxt "Weekly refresh the package cache" msgid "Weekly" msgstr "Elk Week" -#: Settings/KpkSettings.cpp:63 +#: Settings/KpkSettings.cpp:64 #, fuzzy #| msgid "Monthly" msgctxt "Monthly refresh the package cache" msgid "Monthly" msgstr "Elk Maand" -#: Settings/KpkSettings.cpp:64 +#: Settings/KpkSettings.cpp:65 #, fuzzy #| msgid "Never" msgctxt "Never refresh package cache" msgid "Never" msgstr "Nienich" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" msgstr "Bloots Sekerheit" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" msgstr "All Opfrischen" -#: Settings/KpkSettings.cpp:68 +#: Settings/KpkSettings.cpp:69 #, fuzzy #| msgid "None" msgctxt "None updates will be automatically installed" msgid "None" msgstr "Keen" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Du hest nich noog Verlöven för disse Akschoon." - -#: Settings/KpkSettings.cpp:164 -#, fuzzy -#| msgid "Failed set origin data" -msgid "Failed to set origin data" -msgstr "Herkomstdaten laat sik nich fastleggen" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Disse Datei deit noot:" -msgstr[1] "Disse Dateien doot noot:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Wullt Du dor nu na söken?" -msgstr[1] "Wullt Du dor nu na söken?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "En Programm will en Datei installeren." -msgstr[1] "En Programm will Dateien installeren." - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "\"%1\" will en Datei installeren" -msgstr[1] "\"%1\" will Dateien installeren" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Installeren" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "De Dateisöök-Vörgang lett sik nich starten" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Dat Paket \"%1\" stellt disse Datei al praat." - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Dit Paket warrt installeert:" -msgstr[1] "Disse Paketen warrt installeert:" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "De Datei lett sik binnen keen Paket finnen." -msgstr[1] "De Dateien laat sik binnen keen Paketen finnen." - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Paket lett sik nich finnen" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "En Programm will en Datei wegmaken." -msgstr[1] "En Programm will Dateien wegmaken." - -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "\"%1\" will en Datei wegmaken." -msgstr[1] "\"%1\" will Dateien wegmaken." - -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "Disse Datei warrt wegmaakt:" -msgstr[1] "Disse Dateien warrt wegmaakt:" - -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "Wullt Du nu Paketen söken un wegmaken, de disse Datei bargt?" -msgstr[1] "Wullt Du nu Paketen söken un wegmaken, de disse Dateien bargt?" - -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "Söken" - -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "Dit Paket warrt wegmaakt:" -msgstr[1] "Disse Paketen warrt wegmaakt:" - -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "De Datei lett sik binnen keen installeert Paket finnen." -msgstr[1] "De Dateien laat sik binnen keen installeert Paket finnen." - -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "\"%1\" lett sik nich finnen" - +#: Settings/KpkSettings.cpp:167 +#, fuzzy +#| msgid "Failed set origin data" +msgid "Failed to set origin data" +msgstr "Herkomstdaten laat sik nich fastleggen" + #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" msgstr "KPackageKit is en Warktüüch för de Software-Pleeg" @@ -2807,143 +3420,6 @@ msgid "Package file to install" msgstr "Paketdatei, de Du installeren wullt" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Disse Indrag warrt vun Dien Hülpprogramm nich ünnerstütt, oder dat is keen " -"Datei." -msgstr[1] "" -"Disse Indrääg warrt vun Dien Hülpprogramm nich ünnerstütt, oder dat sünd " -"keen Dateien." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Installeren nich mööglich" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Installeren" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Wullt Du disse Datei installeren?" -msgstr[1] "Wullt Du disse Dateien installeren?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Installeren?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "De Datei wöör nich installeert." -msgstr[1] "De Dateien wöörn nich installeert." - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Datei lett sik nich installeren" -msgstr[1] "Torechtmaken fehlslaan" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Datei wöör mit Spood installeert" -msgstr[1] "Dateien wören mit Spood installeert" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Dat geev en Fehler." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "En Paket deit bito noot:" -msgstr[1] "Disse Paketen doot bito noot:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Wullt Du dit Paket nu söken un installeren?" -msgstr[1] "Wullt Du disse Paketen nu söken un installeren?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "En Programm will en Paket installeren" -msgstr[1] "En Programm will Paketen installeren" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "\"%1\" will en Paket installeren" -msgstr[1] "\"%1\" will Paketen installeren" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installeren" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "De Oplöös-Vörgang lett sik nich starten" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Dat Paket lett sik binnen keen Software-Born finnen." -msgstr[1] "De Paketen laat sik binnen keen Software-Born finnen." - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                          %1
                                          Do " -"you want to search for a program to open this file type now?" -msgstr "" -"En Programm bito deit noot, wenn Du Dateien vun dissen Typ opmaken wullt:" -"
                                          %1
                                          Wullt Du nu en Programm söken, mit dat sik disse Dateityp " -"opmaken lett?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "En Programm bruukt en nieg MIME-Typ" -msgstr[1] "En Programm bruukt nieg MIME-Typen" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "\"%1\" bruukt en nieg MIME-Typ" -msgstr[1] "\"%1\" bruukt nieg MIME-Typen" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Söök" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Praatstellen laat sik nich söken" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Programm, dat dissen Dateityp opmaken kann" -msgstr[1] "Programmen, de dissen Dateityp opmaken köönt" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Keen Programmen to finnen, de dissen Dateityp opmaken köönt" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Söök na Software fehlslaan" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2954,7 +3430,7 @@ msgid "Your emails" msgstr "s_dibbern@web.de, m.j.wiese@web.de" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -2962,13 +3438,13 @@ msgid "Select all updates" msgstr "Sekerheit-Opfrischen" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Opfrischen" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3008,392 +3484,470 @@ msgid "Required by" msgstr "Bruukt vun" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Programmen tofögen un wegmaken" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Paketen söken" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtern" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "All Paketen" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Vörgang" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Vörgäng" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Akschoon" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Paketen warrt daallaadt" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "En Bibliotheek, mit Du x doon kannst" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "Textbeteker" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "Dor sünd noch anner Ännern nödig för't Afsluten vun de Opgaav" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Akschonen" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "Textbeteker" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Archivnaam:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Signatuur-URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Signatuur-Brukerkennen:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Signatuur-Kennen:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Is de Bruker begäng un troost Du dissen Slötel?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Troost Du de Herkomst vun Paketen?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Bitte lees disse wichtigen Informatschonen, ehr Du wiedermaakst:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Instellen" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit-Instellen" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Na Opfrischen kieken:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "An't Opfrischen" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automaatsch installeren:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Na Opfrischen kieken:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Plietsch Systeemafsnitt-Lüttbild" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Automaatsch installeren:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Bescheed geven, wenn niege Opfrischen verföögbor sünd." -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Bescheed geven, wenn groot Vörgäng afslaten sünd." - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Herkomst vun Paketen" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "Herkomst vun Fehlersöök- un Utwickeln-Paketen wie&sen" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Över't Hülpprogramm" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Naam vun't Hülpprogramm:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "Hier de Naam vun't Hülpprogramm" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Schriever vun't Hülpprogramm:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find Description" +msgid "Backend description:" +msgstr "Beschrieven söken" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "Hier de Schriever vun't Hülpprogramm" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "Hier de Naam vun't Hülpprogramm" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Paket is sichtbor" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Niegst" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Böversiet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Fre'e Programmen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Ünnerstütt" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Metoden" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Opfrischen halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Paketen opfrischen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Archivlist halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Twischenspieker opfrischen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Paket installeren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Archiv anmaken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Systeem opfrischen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Paket wegmaken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Archiev anmaken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Naam söken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Afhangigkeiten halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "Wat stellt dat praat" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Enkelheiten söken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Vörutsetten halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Paketen halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Koppeln söken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Opfrischen-Enkelheiten halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Datei söken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Beschrieven halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Dateien halen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Oplösen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Datei installeren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "Installeren vun Dateien simuleren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "Installeren vun Paketen installeren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "Wegmaken vun Paketen simuleren" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "Opfrischen vun Paketen simuleren" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Ole Vörgäng funnen" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Disse Indrag warrt vun Dien Hülpprogramm nich ünnerstütt, oder dat is " +#~ "keen Datei." +#~ msgstr[1] "" +#~ "Disse Indrääg warrt vun Dien Hülpprogramm nich ünnerstütt, oder dat sünd " +#~ "keen Dateien." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "En Paket deit bito noot:" +#~ msgstr[1] "Disse Paketen doot bito noot:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Wullt Du dit Paket nu söken un installeren?" +#~ msgstr[1] "Wullt Du disse Paketen nu söken un installeren?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                          %1
                                          Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "En Programm bito deit noot, wenn Du Dateien vun dissen Typ opmaken wullt:" +#~ "
                                          %1
                                          Wullt Du nu en Programm söken, mit dat sik disse Dateityp " +#~ "opmaken lett?" + +#~ msgid "All packages" +#~ msgstr "All Paketen" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Du hest nich noog Verlöven för disse Akschoon." + +#~ msgid "Package Name" +#~ msgstr "Paketnaam" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKit-Instellen" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Plietsch Systeemafsnitt-Lüttbild" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Bescheed geven, wenn groot Vörgäng afslaten sünd." + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Vörgang" + +#~ msgid "A library to do foo" +#~ msgstr "En Bibliotheek, mit Du x doon kannst" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Disse Paketen warrt as Afhangigkeiten ok noch installeert:" @@ -3406,9 +3960,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Disse Paketen wöörn ok noch wegdaan/installeert:" -#~ msgid "Failed to update package lists" -#~ msgstr "Paketlisten laat sik nich opfrischen" - #~ msgid "Failed to refresh package lists" #~ msgstr "Paketlisten laat sik nich opfrischen." @@ -3485,9 +4036,6 @@ #~ msgid "Downloading" #~ msgstr "An't Daalladen" -#~ msgid "Updating" -#~ msgstr "An't Opfrischen" - #~ msgid "Cleaning Up" #~ msgstr "An't Oprümen" @@ -3571,9 +4119,6 @@ #~ msgid "Find Name" #~ msgstr "Naam söken" -#~ msgid "Find Description" -#~ msgstr "Beschrieven söken" - #~ msgid "Find File" #~ msgstr "Datei söken" diff -Nru kpackagekit-0.5.4/po/nl/kpackagekit.po kpackagekit-0.6.0/po/nl/kpackagekit.po --- kpackagekit-0.5.4/po/nl/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/nl/kpackagekit.po 2010-01-30 09:02:56.000000000 +0000 @@ -6,19 +6,20 @@ # Rinse de Vries , 2008. # Freek de Kruijf , 2008. # Kristof Bal , 2008, 2009. +# Freek de Kruijf , 2009. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-02-27 12:53+0100\n" -"Last-Translator: Kristof Bal \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-11-13 10:40+0100\n" +"Last-Translator: Freek de Kruijf \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Lokalize 0.2\n" +"X-Generator: KBabel 1.11.4\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -31,17 +32,15 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Details" #: Updater/KpkSimpleTransactionModel.cpp:49 -#, fuzzy -#| msgid "Username" msgctxt "Machine user who issued the transaction" msgid "Username" msgstr "Gebruikersnaam" @@ -51,14 +50,12 @@ msgstr "Toepassing" #: Updater/KcmKpkUpdate.cpp:37 -#, fuzzy -#| msgid "Show Updates" msgid "Software update" -msgstr "Opwaarderingen tonen" +msgstr "Software-bijwerken" #: Updater/KcmKpkUpdate.cpp:39 msgid "KDE interface for updating software" -msgstr "" +msgstr "KDE interface voor het bijwerken van software" #: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 #: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 @@ -92,37 +89,37 @@ #: Updater/KpkDistroUpgrade.cpp:76 msgid "It is recommended to plug in your computer before proceeding." msgstr "" +"Het is aanbevolen om uw computer voor het opwaarderen aan het energienet te " +"koppelen." #: Updater/KpkDistroUpgrade.cpp:78 msgid "" "It is recommended that you keep your computer plugged in while the upgrade " "is being performed." msgstr "" +"Het is aanbevolen om uw computer aan het energienet gekoppeld te laten " +"tijdens het opwaarderen." -#: Updater/KpkDistroUpgrade.cpp:102 -#, fuzzy -#| msgid "Getting distribution upgrade information" +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." -msgstr "Ophalen van informatie over opwaardering van de distributie" +msgstr "Opwaardering van de distributie gereed." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." -msgstr "" +msgstr "Het opwaarderen van de distributie is beëindigd met code %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 -#, fuzzy -#| msgid "Getting distribution upgrade information" +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." -msgstr "Ophalen van informatie over opwaardering van de distributie" +msgstr "De opwaardering van de distributie mislukte bij de start." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" @@ -131,8 +128,6 @@ msgstr "Type" #: Updater/KpkUpdateDetails.cpp:67 -#, fuzzy -#| msgid "State" msgctxt "State of the upgrade (ie testing, unstable..)" msgid "State" msgstr "Status" @@ -196,46 +191,36 @@ msgstr "Terugzetten" #: Updater/KpkHistory.cpp:52 -#, fuzzy -#| msgid "Refreshing software list" msgid "Refresh transactions list" -msgstr "Vernieuwen van softwarelijst" +msgstr "Vernieuwen van de softwarelijst" #: Updater/KpkHistory.cpp:100 #, kde-format msgid "Time since last cache refresh: %1" msgstr "Tijd verstreken sinds laatste bijwerking van de buffer: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Pakketnaam" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Website" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licentie" -#: AddRm/KpkPackageDetails.cpp:129 -#, fuzzy -#| msgid "Group" +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Groep" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Website" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Grootte" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Er werden geen bestanden gevonden." #: AddRm/KcmKpkAddRm.cpp:37 -#, fuzzy -#| msgid "Add and Remove Software" msgid "Add and remove software" msgstr "Software toevoegen en verwijderen" @@ -243,268 +228,259 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Zoeken" -#: AddRm/KpkAddRm.cpp:127 -#, fuzzy -#| msgid "All Packages" -msgid "All packages" -msgstr "Alle pakketten" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 -#, fuzzy -#| msgid "Testing changes" +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" -msgstr "Wijzigingen testen" +msgstr "Lijst van wijzigingen" -#: AddRm/KpkAddRm.cpp:139 -#, fuzzy -#| msgid "Group" +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" -msgstr[0] "Groep" -msgstr[1] "Groep" +msgstr[0] "Groep:" +msgstr[1] "Groepen:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 -#, fuzzy -#| msgid "Cancel" +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" -msgstr "Annuleren" +msgstr "&Annuleren" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 -#, fuzzy -#| msgid "Find by name" +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" -msgstr "Zoeken op naam" +msgstr "Zoeken op &naam" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Zoeken op b&estandsnaam" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Zoeken op &beschrijving" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Wijzigingen bekijken" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Verzamelingen" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Alleen verzamelingen" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Sluit verzamelingen uit" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Geïnstalleerd" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Alleen geïnstalleerd" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Alleen beschikbaar" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Geen filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Ontwikkeling" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Alleen ontwikkeling" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafisch" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Alleen grafisch" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Alleen tekst" -#: AddRm/KpkAddRm.cpp:569 -#, fuzzy -#| msgid "Free" +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Vrij" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Alleen vrije software" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Alleen niet-vrije software" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architecturen" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "" -#: AddRm/KpkAddRm.cpp:633 -#, fuzzy -#| msgid "Source" +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Bron" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Alleen broncode" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Subpakketten verbergen" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Alleen één pakket tonen, geen subpakketten" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Alleen nieuwste pakketten" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Alleen de nieuwste beschikbare pakketten tonen" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Gegroepeerd tonen" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Het volgende pakket zal worden geïnstalleerd:" msgstr[1] "De volgende pakketten zullen worden geïnstalleerd:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Nu installeren" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Het volgende pakket zal worden verwijderd:" msgstr[1] "De volgende pakketten zullen worden verwijderd:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Nu verwijderen" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Het volgende pakket zal worden verwijderd en geïnstalleerd:" msgstr[1] "De volgende pakketten zullen worden verwijderd en geïnstalleerd:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Nu toepassen" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 #, fuzzy -#| msgid "Sorry, your backend does not support removing packages" +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Kon pakketlijsten niet bijwerken" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." -msgstr "Helaas, uw backend kan geen pakketten verwijderen" +msgstr "De huidige backend kan geen pakketten verwijderen." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 -#, fuzzy -#| msgid "KPackageKit" +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" -msgstr "KPackageKit" +msgstr "KPackageKit-fout" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 #, fuzzy -#| msgid "Sorry, your backend does not support installing packages" -msgid "Current backend does not support installing packages." -msgstr "Helaas, uw backend kan geen pakketten installeren" +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Kon pakketlijsten niet bijwerken" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Kon pakket niet verwijderen" +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." +msgstr "De huidige backend kan geen pakketten installeren." -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Kon pakket niet installeren" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Kon pakket niet verwijderen" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Verbergen" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Bezig niet-ondertekende software te installeren" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 -#, fuzzy -#| msgid "A system restart is required after this update" +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" -msgstr "Na deze opwaardering dient u het systeem te herstarten" +msgstr "" #: libkpackagekit/KpkProgressBar.cpp:38 #, kde-format @@ -513,10 +489,8 @@ #: libkpackagekit/KpkPackageModel.cpp:142 #: libkpackagekit/KpkSimulateModel.cpp:122 -#, fuzzy -#| msgid "KPackageKit" msgid "Package" -msgstr "KPackageKit" +msgstr "Pakket" #: libkpackagekit/KpkLicenseAgreement.cpp:34 msgid "Accept Agreement" @@ -524,7 +498,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Licentieovereenkomst vereist" @@ -534,582 +508,556 @@ msgstr "" #: libkpackagekit/KpkSimulateModel.cpp:124 -#, fuzzy -#| msgid "New version" msgid "Version" -msgstr "Nieuwe versie" +msgstr "Versie" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Annuleren" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Voltooid in %1." #: libkpackagekit/KpkRequirements.cpp:219 -#, fuzzy -#| msgid "Testing changes" msgid "Additional changes" -msgstr "Wijzigingen testen" +msgstr "Extra wijzigingen" #: libkpackagekit/KpkRequirements.cpp:221 msgid "Continue" -msgstr "" +msgstr "Doorgaan" #: libkpackagekit/KpkRequirements.cpp:252 -#, fuzzy, kde-format -#| msgid "Searching by package name" +#, kde-format msgid "1 package to remove" msgid_plural "%1 packages to remove" -msgstr[0] "Op pakketnaam zoeken" -msgstr[1] "Op pakketnaam zoeken" +msgstr[0] "1 te verwijderen pakket" +msgstr[1] "%1 te verwijderen pakketten" #: libkpackagekit/KpkRequirements.cpp:261 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to downgrade" msgid_plural "%1 packages to downgrade" -msgstr[0] "Geen pakketten om te opwaarderen" -msgstr[1] "Geen pakketten om te opwaarderen" +msgstr[0] "1 neerwaarts bij te werken pakket" +msgstr[1] "%1 neerwaarts bij te werken pakketten" #: libkpackagekit/KpkRequirements.cpp:272 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to reinstall" msgid_plural "%1 packages to reinstall" -msgstr[0] "Te installeren pakketbestand " -msgstr[1] "Te installeren pakketbestand " +msgstr[0] "1 opnieuw te installeren pakket" +msgstr[1] "%1 opnieuw te installeren pakketten" #: libkpackagekit/KpkRequirements.cpp:283 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to install" msgid_plural "%1 packages to install" -msgstr[0] "Te installeren pakketbestand " -msgstr[1] "Te installeren pakketbestand " +msgstr[0] "1 te installeren pakket" +msgstr[1] "%1 te installeren pakketten" #: libkpackagekit/KpkRequirements.cpp:294 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to update" msgid_plural "%1 packages to update" -msgstr[0] "Geen pakketten om te opwaarderen" -msgstr[1] "Geen pakketten om te opwaarderen" +msgstr[0] "1 bij te werken pakket" +msgstr[1] "%1 bij te werken pakketten" #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Ondertekening van de software is vereist" -#: libkpackagekit/KpkStrings.cpp:31 +#: libkpackagekit/KpkStrings.cpp:32 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Unknown state" -msgctxt "The transaction state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Onbekend status" -#: libkpackagekit/KpkStrings.cpp:33 +#: libkpackagekit/KpkStrings.cpp:35 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Waiting for service to start" -msgctxt "The transaction state" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Wacht op het starten van de service" -#: libkpackagekit/KpkStrings.cpp:35 +#: libkpackagekit/KpkStrings.cpp:38 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Wacht op andere taken" -#: libkpackagekit/KpkStrings.cpp:37 +#: libkpackagekit/KpkStrings.cpp:41 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Running task" -msgctxt "The transaction state" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Actieve taak" -#: libkpackagekit/KpkStrings.cpp:39 +#: libkpackagekit/KpkStrings.cpp:44 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Querying" -msgctxt "The transaction state" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Opvragen" -#: libkpackagekit/KpkStrings.cpp:41 +#: libkpackagekit/KpkStrings.cpp:47 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Getting information" -msgctxt "The transaction state" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Ophalen van informatie" -#: libkpackagekit/KpkStrings.cpp:43 +#: libkpackagekit/KpkStrings.cpp:50 #, fuzzy -#| msgid "Removed packages" -msgctxt "The transaction state" +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" -msgstr "Verwijderde pakketten" +msgstr "Pakketten aan het verwijderen" -#: libkpackagekit/KpkStrings.cpp:45 +#: libkpackagekit/KpkStrings.cpp:53 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Downloading packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" -msgstr "Downloaden van pakketten" +msgstr "Pakketten aan het downloaden" -#: libkpackagekit/KpkStrings.cpp:47 +#: libkpackagekit/KpkStrings.cpp:56 #, fuzzy -#| msgid "Installed packages" -msgctxt "The transaction state" +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" -msgstr "Geïnstalleerde pakketten" +msgstr "Pakketten aan het installeren" -#: libkpackagekit/KpkStrings.cpp:49 +#: libkpackagekit/KpkStrings.cpp:59 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Refreshing software list" -msgctxt "The transaction state" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" -msgstr "Vernieuwen van softwarelijst" +msgstr "Softwarelijst aan het vernieuwen" -#: libkpackagekit/KpkStrings.cpp:51 +#: libkpackagekit/KpkStrings.cpp:62 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing updates" msgid "Updating packages" -msgstr "Pakketten opwaarderen" +msgstr "Pakketten aan het bijwerken" -#: libkpackagekit/KpkStrings.cpp:53 +#: libkpackagekit/KpkStrings.cpp:65 #, fuzzy -#| msgid "Updating packages" -msgctxt "The transaction state" +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" -msgstr "Pakketten opwaarderen" +msgstr "Pakketten aan het opschonen" -#: libkpackagekit/KpkStrings.cpp:55 +#: libkpackagekit/KpkStrings.cpp:68 #, fuzzy -#| msgid "Updating packages" -msgctxt "The transaction state" +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" -msgstr "Pakketten opwaarderen" +msgstr "Pakketten aan het verouderd maken" -#: libkpackagekit/KpkStrings.cpp:57 +#: libkpackagekit/KpkStrings.cpp:71 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Resolving dependencies" -msgctxt "The transaction state" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" -msgstr "Afhankelijkheden oplossen" +msgstr "Afhankelijkheden aan het oplossen" -#: libkpackagekit/KpkStrings.cpp:59 +#: libkpackagekit/KpkStrings.cpp:74 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Checking signatures" -msgctxt "The transaction state" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" -msgstr "Controleren van ondertekening" +msgstr "Ondertekening aan het controleren" -#: libkpackagekit/KpkStrings.cpp:61 +#: libkpackagekit/KpkStrings.cpp:77 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Rolling back" -msgctxt "The transaction state" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" -msgstr "Terugzetten" +msgstr "Aan het terug rollen" -#: libkpackagekit/KpkStrings.cpp:63 +#: libkpackagekit/KpkStrings.cpp:80 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Testing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" -msgstr "Wijzigingen testen" +msgstr "Wijzigingen aan het testen" -#: libkpackagekit/KpkStrings.cpp:65 +#: libkpackagekit/KpkStrings.cpp:83 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Committing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" -msgstr "Wijzigingen vastleggen" +msgstr "Wijzigingen aan het vastleggen" -#: libkpackagekit/KpkStrings.cpp:67 +#: libkpackagekit/KpkStrings.cpp:86 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Requesting data" -msgctxt "The transaction state" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" -msgstr "Gegevens opvragen" +msgstr "Gegevens aan het opvragen" -#: libkpackagekit/KpkStrings.cpp:69 +#: libkpackagekit/KpkStrings.cpp:89 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Finished" -msgctxt "The transaction state" +msgctxt "transaction state, all done!" msgid "Finished" -msgstr "Voltooid." +msgstr "Gereed" -#: libkpackagekit/KpkStrings.cpp:71 +#: libkpackagekit/KpkStrings.cpp:92 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Cancelling" -msgctxt "The transaction state" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Annuleren" -#: libkpackagekit/KpkStrings.cpp:73 +#: libkpackagekit/KpkStrings.cpp:95 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Downloading repository information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Downloaden van installatiebron-informatie" -#: libkpackagekit/KpkStrings.cpp:75 +#: libkpackagekit/KpkStrings.cpp:98 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Downloaden van de lijst van pakketten" -#: libkpackagekit/KpkStrings.cpp:77 +#: libkpackagekit/KpkStrings.cpp:101 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Downloading file lists" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Downloaden van bestandslijsten" -#: libkpackagekit/KpkStrings.cpp:79 +#: libkpackagekit/KpkStrings.cpp:104 #, fuzzy -#| msgid "Downloading list of packages" -msgctxt "The transaction state" +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" -msgstr "Downloaden van de lijst van pakketten" +msgstr "Downloaden van wijzigingslijsten" -#: libkpackagekit/KpkStrings.cpp:81 +#: libkpackagekit/KpkStrings.cpp:107 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Downloading groups" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Downloaden van groepen" -#: libkpackagekit/KpkStrings.cpp:83 +#: libkpackagekit/KpkStrings.cpp:110 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Downloading update information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" -msgstr "Downloaden van opwaarderingsinformatie" +msgstr "Downloaden van bijwerken-informatie" -#: libkpackagekit/KpkStrings.cpp:85 +#: libkpackagekit/KpkStrings.cpp:113 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Repackaging files" -msgctxt "The transaction state" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Bestanden opnieuw inpakken" -#: libkpackagekit/KpkStrings.cpp:87 +#: libkpackagekit/KpkStrings.cpp:116 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Loading cache" -msgctxt "The transaction state" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Cache laden" -#: libkpackagekit/KpkStrings.cpp:89 +#: libkpackagekit/KpkStrings.cpp:119 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Scanning installed applications" -msgctxt "The transaction state" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Scannen van geïnstalleerde programma's" -#: libkpackagekit/KpkStrings.cpp:91 +#: libkpackagekit/KpkStrings.cpp:122 #, fuzzy +#| msgctxt "The transaction state" #| msgid "Generating package lists" -msgctxt "The transaction state" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Genereren van pakketlijsten" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy -#| msgid "Waiting for other tasks" -msgctxt "The transaction state" +#| msgctxt "The transaction state" +#| msgid "Waiting for authentication" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" -msgstr "Wacht op andere taken" +msgstr "Wachten op authenticatie" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 #, fuzzy -#| msgid "Downloaded" +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Bestanden opnieuw inpakken" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Gedownload" -#: libkpackagekit/KpkStrings.cpp:113 -#, fuzzy -#| msgid "Updated" +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Bijgewerkt" -#: libkpackagekit/KpkStrings.cpp:115 -#, fuzzy -#| msgid "Installed" +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:117 -#, fuzzy -#| msgid "Removed" +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Verwijderd" -#: libkpackagekit/KpkStrings.cpp:119 -#, fuzzy -#| msgid "Cleaned Up" +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Opgeschoond" -#: libkpackagekit/KpkStrings.cpp:121 -#, fuzzy -#| msgid "Obsoleted" +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" -msgstr "Vervangen" +msgstr "Aangemerkt als verouderd" -#: libkpackagekit/KpkStrings.cpp:132 -#, fuzzy -#| msgid "Unknown group" +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" -msgstr "Onbekende groep" +msgstr "Onbekend roltype" -#: libkpackagekit/KpkStrings.cpp:134 -#, fuzzy -#| msgid "Getting dependencies" +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Afhankelijkheden ophalen" -#: libkpackagekit/KpkStrings.cpp:136 -#, fuzzy -#| msgid "Getting update detail" +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" -msgstr "Opwaardeerdetails worden opgehaald" +msgstr "Bijwerkdetails worden opgehaald" -#: libkpackagekit/KpkStrings.cpp:138 -#, fuzzy -#| msgid "Getting details" +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Details worden opgehaald" -#: libkpackagekit/KpkStrings.cpp:140 -#, fuzzy -#| msgid "Getting requires" +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Vereisten worden opgehaald" -#: libkpackagekit/KpkStrings.cpp:142 -#, fuzzy -#| msgid "Getting updates" +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" -msgstr "Opwaarderingen ophalen" +msgstr "Bijwerkgegevens ophalen" -#: libkpackagekit/KpkStrings.cpp:144 -#, fuzzy -#| msgid "Searching details" +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Details opzoeken" -#: libkpackagekit/KpkStrings.cpp:146 -#, fuzzy -#| msgid "Searching for file" +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Naar bestand zoeken" -#: libkpackagekit/KpkStrings.cpp:148 -#, fuzzy -#| msgid "Searching groups" +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Groepen doorzoeken" -#: libkpackagekit/KpkStrings.cpp:150 -#, fuzzy -#| msgid "Searching by package name" +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Op pakketnaam zoeken" -#: libkpackagekit/KpkStrings.cpp:152 -#, fuzzy -#| msgid "Removing" +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Verwijderen" -#: libkpackagekit/KpkStrings.cpp:154 -#, fuzzy -#| msgid "Installing" +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installeren" -#: libkpackagekit/KpkStrings.cpp:156 -#, fuzzy -#| msgid "Installing file" +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Bestand installeren" -#: libkpackagekit/KpkStrings.cpp:158 -#, fuzzy -#| msgid "Refreshing package cache" +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Pakketcache vernieuwen" -#: libkpackagekit/KpkStrings.cpp:160 -#, fuzzy -#| msgid "Updating packages" +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" -msgstr "Pakketten opwaarderen" +msgstr "Pakketten bijwerken" -#: libkpackagekit/KpkStrings.cpp:162 -#, fuzzy -#| msgid "Updating system" +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" -msgstr "Systeem opwaarderen" +msgstr "Systeem bijwerken" -#: libkpackagekit/KpkStrings.cpp:164 -#, fuzzy -#| msgid "Canceling" +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Annuleren" -#: libkpackagekit/KpkStrings.cpp:166 -#, fuzzy -#| msgid "Rolling back" +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" -msgstr "Terugzetten" +msgstr "Terug rollen" -#: libkpackagekit/KpkStrings.cpp:168 -#, fuzzy -#| msgid "Getting list of repositories" +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Lijst van installatiebronnen ophalen" -#: libkpackagekit/KpkStrings.cpp:170 -#, fuzzy -#| msgid "Enabling repository" +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Installatiebron activeren" -#: libkpackagekit/KpkStrings.cpp:172 -#, fuzzy -#| msgid "Setting repository data" +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Instellen van gegevens over installatiebron" -#: libkpackagekit/KpkStrings.cpp:174 -#, fuzzy -#| msgid "Resolving" +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Oplossen" -#: libkpackagekit/KpkStrings.cpp:176 -#, fuzzy -#| msgid "Got file list" +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" -msgstr "Bestandslijst opgehaald" +msgstr "Bestandenlijst ophalen" -#: libkpackagekit/KpkStrings.cpp:178 -#, fuzzy -#| msgid "Getting what provides" +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" -msgstr "Ophalen wat de pakketten bieden" +msgstr "Ophalen van wat levert" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Ondertekening installeren" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Pakketlijsten ophalen" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Accepteren van EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Downloaden van pakketten" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Ophalen van informatie over opwaardering van de distributie" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting categories" -msgstr "Opwaarderingen ophalen" +msgstr "Categorieën ophalen" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 #, fuzzy #| msgid "Getting information" msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Ophalen van informatie" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1117,7 +1065,7 @@ msgid "Simulating the install of files" msgstr "Installatie van bestand mislukt" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1125,14 +1073,14 @@ msgid "Simulating the install" msgstr "Installatie van bestand mislukt" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Op pakketnaam zoeken" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -1140,224 +1088,224 @@ msgid "Simulating the update" msgstr "1 belangrijke opwaardering" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" -msgstr "Onbekende groep" +msgstr "Onbekend roltype" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 #, fuzzy #| msgid "Got dependencies" msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Afhankelijkheden opgehaald" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 #, fuzzy #| msgid "Got update detail" msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Opwaardeerdetails opgehaald" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 #, fuzzy #| msgid "Got details" msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Details opgehaald" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 #, fuzzy #| msgid "Got requires" msgctxt "The role of the transaction, in past tense" msgid "Got requires" -msgstr "Vereisten opgehaald" +msgstr "Benodigd opgehaald" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 #, fuzzy #| msgid "Got updates" msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Opwaarderingen opgehaald" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 #, fuzzy #| msgid "Searched for package details" msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Op pakketdetails gezocht" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 #, fuzzy #| msgid "Searched for file" msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Naar bestand gezocht" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in past tense" msgid "Searched groups" -msgstr "Groepen doorzoeken" +msgstr "Doorzochte groepen" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" -msgstr "Op pakketnaam zoeken" +msgstr "Pakketnaam opgezocht" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 #, fuzzy #| msgid "Removed packages" msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Verwijderde pakketten" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 #, fuzzy #| msgid "Installed packages" msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Geïnstalleerde pakketten" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 #, fuzzy #| msgid "Installed local files" msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Geïnstalleerde lokale bestanden" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" -msgstr "Pakketcache vernieuwen" +msgstr "Pakketcache vernieuwd" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 #, fuzzy #| msgid "Updated packages" msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Bijgewerkte pakketten" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 #, fuzzy #| msgid "Updated system" msgctxt "The role of the transaction, in past tense" msgid "Updated system" -msgstr "Bijgewerkt systeem" +msgstr "Systeem opgewaardeerd" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 #, fuzzy #| msgid "Canceled" msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Geannuleerd" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 #, fuzzy #| msgid "Rolled back" msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Teruggezet" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 #, fuzzy #| msgid "Got list of repositories" msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Lijst van installatiebronnen opgehaald" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 #, fuzzy #| msgid "Enabled repository" msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" -msgstr "Geactiveerde installatiebron" +msgstr "Installatiebron geactiveerd" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in past tense" msgid "Set repository data" -msgstr "Instellen van gegevens over installatiebron" +msgstr "Gegevens van installatiebron ingesteld" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 #, fuzzy #| msgid "Resolved" msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Opgelost" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 #, fuzzy #| msgid "Got file list" msgctxt "The role of the transaction, in past tense" msgid "Got file list" -msgstr "Bestandslijst opgehaald" +msgstr "Bestandenlijst opgehaald" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 #, fuzzy #| msgid "Got what provides" msgctxt "The role of the transaction, in past tense" msgid "Got what provides" -msgstr "Opgehaald wat de pakketten bieden" +msgstr "Wat levert opgehaald" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in past tense" msgid "Installed signature" -msgstr "Ondertekening installeren" +msgstr "Geïnstalleerde ondertekening" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 #, fuzzy #| msgid "Got package lists" msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Pakketlijsten opgehaald" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 #, fuzzy #| msgid "Accepted EULA" msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Geaccepteerde EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 #, fuzzy #| msgid "Downloaded packages" msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Gedownloade pakketten" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 #, fuzzy #| msgid "Got distribution upgrades" msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Opwaarderingen van de distributie opgehaald" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 #, fuzzy #| msgid "Got what provides" msgctxt "The role of the transaction, in past tense" msgid "Got categories" -msgstr "Opgehaald wat de pakketten bieden" +msgstr "Categorieën opgehaald" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 #, fuzzy #| msgid "Transactions" msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Transacties" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1365,7 +1313,7 @@ msgid "Simulated the install of files" msgstr "Installatie van bestand mislukt" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1373,201 +1321,201 @@ msgid "Simulated the install" msgstr "Installatie van bestand mislukt" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Op pakketnaam zoeken" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to update system" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Kon het systeem niet bijwerken" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Geen netwerkverbinding beschikbaar" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Geen pakketcache beschikbaar" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Onvoldoende geheugen" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Kan geen thread aanmaken" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Niet ondersteund door deze backend" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Er deed zich een interne systeemfout voor" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Een veiligheidvertrouwensrelatie is niet aanwezig" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Het pakket is niet geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Het pakket is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Het pakket is al geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Het downloaden van het pakket is mislukt" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "De groep is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "De groepslijst is ongeldig" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Het oplossen van afhankelijkheden is mislukt" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Het zoekfilter is ongeldig" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "De pakketidentificatie is onjuist geformuleerd" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Transactiefout" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Naam van installatiebron is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Kan een beveiligd systeempakket niet verwijderen" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "De taak is geannuleerd" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "De taak is geforceerd geannuleerd" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Lezen van het configuratiebestand is mislukt" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "De taak kan niet geannuleerd worden" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Broncodepakketten kunnen niet geïnstalleerd worden" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "De licentieovereenkomst is mislukt" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokaal bestandsconflict tussen pakketten" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Pakketten zijn niet compatibel" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Probleem bij het verbinden met een softwarebron" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Initialisatie is mislukt" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Kan geen blokkering verkrijgen" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Geen pakketten om te opwaarderen" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Kan de configuratie van de installatiebron niet wegschrijven" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokale installatie is mislukt" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Foute GPG-ondertekening" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Ontbrekende GPG-ondertekening" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Configuratie van installatiebron is ongeldig" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Ongeldig pakketbestand" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Pakketinstallatie is geblokkeerd" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Pakket is corrupt" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Alle pakketten zijn al geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Het gespecificeerdebestand is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Meer mirrors zijn niet beschikbaar" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 #, fuzzy #| msgid "Distribution upgrade available" msgid "No distribution upgrade data is available" msgstr "Opwaardering van distributie beschikbaar" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "Package is incompatible with this system" @@ -1575,79 +1523,91 @@ "Het pakket dat geïnstalleerd moet worden blijkt al op uw systeem te zijn " "geïnstalleerd." -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Het pakket is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot install from untrusted origin" msgstr "" +"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " +"in een van de softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot update from untrusted origin" msgstr "" +"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " +"in een van de softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgid "Got file list" msgid "Cannot get the file list" msgstr "Bestandslijst opgehaald" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "A system restart is required after this update" msgid "Cannot get package requires" msgstr "Na deze opwaardering dient u het systeem te herstarten" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Het downloaden van het pakket is mislukt" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Te installeren pakketbestand " -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Te installeren pakketbestand " -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Te installeren pakketbestand " -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Te installeren pakketbestand " -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Onbekende fout" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1655,7 +1615,7 @@ "Er is geen netwerkverbinding beschikbaar.\n" "Controleer uw netwerkinstellingen en probeer het opnieuw." -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1663,7 +1623,7 @@ "De pakketlijst dient opnieuw te worden opgebouwd.\n" "Dit hoort de backend automatisch te doen." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1673,19 +1633,19 @@ "gebruikersverzoeken heeft onvoldoende geheugen.\n" "Gaarne enkele programma's sluiten of herstart uw computer." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Er kon geen nieuwe thread worden aangemaakt om het gebruikersverzoek af te " "handelen." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." msgstr "" -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1693,45 +1653,45 @@ "Er deed zich een onverwachte fout voor.\n" "Meld deze a.u.b. met een uitvoerige beschrijving ervan." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Er kon geen vertrouwensrelatie worden opgebouwd met de softwarebron.\n" "Controleer uw beveiligingsinstellingen." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Het pakket dat opgewaardeerd of verwijderd moet worden blijkt niet te zijn " "geïnstalleerd." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " "in een van de softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "" "Het pakket dat geïnstalleerd moet worden blijkt al op uw systeem te zijn " "geïnstalleerd." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1739,7 +1699,7 @@ "Het downloaden van het pakket is mislukt.\n" "Controleer uw netwerkverbinding." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1747,7 +1707,7 @@ "Het groepstype is niet gevonden.\n" "Controleer uw groepenlijst en probeer het opnieuw." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1755,14 +1715,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "De groepenlijst kon niet worden geladen.\n" "Het vernieuwen van uw cache kan helpen, maar normaliter betreft dit een fout " "in de softwarebron." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1770,11 +1730,11 @@ "Een pakket dat benodigd is om de taak te voltooien is niet gevonden.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Het zoekfilter is onjuist geformuleerd." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1784,7 +1744,7 @@ "Normaliter wordt dit door een interne fout veroorzaakt, die zou moeten " "worden gerapporteerd." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1792,29 +1752,29 @@ "Er deed zich fout voor bij het verwerken van de transactie.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "De externe softwarebron is niet gevonden.\n" "Mogelijk dient u een item te activeren in de softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Het verwijderen van een beveiligd systeempakket is niet toegestaan." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "" "De taak is met succes geannuleerd en er deden zich geen pakketwijzigingen " "voor." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1823,7 +1783,7 @@ "voor.\n" "De backend is echter niet goed afgesloten." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1831,11 +1791,11 @@ "Het native-pakket-configuratiebestand kon niet worden geopend.\n" "Controleer of de configuratie geldig is." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Het is niet veilig om op dit moment de taak te annuleren." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1843,7 +1803,7 @@ "Bronpakketten worden normaliter niet op deze manier geïnstalleerd.\n" "Controleer de extensie van het pakket dat u probeert te installeren." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1851,44 +1811,44 @@ "U ging niet akkoord met de licentieovereenkomst.\n" "Door niet akkoord te gaan kunt u deze software niet gebruiken." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Twee pakketten bieden hetzelfde bestand aan.\n" "Normaliter komt dit door het mixen van verschillende softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Er zijn verschillende pakketten die niet compatibel zijn met elkaar.\n" "Normaliter komt dit door het mixen van verschillende softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software source\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Er was een (mogelijk tijdelijk) probleem bij het verbinden met de " "softwarebron.\n" "Controleer het gedetailleerde foutrapport voor meer informatie." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1897,7 +1857,7 @@ "Dit kan gebeuren als andere pakkethulpprogramma's op hetzelfde moment worden " "gebruikt." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1905,7 +1865,7 @@ "Kon de backend niet afsluiten.\n" "Deze fout kan normaliter worden genegeerd." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1913,15 +1873,15 @@ "Kon geen exclusieve vergrendeling voor de pakketbackend krijgen.\n" "Sluit alle andere pakketbeheerprogramma's die mogelijk geopend zijn." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Geen van de geselecteerde pakketten kon worden opgewaardeerd." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "De configuratie van de installatiebronnen kan niet gewijzigd worden." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1929,11 +1889,11 @@ "Installatie van het lokale bestand is mislukt.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "De ondertekening van het pakket kan niet geverifieerd worden." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1942,11 +1902,11 @@ "Het pakket is tijdens het aanmaken ervan niet ondertekent met een GPG-" "sleutel." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "De bronconfiguratie is ongeldig en daardoor onleesbaar." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1954,26 +1914,26 @@ "Het pakket dat u probeert te installeren is niet geldig.\n" "Het pakketbestand kan beschadigd zijn of geen geschikt pakket bevatten." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "Uw pakketconfiguratie verhindert het installeren van dit pakket." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "Het gedownloade pakket is corrupt en het is nodig het opnieuw te downloaden." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Alle voor installatie geselecteerde pakketten zijn al geïnstalleerd op het " "systeem." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1981,20 +1941,20 @@ "Het gespecificeerde bestand is niet gevonden op het systeem.\n" "Controleer of het bestand nog steeds bestaat en niet is verwijderd." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "De vereiste data is niet gevonden op enige geconfigureerde softwarebron.\n" "Er zijn niet nog meer download-mirrors die geprobeerd kunnen worden." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " @@ -2002,13 +1962,13 @@ #| "There were no more download mirrors that could be tried." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "De vereiste data is niet gevonden op enige geconfigureerde softwarebron.\n" "Er zijn niet nog meer download-mirrors die geprobeerd kunnen worden." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "" @@ -2017,66 +1977,66 @@ "Het pakket dat geïnstalleerd moet worden blijkt al op uw systeem te zijn " "geïnstalleerd." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "" "Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " "in een van de softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "" "Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " "in een van de softwarebronnen." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The specified file could not be found" msgid "The file list is not available for this package." msgstr "Het gespecificeerdebestand is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Het gespecificeerdebestand is niet gevonden" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -2088,7 +2048,7 @@ "Een pakket dat benodigd is om de taak te voltooien is niet gevonden.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2100,7 +2060,7 @@ "Installatie van het lokale bestand is mislukt.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2112,7 +2072,7 @@ "Installatie van het lokale bestand is mislukt.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2124,7 +2084,7 @@ "Installatie van het lokale bestand is mislukt.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2136,401 +2096,401 @@ "Installatie van het lokale bestand is mislukt.\n" "Meer informatie is beschikbaar in het gedetailleerde rapport." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 #, fuzzy #| msgid "Accessibility" msgctxt "The group type" msgid "Accessibility" msgstr "Toegankelijkheid" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 #, fuzzy #| msgid "Accessories" msgctxt "The group type" msgid "Accessories" -msgstr "Accessoires" +msgstr "Hulpmiddelen" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 #, fuzzy #| msgid "Education" msgctxt "The group type" msgid "Education" msgstr "Onderwijs" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 #, fuzzy #| msgid "Games" msgctxt "The group type" msgid "Games" msgstr "Spellen" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 #, fuzzy #| msgid "Graphics" msgctxt "The group type" msgid "Graphics" msgstr "Grafisch" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 #, fuzzy #| msgid "Internet" msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 #, fuzzy #| msgid "Office" msgctxt "The group type" msgid "Office" msgstr "Kantoor" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 #, fuzzy #| msgid "Other" msgctxt "The group type" msgid "Other" msgstr "Overig" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 #, fuzzy #| msgid "Development" msgctxt "The group type" msgid "Development" msgstr "Ontwikkeling" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 #, fuzzy #| msgid "Multimedia" msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 #, fuzzy #| msgid "System" msgctxt "The group type" msgid "System" msgstr "Systeem" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 #, fuzzy #| msgid "GNOME desktop" msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME Desktop" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 #, fuzzy #| msgid "KDE desktop" msgctxt "The group type" msgid "KDE desktop" msgstr "KDE Desktop" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 #, fuzzy #| msgid "XFCE desktop" msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE Desktop" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 #, fuzzy #| msgid "Other desktops" msgctxt "The group type" msgid "Other desktops" msgstr "Andere desktops" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 #, fuzzy #| msgid "Publishing" msgctxt "The group type" msgid "Publishing" msgstr "Publiceren" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 #, fuzzy #| msgid "Servers" msgctxt "The group type" msgid "Servers" -msgstr "Severs" +msgstr "Servers" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 #, fuzzy #| msgid "Fonts" msgctxt "The group type" msgid "Fonts" msgstr "Lettertypen" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 #, fuzzy #| msgid "Admin tools" msgctxt "The group type" msgid "Admin tools" msgstr "Administratiehulpmiddelen" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 #, fuzzy #| msgid "Legacy" msgctxt "The group type" msgid "Legacy" msgstr "Legacy" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 #, fuzzy #| msgid "Localization" msgctxt "The group type" msgid "Localization" -msgstr "Taalgebied" +msgstr "Taal-regionalisatie" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 #, fuzzy #| msgid "Virtualization" msgctxt "The group type" msgid "Virtualization" msgstr "Virtualisatie" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 #, fuzzy #| msgid "Security" msgctxt "The group type" msgid "Security" msgstr "Beveiliging" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 #, fuzzy #| msgid "Power management" msgctxt "The group type" msgid "Power management" msgstr "Energiebeheer" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 #, fuzzy #| msgid "Communication" msgctxt "The group type" msgid "Communication" msgstr "Communicatie" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 #, fuzzy #| msgid "Network" msgctxt "The group type" msgid "Network" msgstr "Netwerk" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 #, fuzzy #| msgid "Maps" msgctxt "The group type" msgid "Maps" -msgstr "Kaarten" +msgstr "Indelingen" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 #, fuzzy #| msgid "Software sources" msgctxt "The group type" msgid "Software sources" msgstr "Sofwarebronnen" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 #, fuzzy #| msgid "Science" msgctxt "The group type" msgid "Science" -msgstr "Wetenschap" +msgstr "Wetenschappelijk" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 #, fuzzy #| msgid "Documentation" msgctxt "The group type" msgid "Documentation" msgstr "Documentatie" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 #, fuzzy #| msgid "Electronics" msgctxt "The group type" msgid "Electronics" msgstr "Elektronica" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 #, fuzzy #| msgid "Package collections" msgctxt "The group type" msgid "Package collections" msgstr "Pakketverzamelingen" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 #, fuzzy #| msgid "Vendor" msgctxt "The group type" msgid "Vendor" -msgstr "Fabrikant" +msgstr "Leverancier" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 #, fuzzy #| msgid "Only newest packages" msgctxt "The group type" msgid "Newest packages" -msgstr "Alleen nieuwste pakketten" +msgstr "De nieuwste pakketten" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 #, fuzzy #| msgid "Unknown group" msgctxt "The group type" msgid "Unknown group" msgstr "Onbekende groep" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 #, fuzzy #| msgid "Trivial update" msgctxt "The type of update" msgid "Trivial update" msgstr "Triviale opwaardering" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 #, fuzzy #| msgid "Normal update" msgctxt "The type of update" msgid "Normal update" msgstr "Normale opwaardering" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 #, fuzzy #| msgid "Important update" msgctxt "The type of update" msgid "Important update" msgstr "Belangrijke opwaardering" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 #, fuzzy #| msgid "Security update" msgctxt "The type of update" msgid "Security update" msgstr "Beveiligingsopwaardering" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 #, fuzzy #| msgid "Bug fix update" msgctxt "The type of update" msgid "Bug fix update" msgstr "Bug-fix opwaardering" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 #, fuzzy #| msgid "Enhancement update" msgctxt "The type of update" msgid "Enhancement update" msgstr "Verbeteringsopwaardering" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 #, fuzzy #| msgid "Blocked update" msgctxt "The type of update" msgid "Blocked update" msgstr "Geblokkeerde opwaardering" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 #, fuzzy #| msgid "Installed" msgctxt "The type of update" msgid "Installed" msgstr "Geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 #, fuzzy #| msgid "Available" msgctxt "The type of update" msgid "Available" msgstr "Beschikbaar" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 #, fuzzy #| msgid "Unknown update" msgctxt "The type of update" msgid "Unknown update" msgstr "Onbekende opwaardering" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 triviale opwaardering" msgstr[1] "%1 triviale opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" msgctxt "Type of update, in the case it's just an update" msgid "1 update" msgid_plural "%1 updates" -msgstr[0] "1 opwaardering" +msgstr[0] "%1 opwaarderingen" msgstr[1] "%1 opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 belangrijke opwaardering" msgstr[1] "%1 belangrijke opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 beveiligingsopwaardering" msgstr[1] "%1 beveiligingsopwaarderingen" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 bug-fix opwaardering" msgstr[1] "%1 bug-fix opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 verbeteringsopwaardering" msgstr[1] "%1 verbeteringsopwaardering" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 geblokkeerde opwaardering" msgstr[1] "%1 geblokkeerde opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 geïnstalleerd pakket" msgstr[1] "%1 geïnstalleerde pakketten" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 beschikbaar pakket" msgstr[1] "%1 beschikbare pakketten" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 onbekende opwaardering" msgstr[1] "%1 onbekende opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2539,7 +2499,7 @@ msgstr[0] "1 triviale opwaardering" msgstr[1] "%1 triviale opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2549,7 +2509,7 @@ msgstr[0] "1 opwaardering" msgstr[1] "%1 opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2558,7 +2518,7 @@ msgstr[0] "1 belangrijke opwaardering" msgstr[1] "%1 belangrijke opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2567,7 +2527,7 @@ msgstr[0] "1 beveiligingsopwaardering" msgstr[1] "%1 beveiligingsopwaarderingen" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2576,7 +2536,7 @@ msgstr[0] "1 bug-fix opwaardering" msgstr[1] "%1 bug-fix opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2585,7 +2545,7 @@ msgstr[0] "1 verbeteringsopwaardering" msgstr[1] "%1 verbeteringsopwaardering" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2594,7 +2554,7 @@ msgstr[0] "1 geïnstalleerd pakket" msgstr[1] "%1 geïnstalleerde pakketten" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "All packages are already installed" msgid "1 available package selected to be installed" @@ -2602,7 +2562,7 @@ msgstr[0] "Alle pakketten zijn al geïnstalleerd" msgstr[1] "Alle pakketten zijn al geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2611,7 +2571,7 @@ msgstr[0] "1 triviale opwaardering" msgstr[1] "%1 triviale opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2621,7 +2581,7 @@ msgstr[0] "1 opwaardering" msgstr[1] "%1 opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2630,7 +2590,7 @@ msgstr[0] "1 belangrijke opwaardering" msgstr[1] "%1 belangrijke opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2639,7 +2599,7 @@ msgstr[0] "1 beveiligingsopwaardering" msgstr[1] "%1 beveiligingsopwaarderingen" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2648,7 +2608,7 @@ msgstr[0] "1 bug-fix opwaardering" msgstr[1] "%1 bug-fix opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2657,7 +2617,7 @@ msgstr[0] "1 verbeteringsopwaardering" msgstr[1] "%1 verbeteringsopwaardering" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, fuzzy, kde-format #| msgid "1 blocked update" #| msgid_plural "%1 blocked updates" @@ -2666,7 +2626,7 @@ msgstr[0] "1 geblokkeerde opwaardering" msgstr[1] "%1 geblokkeerde opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2675,7 +2635,7 @@ msgstr[0] "1 geïnstalleerd pakket" msgstr[1] "%1 geïnstalleerde pakketten" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2684,7 +2644,7 @@ msgstr[0] "1 beschikbaar pakket" msgstr[1] "%1 beschikbare pakketten" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, fuzzy, kde-format #| msgid "1 unknown update" #| msgid_plural "%1 unknown updates" @@ -2693,31 +2653,31 @@ msgstr[0] "1 onbekende opwaardering" msgstr[1] "%1 onbekende opwaarderingen" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 #, fuzzy #| msgid "No restart is necessary for this update" msgid "No restart is necessary" msgstr "Voor deze opwaardering is geen herstart vereist" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 #, fuzzy #| msgid "You need to restart the application" msgid "You will be required to restart this application" msgstr "U dient het programma opnieuw te starten" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You will be required to log out and back in" msgstr "U dient uzelf af te melden en opnieuw bij het systeem aan te melden" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 #, fuzzy #| msgid "No restart is required" msgid "A restart will be required" msgstr "Een herstart is niet nodig" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." @@ -2725,262 +2685,470 @@ "Na deze opwaardering dient u uzelf af te melden en opnieuw bij het systeem " "aan te melden" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "No restart is required" msgid "A restart will be required due to a security update." msgstr "Een herstart is niet nodig" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Een herstart is niet nodig" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "No restart is required" msgid "A restart is required" msgstr "Een herstart is niet nodig" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in" msgstr "U dient uzelf af te melden en opnieuw bij het systeem aan te melden" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "U dient het programma opnieuw te starten" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will need to log off and log back on" msgid "You need to log out and log back in to remain secure." msgstr "U dient uzelf af te melden en opnieuw bij het systeem aan te melden" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "No restart is required" msgid "A restart is required to remain secure." msgstr "Een herstart is niet nodig" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabiel" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Onstabiel" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testen" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "Het zoekfilter is ongeldig" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "De groepslijst is ongeldig" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Geen pakketcache beschikbaar" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "Het pakket is niet geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgid "Generating package lists" msgid "A newer package exists" msgstr "Genereren van pakketlijsten" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "Failed to install package" msgid "Could not find package" msgstr "Kon pakket niet installeren" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "Het pakket is al geïnstalleerd" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Het downloaden van het pakket is mislukt" -#: libkpackagekit/KpkStrings.cpp:896 +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 #, fuzzy #| msgid "You don't have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +msgid "You do not have the necessary privileges to perform this action." msgstr "" "U beschikt niet over de noodzakelijke privileges om deze actie uit te voeren." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Kan een beveiligd systeempakket niet verwijderen" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." -msgstr "De ondertekening van het pakket kan niet geverifieerd worden." +msgstr "De service packagekitd kan niet gestart worden." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." -msgstr "De groepslijst is ongeldig" +msgstr "De zoekopdracht is ongeldig." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The package is not installed" msgid "The file is not valid." -msgstr "Het pakket is niet geïnstalleerd" +msgstr "Het bestand is niet geldig." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Failed to install package" msgid "Could not talk to packagekitd." msgstr "Kon pakket niet installeren" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Onbekende fout" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#, fuzzy msgid "Ignore" +msgstr "Negeren" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                          • %2
                                          Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                          • %2
                                          Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +#, fuzzy +#| msgid "Failed to install package" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installeren" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to start search file transaction" +msgstr "Zoeken op wat pakketten bieden mislukt" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The %1 package already provides this file" +msgstr "Het pakket is al geïnstalleerd" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Installatie van bestand mislukt" +msgstr[1] "Installatie van bestanden mislukt" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +#, fuzzy +#| msgid "The following package will be installed:" +#| msgid_plural "The following packages will be installed:" +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Het volgende pakket zal worden geïnstalleerd:" +msgstr[1] "De volgende pakketten zullen worden geïnstalleerd:" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Het bestand is in geen enkel pakket gevonden" +msgstr[1] "Het bestand is in geen enkel pakket gevonden" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to find package" +msgstr "Het pakket is niet gevonden" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "U heeft %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                          And another update" msgid_plural "
                                          And %1 more updates" msgstr[0] "
                                          En nog een opwaardering" msgstr[1] "
                                          En nog %1 opwaarderingen" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Nalopen en opwaarderen" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Niet nu" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 #, fuzzy #| msgid "Don't ask anymore" msgid "Do not ask again" -msgstr "Niet opnieuw vragen" +msgstr "Deze vraag niet meer stellen" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Opwaarderingen worden automatisch geïnstalleerd." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Beveiligingsopwaarderingen worden automatisch geïnstalleerd." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +#, fuzzy +#| msgid "The following package will be removed:" +#| msgid_plural "The following packages will be removed:" +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Het volgende bestand is vereist:" +msgstr[1] "Het volgende bestand is vereist:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Wilt u dit bestand installeren?" +msgstr[1] "Wilt u deze bestanden installeren?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Opwaardering nu starten" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "Distribution upgrade finished. " msgstr "Ophalen van informatie over opwaardering van de distributie" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +#, fuzzy +#| msgid "Transactions" +msgid "Failed to start resolve transaction" +msgstr "Transacties" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgid "Transactions" +msgid "User canceled the transaction" +msgstr "Transacties" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Onbekende fout" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                                          • %2
                                          Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                          • %2
                                          Do you want to search " +"for and install these packages now?" +msgstr[0] "Wilt u dit bestand installeren?" +msgstr[1] "Wilt u deze bestanden installeren?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +#, fuzzy +#| msgid "Failed to install package" +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Het pakket is al geïnstalleerd" +msgstr[1] "Het pakket is al geïnstalleerd" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Kon pakket niet installeren" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " +"in een van de softwarebronnen." +msgstr[1] "" +"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " +"in een van de softwarebronnen." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "Could not find %1" +msgstr "%1 is niet gevonden" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -3005,224 +3173,279 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt en andere dingen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Transacties" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Failed to refresh package lists" -msgid "Refresh package list" -msgstr "Kon pakketlijsten niet verversen" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "Wilt u dit bestand installeren?" +msgstr[1] "Wilt u deze bestanden installeren?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy -#| msgid "Show Updates" -msgid "Show messages" -msgstr "Opwaarderingen tonen" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#| msgid "Failed to install package" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format -#| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Pakketnaam" -msgstr[1] "Pakketnaam" +#| msgid "Failed to install package" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Zoeken" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Zoeken op wat pakketten bieden mislukt" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" msgstr[0] "" msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 -msgid "The system update has completed" +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +msgid "No new fonts can be found for this document" msgstr "" +"Er zijn geen nieuwe programma's gevonden om dit type bestand af te handelen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 -msgctxt "Restart the computer" -msgid "Restart" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Kon geen software vinden" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" -msgstr "%1% - %2" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Onmogelijk om te installeren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "%1" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installeren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Wilt u dit bestand installeren?" +msgstr[1] "Wilt u deze bestanden installeren?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Installeren?" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +#: SmartIcon/PkInstallPackageFiles.cpp:149 #, fuzzy -#| msgid "KPackageKit Settings" -msgid "KPackageKit settings" -msgstr "KPackageKit instellen" +#| msgid "The package is not installed" +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Het bestand is niet geïnstalleerd" +msgstr[1] "Het bestand is niet geïnstalleerd" -#: Settings/KpkSettings.cpp:60 -#, fuzzy -#| msgid "Hourly" -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Elk uur" +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Het bestand werd succesvol geïnstalleerd" +msgstr[1] "De bestanden werden succesvol geïnstalleerd" -#: Settings/KpkSettings.cpp:61 +#: SmartIcon/PkInstallPackageFiles.cpp:235 #, fuzzy -#| msgid "Daily" -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Dagelijks" +#| msgid "Sorry, an error occurred" +msgid "An error occurred." +msgstr "Er is een fout opgetreden." -#: Settings/KpkSettings.cpp:62 -#, fuzzy -#| msgid "Weekly" -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Wekelijks" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                          • %2
                                          Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                          • %2
                                          Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:63 -#, fuzzy -#| msgid "Monthly" -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Maandelijks" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:64 -#, fuzzy -#| msgid "Never" -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nooit" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Alleen veiligheid" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Alle opwaarderingen" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:68 +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 #, fuzzy -#| msgid "None" -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Geen" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Wilt u dit bestand installeren?" +msgstr[1] "Wilt u deze bestanden installeren?" -#: Settings/KpkSettings.cpp:163 +#: SmartIcon/PkInstallGStreamerResources.cpp:165 #, fuzzy -#| msgid "You don't have the necessary privileges to perform this action." -msgid "You do not have the necessary privileges to perform this action." +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Could not find plugin in any configured software source" msgstr "" -"U beschikt niet over de noodzakelijke privileges om deze actie uit te voeren." +"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " +"in een van de softwarebronnen." -#: Settings/KpkSettings.cpp:164 +#: SmartIcon/PkInstallGStreamerResources.cpp:167 #, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to set origin data" -msgstr "Initialisatie is mislukt" +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Zoeken op wat pakketten bieden mislukt" -#: KPackageKit/KpkInstallProvideFile.cpp:47 +#: SmartIcon/PkSearchFile.cpp:91 #, fuzzy -#| msgid "The following package will be removed:" -#| msgid_plural "The following packages will be removed:" -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Het volgende pakket zal worden verwijderd:" -msgstr[1] "De volgende pakketten zullen worden verwijderd:" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The file name could not be found in any software source" +msgstr "" +"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " +"in een van de softwarebronnen." + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Transacties" -#: KPackageKit/KpkInstallProvideFile.cpp:50 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Wilt u dit bestand installeren?" -msgstr[1] "Wilt u deze bestanden installeren?" +#| msgid "Failed to refresh package lists" +msgid "Refresh package list" +msgstr "Kon pakketlijsten niet verversen" -#: KPackageKit/KpkInstallProvideFile.cpp:57 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy -#| msgid "Failed to install package" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Kon pakket niet installeren" -msgstr[1] "Kon pakket niet installeren" +#| msgid "Show Updates" +msgid "Show messages" +msgstr "Opwaarderingen tonen" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "Kon pakket niet installeren" -msgstr[1] "Kon pakket niet installeren" +#| msgid "Package Name" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Pakketnaam" +msgstr[1] "Pakketnaam" -#: KPackageKit/KpkInstallProvideFile.cpp:68 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Installeren" +msgid "The system update has completed" +msgstr "De systeemopwaardering is voltooid" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 #, fuzzy -#| msgid "Failed to search for provides" -msgid "Failed to start search file transaction" -msgstr "Zoeken op wat pakketten bieden mislukt" +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Herstarten" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "Het pakket is al geïnstalleerd" +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Niet nu" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 #, fuzzy -#| msgid "The following package will be installed:" -#| msgid_plural "The following packages will be installed:" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Het volgende pakket zal worden geïnstalleerd:" -msgstr[1] "De volgende pakketten zullen worden geïnstalleerd:" +msgid "Logout" +msgstr "Afmelden" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -#, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Het gespecificeerdebestand is niet gevonden" -msgstr[1] "Het gespecificeerdebestand is niet gevonden" +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" -#: KPackageKit/KpkInstallProvideFile.cpp:118 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 #, fuzzy -#| msgid "Failed to install package" -msgid "Failed to find package" -msgstr "Kon pakket niet installeren" +msgid "Message" +msgstr "Bericht" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 #, fuzzy #| msgid "Failed to install package" msgid "A program wants to remove a file" @@ -3230,14 +3453,15 @@ msgstr[0] "Kon pakket niet installeren" msgstr[1] "Kon pakket niet installeren" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "Failed to install package" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "Kon pakket niet installeren" +msgstr[1] "Kon pakket niet installeren" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 #, fuzzy #| msgid "The following package will be removed:" #| msgid_plural "The following packages will be removed:" @@ -3246,7 +3470,7 @@ msgstr[0] "Het volgende pakket zal worden verwijderd:" msgstr[1] "De volgende pakketten zullen worden verwijderd:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" @@ -3258,14 +3482,14 @@ msgstr[0] "Wilt u dit bestand installeren?" msgstr[1] "Wilt u deze bestanden installeren?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 #, fuzzy #| msgid "Search" msgctxt "Search for a package and remove" msgid "Search" msgstr "Zoeken" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 #, fuzzy #| msgid "The following package will be removed:" #| msgid_plural "The following packages will be removed:" @@ -3274,7 +3498,7 @@ msgstr[0] "Het volgende pakket zal worden verwijderd:" msgstr[1] "De volgende pakketten zullen worden verwijderd:" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -3282,234 +3506,239 @@ msgstr[0] "Het gespecificeerdebestand is niet gevonden" msgstr[1] "Het gespecificeerdebestand is niet gevonden" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "Could not find %1" -msgstr "Kon pakket niet installeren" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                                          • %1
                                          • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Show Updates" -msgid "Show updates" -msgstr "Opwaarderingen tonen" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:47 -#, fuzzy -#| msgid "Show Settings" -msgid "Show settings" -msgstr "Instellingen tonen" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:48 +#: SmartIcon/PkInstallMimeTypes.cpp:68 #, fuzzy -#| msgid "Searched for package details" -msgid "Show backend details" -msgstr "Op pakketdetails gezocht" +#| msgid "Search" +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Zoeken" -#: KPackageKit/main.cpp:49 +#: SmartIcon/PkInstallMimeTypes.cpp:121 #, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" -msgid "Mime type installer" -msgstr "Installatie van bestand mislukt" +msgid "No new applications can be found to handle this type of file" +msgstr "" +"Er zijn geen nieuwe programma's gevonden om dit type bestand af te handelen" -#: KPackageKit/main.cpp:50 -#, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "Te installeren pakketbestand " +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Kon geen software vinden" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" -msgid "Single file installer" -msgstr "Installatie van bestand mislukt" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                            Do you want to install this catalog?

                                            • %2
                                            " +msgid_plural "" +"

                                            Do you want to install these catalogs?

                                            • %2
                                            " +msgstr[0] "Wilt u dit bestand installeren?" +msgstr[1] "Wilt u deze bestanden installeren?" -#: KPackageKit/main.cpp:52 +#: SmartIcon/PkInstallCatalogs.cpp:58 #, fuzzy -#| msgid "Searching by package name" -msgid "Single package remover" -msgstr "Op pakketnaam zoeken" +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Nu installeren" +msgstr[1] "Nu installeren" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Te installeren pakketbestand " +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Installeren" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "De huidige backend kan geen pakketten installeren." -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Onmogelijk om te installeren" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Niet ondersteund door deze backend" -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Installeren" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Te installeren pakketbestand " +msgstr[1] "Te installeren pakketbestand " -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Wilt u dit bestand installeren?" -msgstr[1] "Wilt u deze bestanden installeren?" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to remove package" +msgid "Failed to open" +msgstr "Kon pakket niet verwijderen" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Installeren?" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Broncodepakketten kunnen niet geïnstalleerd worden" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 +#: SmartIcon/PkInstallCatalogs.cpp:206 #, fuzzy -#| msgid "The package is not installed" -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Het pakket is niet geïnstalleerd" -msgstr[1] "Het pakket is niet geïnstalleerd" +#| msgid "Transactions" +msgid "Failed to start setup transaction" +msgstr "Transacties" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Installatie van bestand mislukt" -msgstr[1] "Installatie van bestanden mislukt" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +#, fuzzy +#| msgid "KPackageKit Settings" +msgid "KPackageKit settings" +msgstr "KPackageKit instellen" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Het bestand werd succesvol geïnstalleerd" -msgstr[1] "De bestanden werden succesvol geïnstalleerd" +#: Settings/KpkSettings.cpp:61 +#, fuzzy +#| msgid "Hourly" +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Elk uur" -#: KPackageKit/KpkInstallFiles.cpp:197 +#: Settings/KpkSettings.cpp:62 #, fuzzy -#| msgid "Sorry, an error occurred" -msgid "An error occurred." -msgstr "Helaas, er trad een fout op" +#| msgid "Daily" +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Dagelijks" -#: KPackageKit/KpkInstallPackageName.cpp:47 +#: Settings/KpkSettings.cpp:63 #, fuzzy -#| msgid "A system restart is required after this update" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Na deze opwaardering dient u het systeem te herstarten" -msgstr[1] "Na deze opwaardering dient u het systeem te herstarten" +#| msgid "Weekly" +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Wekelijks" -#: KPackageKit/KpkInstallPackageName.cpp:50 +#: Settings/KpkSettings.cpp:64 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Wilt u dit bestand installeren?" -msgstr[1] "Wilt u deze bestanden installeren?" +#| msgid "Monthly" +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Maandelijks" -#: KPackageKit/KpkInstallPackageName.cpp:57 +#: Settings/KpkSettings.cpp:65 #, fuzzy -#| msgid "Failed to install package" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Kon pakket niet installeren" -msgstr[1] "Kon pakket niet installeren" +#| msgid "Never" +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nooit" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "Failed to install package" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "Kon pakket niet installeren" -msgstr[1] "Kon pakket niet installeren" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Alleen veiligheid" -#: KPackageKit/KpkInstallPackageName.cpp:68 +#: Settings/KpkSettings.cpp:68 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installeren" +#| msgid "All Updates" +msgid "All updates" +msgstr "Alle opwaarderingen" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:69 #, fuzzy -#| msgid "Transactions" -msgid "Failed to start resolve transaction" -msgstr "Transacties" +#| msgid "None" +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Geen" -#: KPackageKit/KpkInstallPackageName.cpp:112 +#: Settings/KpkSettings.cpp:167 #, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " -"in een van de softwarebronnen." -msgstr[1] "" -"Het pakket dat gewijzigd moet worden is niet op uw computer gevonden, noch " -"in een van de softwarebronnen." +#| msgid "Failed to initialize" +msgid "Failed to set origin data" +msgstr "Initialisatie is mislukt" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                            %1
                                            Do " -"you want to search for a program to open this file type now?" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Show Updates" +msgid "Show updates" +msgstr "Opwaarderingen tonen" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:47 +#, fuzzy +#| msgid "Show Settings" +msgid "Show settings" +msgstr "Instellingen tonen" -#: KPackageKit/KpkInstallMimeType.cpp:64 +#: KPackageKit/main.cpp:48 #, fuzzy -#| msgid "Search" -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Zoeken" +#| msgid "Searched for package details" +msgid "Show backend details" +msgstr "Op pakketdetails gezocht" -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Zoeken op wat pakketten bieden mislukt" +#: KPackageKit/main.cpp:49 +#, fuzzy +#| msgid "Failed to install file" +#| msgid_plural "Failed to install files" +msgid "Mime type installer" +msgstr "Installatie van bestand mislukt" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "Te installeren pakketbestand " -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Failed to install file" +#| msgid_plural "Failed to install files" +msgid "Single file installer" +msgstr "Installatie van bestand mislukt" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Kon geen software vinden" +#: KPackageKit/main.cpp:52 +#, fuzzy +#| msgid "Searching by package name" +msgid "Single package remover" +msgstr "Op pakketnaam zoeken" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Te installeren pakketbestand " #: rc.cpp:1 +#, fuzzy msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "" +msgstr "Rinse de Vries" #: rc.cpp:2 #, fuzzy #| msgid "Got details" msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "Details opgehaald" +msgstr "rinsedevries@kde.nl" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3517,13 +3746,13 @@ msgid "Select all updates" msgstr "Beveiligingsopwaardering" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Herladen" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3563,189 +3792,192 @@ msgid "Required by" msgstr "Benodigd door" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Software toevoegen en verwijderen" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Pakketten zoeken" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filters" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Alle pakketten" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Transactie" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Actie" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Downloaden van pakketten" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Een bibliotheek voor blabla" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TekstLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libblabla" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" -msgstr "Actie" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TekstLabel" +msgstr "Acties" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Naam installatiebron:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL-adres van ondertekening:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identificatie van gebruiker van ondertekening:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificatie van ondertekening:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Herkent u de gebruiker en vertrouwt u diens sleutel?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Instellingen" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit instellen" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Controleren op opwaarderingen:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "Bijwerken" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automatisch installeren:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Controleren op opwaarderingen:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Slim systeemvakpictogram" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Automatisch installeren:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Geef een kennisgeving wanneer opwaarderingen beschikbaar zijn" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Geef een kennisgeving wanneer langdurige taken gereed zijn" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Oorsprong van pakketten" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 +#, fuzzy msgid "About Backend" -msgstr "" +msgstr "Info over backend" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 #, fuzzy #| msgid "Package Name" msgid "Backend name:" -msgstr "Pakketnaam" +msgstr "Backend-naam:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package Name" msgid "backend name here" @@ -3753,273 +3985,332 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 +#, fuzzy msgid "Backend author:" -msgstr "" +msgstr "Backend-auteur:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by description" +msgid "Backend description:" +msgstr "Zoeken op beschrijving" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package Name" +msgid "backend description here" +msgstr "Pakketnaam" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Pakketinstallatie is geblokkeerd" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 +#, fuzzy msgid "Newest" -msgstr "" +msgstr "Nieuwste" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 +#, fuzzy msgid "GUI" -msgstr "" +msgstr "GUI" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Alleen vrije software" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Opwaarderingen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgid "Updated packages" msgid "UpdatePackage" msgstr "Bijgewerkte pakketten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 #, fuzzy #| msgid "Repository" msgid "GetRepositoryList" msgstr "Repository" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Herladen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgid "Installed packages" msgid "InstallPackage" msgstr "Geïnstalleerde pakketten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 #, fuzzy #| msgid "Repository name:" msgid "RepositoryEnable" msgstr "Naam installatiebron:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgid "Updated system" msgid "UpdateSystem" msgstr "Bijgewerkt systeem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgid "Removed packages" msgid "RemovePackage" msgstr "Verwijderde pakketten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Naam installatiebron:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgid "Search" msgid "SearchName" msgstr "Zoeken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Is afhankelijk van" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 #, fuzzy #| msgid "Got what provides" msgid "WhatProvides" msgstr "Opgehaald wat de pakketten bieden" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgid "Searching details" msgid "SearchDetails" msgstr "Details opzoeken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgid "Got requires" msgid "GetRequires" msgstr "Vereisten opgehaald" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Alle pakketten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgid "Searching groups" msgid "SearchGroup" msgstr "Groepen doorzoeken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgid "Got update detail" msgid "GetUpdateDetail" msgstr "Opwaardeerdetails opgehaald" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgid "Search" msgid "SearchFile" msgstr "Zoeken" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Beschrijving" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Details" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgid "Resolved" msgid "Resolve" msgstr "Opgelost" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Geïnstalleerd" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Geïnstalleerd" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "Installed packages" msgid "SimulateInstallPackages" msgstr "Geïnstalleerde pakketten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "Removed packages" msgid "SimulateRemovePackages" msgstr "Verwijderde pakketten" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "Updated packages" msgid "SimulateUpdatePackages" msgstr "Bijgewerkte pakketten" +#, fuzzy +#~| msgid "Transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Transacties" + +#, fuzzy +#~| msgid "A system restart is required after this update" +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Na deze opwaardering dient u het systeem te herstarten" +#~ msgstr[1] "Na deze opwaardering dient u het systeem te herstarten" + +#, fuzzy +#~| msgid "Do you want to install this file?" +#~| msgid_plural "Do you want to install these files?" +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Wilt u dit bestand installeren?" +#~ msgstr[1] "Wilt u deze bestanden installeren?" + +#~ msgid "All packages" +#~ msgstr "Alle pakketten" + +#, fuzzy +#~| msgid "You don't have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "U hebt niet de benodigde privileges om deze actie uit te voeren." + +#~ msgid "Package Name" +#~ msgstr "Pakketnaam" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKit instellen" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Slim systeemvakpictogram" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Geef een kennisgeving wanneer langdurige taken gereed zijn" + +#~ msgid "A library to do foo" +#~ msgstr "Een bibliotheek voor blabla" + #~ msgid "Confirm" #~ msgstr "Bevestigen" #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "De volgende pakketten moeten ook worden verwijderd/geïnstalleerd:" -#~ msgid "Failed to update package lists" -#~ msgstr "Kon pakketlijsten niet bijwerken" - #~ msgid "Failed to refresh package lists" #~ msgstr "Kon pakketlijsten niet verversen" @@ -4078,9 +4369,6 @@ #~ msgid "Downloading" #~ msgstr "Downloaden" -#~ msgid "Updating" -#~ msgstr "Bijwerken" - #~ msgid "Cleaning Up" #~ msgstr "Bezig met opschonen" @@ -4093,9 +4381,6 @@ #~ msgid "Find by &Name" #~ msgstr "Zoeken op &naam" -#~ msgid "Find by description" -#~ msgstr "Zoeken op beschrijving" - #~ msgid "Find by file name" #~ msgstr "Zoeken op bestandsnaam" diff -Nru kpackagekit-0.5.4/po/nn/kpackagekit.po kpackagekit-0.6.0/po/nn/kpackagekit.po --- kpackagekit-0.5.4/po/nn/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/nn/kpackagekit.po 2010-01-30 09:03:01.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: KDE 4\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-07-10 21:53+0200\n" "Last-Translator: Sveinung Kvilhaugsvik \n" "Language-Team: Norwegian Nynorsk \n" @@ -31,11 +31,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detaljar" @@ -97,20 +97,20 @@ "Det er tilrådd at du ikkje tek ut stikkontakten frå datamaskina di mens " "oppgraderinga vert utført." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Distribusjonsoppgraderinga er ferdig." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Distribusjonsoppgraderinga vart avslutta med kode %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Klarte ikkje starta prosessen for distribusjonsoppgradering." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -118,7 +118,7 @@ "Prosessen for distribusjonsoppgradering krasja kort tid etter at han vart " "starta." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" "Prosessen for distribusjonsoppgradering var mislukka av ein ukjend grunn." @@ -199,28 +199,24 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Pakkenamn" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Heimeside" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Lisens" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Gruppe" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Heimeside" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Storleik" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "" @@ -232,244 +228,253 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Finn" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "" msgstr[1] "" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Avbryt" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Finn etter &filnamn" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Finn etter &skildring" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Samlingar" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Berre samlingar" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Ikkje ta med samlingar" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installerte" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Berre installerte" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Berre tilgjengelege" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Ingen filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Utvikling" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Berre utvikling" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Berre sluttbrukarfilar" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafiske" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Berre grafiske" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Berre tekst" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Frie" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Berre fri programvare" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Berre ufri programvare" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arkitekturar" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Berre lokalarkitekturar" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Berre fjernarkitekturar" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Kjeldekode" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Berre kjeldekode" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Berre ikkje-kjeldekode" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Gøym underpakkar" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Vis berre éin pakke, ikkje underpakkane" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Berre nyaste pakkar" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Berre vis den nyaste pakken" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Vis i grupper" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Vis pakkar i grupper etter status" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Bruk no" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:177 -msgid "Current backend does not support installing packages." +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." msgstr "" -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Gøym" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Installerer usignert programvare" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "" @@ -489,7 +494,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Lisensavtalen er påkravd" @@ -502,13 +507,13 @@ msgid "Version" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Avbryt" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Ferdig på %1." @@ -558,807 +563,815 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Programvaresignatur er påkravd" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" -msgstr "Ukjend tilstand" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" -msgstr "Ventar på tenesta" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" -msgstr "Ventar på andre oppgåver" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" -msgstr "Køyrer oppgåve" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" -msgstr "Spørjing" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" -msgstr "Henta informasjon" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" -msgstr "Lastar ned pakkar" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" -msgstr "Oppdaterer programvarelista" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" -msgstr "Oppdaterer pakkane" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" -msgstr "Løyser avhengnader" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" -msgstr "Kontrollerer singaturar" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" -msgstr "Tilbakestiller" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" -msgstr "Testar endringar" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" -msgstr "Melder inn endringar" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" -msgstr "Spør etter data" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" -msgstr "Ferdig" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" -msgstr "Avbryt" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" -msgstr "Lastar ned informasjon om fillager" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" -msgstr "Lastar ned pakkeliste" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" -msgstr "Lastar ned fillister" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" -msgstr "Lastar ned grupper" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" -msgstr "Lastar ned oppdateringsinformasjon" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" -msgstr "Pakkar om filer" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" -msgstr "Lastar inn mellomlager" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" -msgstr "Ser gjennom installerte program" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" -msgstr "Lagar pakkelister" +msgstr "" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Oppdatert" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installerte" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Hentar avhengnader" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Hentar oppdateringsdetaljar" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Hentar detaljar" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Hentar oppdateringar" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Søkjedetaljar" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Søkjer etter fil" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Søkjegrupper" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Søkjer etter pakkenamn" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Fjernar" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installerer" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Installerer fil" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Lastar pakkelageret om att" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Oppdaterer pakkane" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Oppdaterer systemet" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Avbryt" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Tilbakestiller" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Hentar fillagerliste" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Tek i bruk fillager" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Set opp fillagerdata" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Løyser" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Installerer signatur" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Hentar pakkelister" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Godtek EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Lastar ned pakkar" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Hentar informasjon om distribusjonsoppgradering" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Inga nettverkstilkopling tilgjengeleg" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Pakkelager er ikkje tilgjengeleg" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Ikkje nok minne" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Klarte ikkje laga tråd" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Ikkje støtta av denne motoren" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Ein intern systemfeil oppstod" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Det finst ikkje noko forhold for tryggleik og pålitelegskap" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Pakken er ikkje installert" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Pakken vart ikkje funnen" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Pakken er installert frå før" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Pakken vart ikkje lasta ned" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Gruppa vart ikkje funnen" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Gruppelista var ugyldig" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Avhengnadene vart ikkje løyste" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Søkjefilteret var ugyldig" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Pakke-ID-en var misforma" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Overføringsfeil" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Fillagernamnet vart ikkje funne" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Klarte ikkje fjerna pakken. Han er ein verna systempakke" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Oppgåva vart avbroten" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Oppgåva vart avbroten med tvang" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Klarte ikkje lesa oppsettsfila" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Oppgåva kan ikkje avbrytast" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Kjeldepakkar kan ikkje installerast" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Lisensavtalen vart ikkje godkjend" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokal filkonflikt mellom pakkar" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Pakkane er ikkje kompatible" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Klarte ikkje førebu" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Klarte ikkje gjera ferdig" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Klarer ikkje henta lås" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Ingen pakkar treng oppdatering" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Klarer ikkje lagra fillageroppsett" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokalinstallasjonen var mislukka" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Øydelagd GPG-signatur" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Manglande GPG-signatur" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Fillageroppsettet er ugyldig" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Ugyldig pakkefil" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Pakkeinstallasjonen vart blokkert" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Pakken er øydelagd" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Alle pakkane er installerte frå før" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Den oppgjevne fila vart ikkje funnen" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Ingen fleire speglar er tilgjengelege" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Ukjend feil" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1366,7 +1379,7 @@ "Inga nettverkstilkopling er tilgjengeleg.\n" "Sjå til at oppsettet ditt er rett og prøv ein gong til" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1374,7 +1387,7 @@ "Pakkelista må lagast på nytt.\n" "Motoren skulle ha gjort dette automatisk." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1383,11 +1396,11 @@ "Tenesta som handsamar brukarførespurnader har ikkje meir minne.\n" "Avslutt nokre program eller start datamaskina om att." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Klarte ikkje oppretta ein tråd for å svara på brukarførespurnaden." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1395,7 +1408,7 @@ "Handlinga er ikkje støtta av denne motoren.\n" "Du bør senda inn ei feilmelding sidan dette ikkje skal skje." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1403,28 +1416,28 @@ "Det oppstod eit uventa problem.\n" "Du bør senda inn ei feilmelding med ei skildring av feilen." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "Pakken du prøver å fjerna eller oppdatera er ikkje installert." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Pakken du prøver å installera er installert frå før." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1432,7 +1445,7 @@ "Klarte ikkje lasta ned pakken.\n" "Sjå til at du er kopla til Internett." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1440,14 +1453,14 @@ "Fann ikkje gruppetypen.\n" "Sjekk gruppelista og prøv ein gong til." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1455,11 +1468,11 @@ "Ein pakkeavhengnad vart ikkje funnen.\n" "Meir informasjon om dette kan du finna i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Søkjefilteret er misforma." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1467,7 +1480,7 @@ "Pakke-ID-en var misforma då han vert send til systemtenesta.\n" "Dette er vanlegvis ein internfeil som du bør feilmelda." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1475,21 +1488,21 @@ "Det oppstod ein feil under overføringa.\n" "Meir informasjon om dette kan du finna i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Det er ikkje tillate å fjerna ein verna systempakke." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Oppgåva vart avbroten og ingen pakkar vart endra." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1497,7 +1510,7 @@ "Oppgåva vart avbroten og ingen pakkar vart endra.\n" "Motoren vart ikkje skikkeleg avslutta." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1505,11 +1518,11 @@ "Klarte ikkje opna den lokale pakkeoppsettsfila.\n" "Sjå til at systemoppsettet er gyldig." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Det er ikkje trygt å avbryte oppgåva akkurat no." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1517,7 +1530,7 @@ "Kjeldepakkar vert vanlegvis ikkje installerte på denne måten.\n" "Sjå kva for filetternamn fila du prøver å installera har." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1525,25 +1538,25 @@ "Du har ikkje godkjent lisensavtalen.\n" "Det må du for å bruka denne programvara." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1551,7 +1564,7 @@ "Pakkemotoren vart ikkje lasta inn.\n" "Årsaka til dette kan vera at eit anna pakkeverktøy er i bruk." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1559,7 +1572,7 @@ "Klarte ikkje avslutta motoren.\n" "Du kan vanlegvis oversjå denne feilen." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1567,15 +1580,15 @@ "Klarer ikkje å få eksklusiv lås på pakkemotoren.\n" "Lukk eventuelle andre arveverktøy for pakking som dukkar opp." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Klarte ikkje oppdatera nokon av dei valde pakkane." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Klarte ikkje endra fillageroppsettet." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1583,11 +1596,11 @@ "Lokalfila vart ikkje installert.\n" "Meir informasjon om dette kan du finna i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Klarte ikkje stadfesta om pakkesignaturen er gyldig." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1595,11 +1608,11 @@ "Pakkesignaturen mangla og pakken er ikkje til å lita på.\n" "Pakken vart ikkje signert med ein GPG-nøkkel då han vart laga." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Fillageroppsettet var ugyldig og ikkje lesbart." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1607,24 +1620,24 @@ "Pakken du prøver å installera er ugyldig.\n" "Pakkefila er anten øydelagd eller så er det ikkje ein skikkeleg pakke." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "Pakkesystemoppsettet hindra denne pakken i å verta installert" -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "Pakken som vart lasta ned er øydelagd. Han må derfor lastast ned på nytt." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Alle pakkane du har valt å installera er installerte frå før." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1632,98 +1645,98 @@ "Den oppgjevne fila vart ikkje funnen på systemet.\n" "Sjå til at ho framleis finst og ikkje er sletta." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1731,239 +1744,239 @@ "Ukjend feil. Du bør senda inn ei feilmelding.\n" "Meir informasjon om dette kan du finna i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Tilgjenge" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Tilhøyr" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Utdanning" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Spel" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Bilete" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internett" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kontor" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Anna" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Utvikling" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "System" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME-skrivebordet" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE-skrivebordet" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE-skrivebordet" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Andre skrivebord" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publisering" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Tenarar" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Skrifttypar" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Administratorverktøy" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Arv" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Lokalisering" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Visualisering" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Tryggleik" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Straumhandsaming" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Kommunikasjon" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Nettverk" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Kart" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Programvarekjelder" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Vitskap" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentasjon" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronikk" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Pakkesamlingar" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Ukjend gruppe" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Enkel oppdatering" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Viktig oppdatering" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Tryggleiksoppdatering" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Feilfiksoppdatering" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Forbetringsoppdatering" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blokkert oppdatering" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Installerte" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Tilgjengeleg" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Ukjend oppdatering" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 enkel oppdatering" msgstr[1] "%1 enkle oppdateringar" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -1971,70 +1984,70 @@ msgstr[0] "1 oppdatering" msgstr[1] "%1 oppdateringar" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 viktig oppdatering" msgstr[1] "%1 viktige oppdateringar" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 tryggleiksoppdatering" msgstr[1] "%1 tryggleiksoppdateringar" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 feilfiksoppdatering" msgstr[1] "%1 feilfiksoppdateringar" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 forbetringsoppdatering" msgstr[1] "%1 forbetringsoppdateringar" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blokkert oppdatering" msgstr[1] "%1 blokkerte oppdateringar" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 installert pakke" msgstr[1] "%1 installerte pakkar" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 tilgjengeleg pakke" msgstr[1] "%1 tilgjengelege pakkar" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 ukjend oppdatering" msgstr[1] "%1 ukjende oppdateringar" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2042,56 +2055,56 @@ msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2099,294 +2112,454 @@ msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "" msgstr[1] "" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabil" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Ustabil" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testar" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "" -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                            • %2
                                            Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                            • %2
                                            Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installer" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                            And another update" msgid_plural "
                                            And %1 more updates" msgstr[0] "
                                            Og éi oppdatering til" msgstr[1] "
                                            Og %1 oppdateringar til" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Sjå gjennom og oppdater" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Oppdateringar vert installerte automatisk." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Tryggleiksoppdateringar vert installerte automatisk." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Systemoppdateringa var mislukka." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "" +msgstr[1] "" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Start oppgraderinga no" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Distribusjonsoppgraderinga er ferdig. " -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                            • %2
                                            Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                            • %2
                                            Do you want to search " +"for and install these packages now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installer" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2410,198 +2583,256 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt og anna" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Overføringar" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 -msgid "Refresh package list" -msgstr "" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 -msgid "Show messages" -msgstr "" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" msgstr[0] "" msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" msgstr[0] "" msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 -msgid "The system update has completed" -msgstr "" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 -msgctxt "Restart the computer" -msgid "Restart" -msgstr "" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" msgstr "" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Kvar time" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Klarte ikkje installera" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Kvar dag" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installer" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Kvar veke" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Vil du installera denne fila?" +msgstr[1] "Vil du installera desse filene?" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Kvar månad" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Vil du installera?" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Aldri" +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Berre tryggleik" +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Alle oppdateringar" +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Ingen" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                            • %2
                                            Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                            • %2
                                            Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/PkInstallGStreamerResources.cpp:104 #, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Installer" +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Overføringar" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, kde-format +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" msgstr "" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2610,195 +2841,185 @@ msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" -msgstr "" - -#: KPackageKit/main.cpp:46 -msgid "Show updates" -msgstr "" - -#: KPackageKit/main.cpp:47 -msgid "Show settings" +msgid "" +"An additional program is required to open this type of file:
                                            • %1
                                            • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/main.cpp:48 -msgid "Show backend details" -msgstr "" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:49 -msgid "Mime type installer" -msgstr "" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:50 -msgid "Package name installer" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" msgstr "" -#: KPackageKit/main.cpp:51 -msgid "Single file installer" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" msgstr "" -#: KPackageKit/main.cpp:52 -msgid "Single package remover" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" msgstr "" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Pakkefil som skal installerast" - -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                              Do you want to install this catalog?

                                              • %2
                                              " msgid_plural "" -"These items are not supported by your backend, or they are not files." +"

                                              Do you want to install these catalogs?

                                              • %2
                                              " msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Klarte ikkje installera" +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/KpkInstallFiles.cpp:98 +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" msgid "Install" -msgstr "Installer" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Vil du installera denne fila?" -msgstr[1] "Vil du installera desse filene?" +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Vil du installera?" +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Ikkje støtta" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" msgstr[0] "" msgstr[1] "" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Klarte ikkje opna" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "" -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "" -msgstr[1] "" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "" -msgstr[1] "" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Kvar time" -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "" -msgstr[1] "" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Kvar dag" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "" -msgstr[1] "" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Kvar veke" -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installer" +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Kvar månad" -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Aldri" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" msgstr "" -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -msgstr[1] "" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                              %1
                                              Do " -"you want to search for a program to open this file type now?" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Ingen" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" +#: KPackageKit/main.cpp:47 +msgid "Show settings" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" +#: KPackageKit/main.cpp:48 +msgid "Show backend details" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" +#: KPackageKit/main.cpp:50 +msgid "Package name installer" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" +#: KPackageKit/main.cpp:51 +msgid "Single file installer" msgstr "" +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Pakkefil som skal installerast" + #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2809,19 +3030,19 @@ msgid "Your emails" msgstr "" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Last om att" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2859,388 +3080,390 @@ msgid "Required by" msgstr "Påkravd av" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Legg til og fjern program" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filter" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Alle pakkar" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit – Overføring" +msgid "Transaction" +msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Lastar ned pakkar" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Eit bibliotek som gjer foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 -msgid "Actions" -msgstr "" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:80 -msgid "TextLabel" +msgid "Actions" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Namn på fillager:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Signaturadresse:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Signatur-brukar-ID:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Signatur-ID:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Vil du godkjenna brukaren og denne nøkkelen?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Vil du lita på pakkeopphavet?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Ver venleg og les denne viktige informasjonen før du held fram:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Innstillingar" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Innstillingar for KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Sjå etter oppdateringar" +msgid "Update settings" +msgstr "" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Installer automatisk:" +msgid "Check for updates:" +msgstr "" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Systemtrauikon" +msgid "Automatically install:" +msgstr "" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Varsla når det kjem nye oppdateringar" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Varsla når lange oppgåver er ferdige" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "Pakkeopphav" +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Vis opphava til feilsøkings- og utviklingspakkar" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "" diff -Nru kpackagekit-0.5.4/po/pa/kpackagekit.po kpackagekit-0.6.0/po/pa/kpackagekit.po --- kpackagekit-0.5.4/po/pa/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/pa/kpackagekit.po 2010-01-30 09:03:15.000000000 +0000 @@ -2,15 +2,15 @@ # Copyright (C) YEAR This_file_is_part_of_KDE # This file is distributed under the same license as the PACKAGE package. # -# A S Alam , 2008, 2009. +# A S Alam , 2008, 2009, 2010. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-09 06:50+0530\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2010-01-14 08:33+0530\n" "Last-Translator: A S Alam \n" -"Language-Team: Punjabi/Panjabi \n" +"Language-Team: ਪੰਜਾਬੀ \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -28,18 +28,18 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "ਵੇਰਵਾ" #: Updater/KpkSimpleTransactionModel.cpp:49 msgctxt "Machine user who issued the transaction" msgid "Username" -msgstr "" +msgstr "ਯੂਜ਼ਰ-ਨਾਂ" #: Updater/KpkSimpleTransactionModel.cpp:50 msgid "Application" @@ -51,7 +51,7 @@ #: Updater/KcmKpkUpdate.cpp:39 msgid "KDE interface for updating software" -msgstr "" +msgstr "ਸਾਫਟਵੇਅਰ ਅੱਪਡੇਟ ਕਰਨ ਲਈ ਕੇਡੀਈ ਇੰਟਰਫੇਸ" #: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 #: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 @@ -65,12 +65,12 @@ #: Updater/KpkDistroUpgrade.cpp:55 Updater/KpkDistroUpgrade.cpp:56 #, kde-format msgid "Upgrade to %1" -msgstr "" +msgstr "%1 ਲਈ ਅੱਪਗਰੇਡ" #: Updater/KpkDistroUpgrade.cpp:57 #, kde-format msgid "Click to upgrade to %1" -msgstr "" +msgstr "%1 ਲਈ ਅੱਪਡੇਟ ਕਰਨ ਵਾਸਤੇ ਚੈੱਕ ਕਰੋ" #: Updater/KpkDistroUpgrade.cpp:71 msgid "" @@ -89,32 +89,32 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਪੂਰਾ।" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਕਾਰਵਾਈ ਸ਼ੁਰੂ ਹੋਣ ਲਈ ਫੇਲ੍ਹ ਹੈ।" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" #: Updater/KpkUpdateDetails.cpp:61 msgid "Type" -msgstr "" +msgstr "ਕਿਸਮ" #: Updater/KpkUpdateDetails.cpp:67 msgctxt "State of the upgrade (ie testing, unstable..)" @@ -173,47 +173,41 @@ #: Updater/KpkUpdateDetails.cpp:185 msgid "No update description was found." -msgstr "" +msgstr "ਕੋਈ ਅੱਪਡੇਟ ਵੇਰਵਾ ਨਹੀਂ ਲੱਭਿਆ।" #: Updater/KpkHistory.cpp:47 msgid "Rollback" msgstr "ਰੋਲ ਬੈਕ" #: Updater/KpkHistory.cpp:52 -#, fuzzy -#| msgid "Refresh Packages List" msgid "Refresh transactions list" -msgstr "ਪੈਕੇਜ ਲਿਸਟ ਤਾਜ਼ਾ" +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਲਿਸਟ ਤਾਜ਼ਾ ਕਰੋ" #: Updater/KpkHistory.cpp:100 #, kde-format msgid "Time since last cache refresh: %1" -msgstr "" +msgstr "ਆਖਰੀ ਕੈਸ਼ ਤਾਜ਼ਾ ਤੋਂ ਹੁਣ ਸਮਾਂ: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "ਪੈਕੇਜ ਨਾਂ" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "ਹੋਮ ਪੇਜ਼" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "ਲਾਈਸੈਂਸ" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "ਗਰੁੱਪ" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "ਹੋਮ ਪੇਜ਼" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "ਸਾਈਜ਼" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." -msgstr "" +msgstr "ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ।" #: AddRm/KcmKpkAddRm.cpp:37 msgid "Add and remove software" @@ -221,268 +215,258 @@ #: AddRm/KcmKpkAddRm.cpp:39 msgid "KDE interface for managing software" -msgstr "" +msgstr "ਸਾਫਟਵੇਅਰ ਪਰਬੰਧ ਲਈ ਕੇ ਡੀ ਈ ਇੰਟਰਫੇਸ" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "ਲੱਭੋ" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "ਸਭ ਪੈਕੇਜ" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "ਟੈਕਸਟ ਖੋਜ" -#: AddRm/KpkAddRm.cpp:130 -#, fuzzy -#| msgid "Testing changes" +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" -msgstr "ਬਦਲਾਅ ਟੈਸਟ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਬਦਲਾਅ ਦੀ ਲਿਸਟ" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "ਗਰੁੱਪ:" msgstr[1] "ਗਰੁੱਪ:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "ਰੱਦ ਕਰੋ(&C)" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "ਨਾਂ ਨਾਲ ਲੱਭੋ(&N)" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "ਫਾਇਲ ਨਾਂ ਨਾਲ ਲੱਭੋ(&i)" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "ਵੇਰਵਾ ਨਾਲ ਲੱਭੋ(&d)" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "ਬਦਲਾਅ ਪੜਤਾਲ" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "ਭੰਡਾਰ" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "ਕੇਵਲ ਭੰਡਾਰ" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "ਭੰਡਾਰ ਤੋਂ ਬਗੈਰ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "ਇੰਸਟਾਲ ਕੀਤਾ" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "ਕੇਵਲ ਇੰਸਟਾਲ ਹੋਏ ਹੀ" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "ਕੇਵਲ ਉਪਲੱਬਧ" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "ਫਿਲਟਰ ਨਹੀਂ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "ਡਿਵੈਲਪਮੈਂਟ" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "ਕੇਵਲ ਡਿਵੈਲਪਮੈਂਟ" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "ਕੇਵਲ ਅੰਤ ਯੂਜ਼ਰ ਫਾਇਲਾਂ ਹੀ" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "ਗਰਾਫਿਕਲ" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "ਕੇਵਲ ਗਰਾਫਿਕਲ" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "ਕੇਵਲ ਟੈਕਸਟ" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "ਮੁਕਤ" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "ਕੇਵਲ ਮੁਕਤ ਸਾਫਟਵੇਅਰ" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "ਕੇਵਲ ਗ਼ੈਰ-ਮੁਕਤ ਸਾਫਟਵੇਅਰ" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "ਆਰਚੀਟੈਕਚਰ" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "ਕੇਵਲ ਮੌਜੂਦਾ ਆਰਚੀਟੈਕਚਰ" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "ਕੇਵਲ ਗ਼ੈਰ-ਮੌਜੂਦ ਆਰਚੀਟੈਕਚਰ" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "ਸਰੋਤ" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "ਕੇਵਲ ਸਰੋਤ-ਕੋਡ ਹੀ" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "ਕੇਵਲ ਗ਼ੈਰ-ਸਰੋਤ ਕੋਡ" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "ਸਬ-ਪੈਕੇਜ ਓਹਲੇ" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "ਕੇਵਲ ਇੱਕ ਪੈਕੇਜ ਵੇਖੋ, ਸਬ-ਪੈਕੇਜ ਨਹੀਂ" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "ਕੇਵਲ ਸਭ ਤੋਂ ਨਵੇਂ ਪੈਕੇਜ ਹੀ" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "ਕੇਵਲ ਨਵੇਂ ਉਪਲੱਬਧ ਹੋਏ ਪੈਕੇਜ ਹੀ ਵੇਖੋ" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "ਗਰੁੱਪ ਵਿੱਚ ਵੇਖੋ" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਵਿੱਚ ਹਾਲਤ ਮੁਤਾਬਕ ਹੀ ਵੇਖੋ" -#: libkpackagekit/KpkReviewChanges.cpp:70 -#, fuzzy -#| msgid "The following packages will also be installed as dependencies" +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" -msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਦੇ ਤੌਰ ਉੱਤੇ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ" -msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਦੇ ਤੌਰ ਉੱਤੇ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ" +msgstr[0] "ਅੱਗੇ ਦਿੱਤਾ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾਵੇਗਾ:" +msgstr[1] "ਅੱਗੇ ਦਿੱਤੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "ਹੁਣੇ ਇੰਸਟਾਲ" -#: libkpackagekit/KpkReviewChanges.cpp:74 -#, fuzzy -#| msgid "The following packages will also be removed for dependencies" +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" -msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" -msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" +msgstr[0] "ਅੱਗੇ ਦਿੱਤਾ ਪੈਕੇਜ ਹਟਾਇਆ ਜਾਵੇਗ:" +msgstr[1] "ਅੱਗੇ ਦਿੱਤੇ ਪੈਕੇਜ ਹਟਾਏ ਜਾਣਗੇ:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "ਹੁਣੇ ਹਟਾਓ" -#: libkpackagekit/KpkReviewChanges.cpp:78 -#, fuzzy -#| msgid "The following packages also have to be removed/installed:" +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" -msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਵੀ ਹਟਾਏ/ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ:" -msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਵੀ ਹਟਾਏ/ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ:" +msgstr[0] "ਅੱਗੇ ਦਿੱਤਾ ਪੈਕੇਜ ਹਟਾਇਆ ਅਤੇ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾਵੇਗਾ:" +msgstr[1] "ਅੱਗੇ ਦਿੱਤੇ ਪੈਕੇਜ ਹਟਾਏ ਅਤੇ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "ਹੁਣ ਲਾਗੂ ਕਰੋ" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#, fuzzy -#| msgid "Sorry, your backend does not support removing packages" +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "ਪੈਕੇਜ ਹਟਾਉਣ ਦੀ ਨਕਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." -msgstr "ਅਫਸੋਸ ਹੈ ਕਿ ਤੁਹਾਡਾ ਬੈਕਐਂਡ ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਸਹਿਯੋਗੀ ਨਹੀਂ ਹੈ" +msgstr "ਮੌਜੂਦਾ ਬੈਕਐਡ ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ ਗਲਤੀ" -#: libkpackagekit/KpkReviewChanges.cpp:177 -#, fuzzy -#| msgid "Sorry, your backend does not support installing packages" -msgid "Current backend does not support installing packages." -msgstr "ਅਫਸੋਸ ਹੈ ਕਿ ਤੁਹਾਡਾ ਬੈਕਐਂਡ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਦੀ ਨਕਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੈ" +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." +msgstr "ਮੌਜੂਦਾ ਬੈਕਐਂਡ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੈ" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "ਓਹਲੇ" -#: libkpackagekit/KpkTransaction.cpp:69 -#, fuzzy -#| msgid "Allows you to hide the window but keeps running transaction task" +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." -msgstr "ਤੁਹਾਨੂੰ ਵਿੰਡੋ ਓਹਲੇ ਕਰਨ ਲਈ ਸਹਾਇਕ ਹੈ, ਪਰ ਕਾਰਵਾਈ ਚੱਲਦੀ ਰਹਿੰਦੀ ਹੈ" +msgstr "ਤੁਹਾਨੂੰ ਵਿੰਡੋ ਓਹਲੇ ਕਰਨ ਲਈ ਸਹਾਇਕ ਹੈ, ਜਦੋਂ ਕਿ ਟਰਾਂਸੈਕਸ਼ਨ ਕਾਰਵਾਈ ਜਾਰੀ ਰੱਖੇਗੀ।" -#: libkpackagekit/KpkTransaction.cpp:330 -#, fuzzy -#| msgid "" -#| "
                                              Installing unsigned packages can compromise your system, as it is " -#| "impossible to verify if the software came from a trusted source. Are you " -#| "sure you want to continue installation?" +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -"
                                              ਬਿਨਾਂ-ਸਾਈਨ ਕੀਤੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਨਾਲ ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਤੇ ਹਮਲਾ ਹੋ ਸਕਦਾ ਹੈ, ਕਿਉਂਕਿ ਇਹ " -"ਜਾਂਚ ਕਰਨੀ ਅਸੰਭਵ ਹੋ ਜਾਂਦੀ ਹੈ ਕਿ ਸਾਫਟਵੇਅਰ ਕਿਸੇ ਭਰੋਸੇਯੋਗ ਸਰੋਤ ਤੋਂ ਆਇਆ ਹੈ। ਕੀ ਤੁਸੀਂ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨੀ " -"ਚਾਹੁੰਦੇ ਹੋ?" +"ਬਿਨਾਂ-ਸਾਈਨ ਕੀਤੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਨਾਲ ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਤੇ ਹਮਲਾ ਹੋ ਸਕਦਾ ਹੈ, ਕਿਉਂਕਿ ਇਹ ਜਾਂਚ " +"ਕਰਨੀ ਅਸੰਭਵ ਹੋ ਜਾਂਦੀ ਹੈ ਕਿ ਕੀ ਸਾਫਟਵੇਅਰ ਕਿਸੇ ਭਰੋਸੇਯੋਗ ਸਰੋਤ ਤੋਂ ਆਇਆ ਹੈ।\n" +"ਕੀ ਤੁਸੀਂ ਇੰਸਟਾਲੇਸ਼ਨ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "ਅਣ-ਸਾਈਨ ਕੀਤਾ ਸਾਫਟਵੇਅਰ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "ਮੀਡਿਆ ਬਦਲਣ ਦੀ ਲੋੜ ਹੈ" @@ -502,7 +486,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "ਲਾਈਸੈਂਸ ਇਕਰਾਰਨਾਮਾ ਲੋੜੀਦਾ ਹੈ" @@ -515,17 +499,16 @@ msgid "Version" msgstr "ਵਰਜਨ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "ਰੱਦ ਕਰੋ" -#: libkpackagekit/KpkTransactionBar.cpp:128 -#, fuzzy, kde-format -#| msgid "Search finished in %1" +#: libkpackagekit/KpkTransactionBar.cpp:129 +#, kde-format msgid "Finished in %1." -msgstr "%1 ਲਈ ਖੋਜ ਪੂਰੀ ਹੋਈ" +msgstr "%1 ਲਈ ਖੋਜ ਪੂਰੀ ਹੋਈ।" #: libkpackagekit/KpkRequirements.cpp:219 msgid "Additional changes" @@ -533,1011 +516,862 @@ #: libkpackagekit/KpkRequirements.cpp:221 msgid "Continue" -msgstr "" +msgstr "ਜਾਰੀ ਰੱਖੋ" #: libkpackagekit/KpkRequirements.cpp:252 -#, fuzzy, kde-format -#| msgid "Searching by package name" +#, kde-format msgid "1 package to remove" msgid_plural "%1 packages to remove" -msgstr[0] "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -msgstr[1] "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr[0] "ਹਟਾਉਣ ਈ ੧ ਪੈਕੇਜ " +msgstr[1] "ਹਟਾਉਣ ਲਈ %1 ਪੈਕੇਜ" #: libkpackagekit/KpkRequirements.cpp:261 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to downgrade" msgid_plural "%1 packages to downgrade" -msgstr[0] "ਕੋਈ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ" -msgstr[1] "ਕੋਈ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ" +msgstr[0] "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ ੧ ਪੈਕੇਜ" +msgstr[1] "ਡਾਊਨਗਰੇਡ ਕਰਨ ਲਈ %1 ਪੈਕੇਜ" #: libkpackagekit/KpkRequirements.cpp:272 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to reinstall" msgid_plural "%1 packages to reinstall" -msgstr[0] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" -msgstr[1] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +msgstr[0] "ਮੁੜ-ਇੰਸਟਾਲ ਲਈ ੧ ਪੈਕੇਜ" +msgstr[1] "ਮੁੜ-ਇੰਸਟਾਲ ਲਈ %1 ਪੈਕੇਜ" #: libkpackagekit/KpkRequirements.cpp:283 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to install" msgid_plural "%1 packages to install" -msgstr[0] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" -msgstr[1] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +msgstr[0] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ੧ ਪੈਕੇਜ" +msgstr[1] "ਇੰਸਟਾਲ ਕਰਨ ਲਈ %1 ਪੈਕੇਜ" #: libkpackagekit/KpkRequirements.cpp:294 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to update" msgid_plural "%1 packages to update" -msgstr[0] "ਕੋਈ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ" -msgstr[1] "ਕੋਈ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ" +msgstr[0] "ਅੱਪਡੇਟ ਕਰਨ ਲਈ ੧ ਪੈਕੇਜ" +msgstr[1] "ਅੱਪਡੇਟ ਕਰਨ ਲਈ %1 ਪੈਕੇਜ" #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਲੋੜੀਦੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "ਅਣਜਾਣ ਹਾਲਤ" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "ਸਰਵਿਸ ਸ਼ੁਰੂ ਹੋਣ ਲਈ ਉਡੀਕ ਜਾਰੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "ਹੋਰ ਕੰਮਾਂ ਲਈ ਉਡੀਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "ਕੰਮ ਚੱਲ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "ਕਿਊਰੀ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "ਪੈਕੇਜ ਹਟਾਏ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "ਸਾਫਟਵੇਅਰ ਲਿਸਟ ਤਾਜ਼ਾ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "ਪੈਕੇਜ ਸਾਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:55 -#, fuzzy -#| msgid "Updating packages" -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" -msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਪੈਕੇਜ ਬਰਤਰਫ਼ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" -msgstr "ਨਿਰਭਰਤਾ ਖਤਮ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "ਦਸਤਖਤ ਚੈੱਕ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "ਰੋਲ ਬੈਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "ਬਦਲਾਅ ਟੈਸਟ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "ਬਦਲਾਅ ਕਮਿਟ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "ਡਾਟੇ ਲਈ ਮੰਗ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "ਮੁਕੰਮਲ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "ਰੱਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "ਪੈਕੇਜਾਂ ਦੀ ਲਿਸਟ ਡਾਊਨਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "ਫਾਇਲ ਲਿਸਟ ਡਾਊਨਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "ਬਦਲਾਅ ਦੀ ਲਿਸਟ ਡਾਊਨਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "ਗਰੁੱਪ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "ਅੱਪਡੇਟ ਜਾਣਕਾਰੀ ਡਾਊਨਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "ਫਾਇਲਾਂ ਮੁੜ-ਪੈਕ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "ਕੈਸ਼ ਲੋਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "ਇੰਸਟਾਲ ਐਪਲੀਕੇਸ਼ਨਾਂ ਸਕੈਨ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "ਪੈਕੇਜ ਲਿਸਟਾਂ ਤਿਆਰ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" -msgstr "" +msgstr "ਪੈਕੇਜ ਮੈਨੇਜਰ ਲਾਕ ਲਈ ਉਡੀਕ ਜਾਰੀ" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "ਪਰਮਾਣਕਿਤਾ ਲਈ ਉਡੀਕ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" -msgstr "" +msgstr "ਮੌਜੂਦਾ ਵਰਤੋਂ ਅਧੀਨ ਐਪਲੀਕੇਸ਼ਨ ਦੀ ਜਾਂਚ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "ਫਾਇਲਾਂ ਕਾਪੀ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "ਡਾਊਨਲੋਡ ਕੀਤਾ" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "ਅੱਪਡੇਟ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "ਇੰਸਟਾਲ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "ਹਟਾਏ" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "ਸਾਫ਼ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "ਬਰਤਰਫ਼" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "ਅਣਜਾਣ ਰੋਲ ਕਿਸਮ" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "ਨਿਰਭਰਤਾ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "ਅੱਪਡੇਟ ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:140 -#, fuzzy -#| msgid "Getting details" +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" -msgstr "ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਨਿਰਭਰਤਾ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:142 -#, fuzzy -#| msgid "Getting updates" +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:144 -#, fuzzy -#| msgid "Searching details" +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" -msgstr "ਵੇਰਵਾ ਖੋਜ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਵੇਰਵਾ ਖੋਜਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:146 -#, fuzzy -#| msgid "Searching for file" +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "ਫਾਇਲ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:148 -#, fuzzy -#| msgid "Searching groups" +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "ਗਰੁੱਪ ਖੋਜ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:150 -#, fuzzy -#| msgid "Searching by package name" +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:152 -#, fuzzy -#| msgid "Removing" +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "ਹਟਾਇਆ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:154 -#, fuzzy -#| msgid "Installing" +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "ਇੰਸਟਾਲ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:156 -#, fuzzy -#| msgid "Installing file" +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "ਫਾਇਲ ਇੰਸਟਾਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:158 -#, fuzzy -#| msgid "Refreshing package cache" +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" -msgstr "ਪੈਕੇਜ ਕੈਸ਼ ਅੱਪਡੇਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਪੈਕੇਜ ਕੈਸ਼ ਤਾਜ਼ਾ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:160 -#, fuzzy -#| msgid "Updating packages" +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" -msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:162 -#, fuzzy -#| msgid "Updating system" +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "ਸਿਸਟਮ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:164 -#, fuzzy -#| msgid "Canceling" +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "ਰੱਦ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:166 -#, fuzzy -#| msgid "Rolling back" +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "ਰੋਲ ਬੈਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:168 -#, fuzzy -#| msgid "Getting list of repositories" +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ ਦੀ ਲਿਸਟ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:170 -#, fuzzy -#| msgid "Enabling repository" +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਯੋਗ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:172 -#, fuzzy -#| msgid "Setting repository data" +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਡਾਟਾ ਸੈੱਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:174 -#, fuzzy -#| msgid "Resolving" +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "ਹੱਲ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:176 -#, fuzzy -#| msgid "File List" +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" -msgstr "ਫਾਇਲ ਲਿਸਟ" +msgstr "ਫਾਇਲ ਲਿਸਟ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:180 -#, fuzzy -#| msgid "Installing signature" +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "ਦਸਤਖਤ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:182 -#, fuzzy -#| msgid "Getting package lists" +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "ਪੈਕੇਜ ਲਿਸਟਾਂ ਲਈਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:184 -#, fuzzy -#| msgid "Accepting EULA" +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "EULA ਮਨਜ਼ੂਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:186 -#, fuzzy -#| msgid "Downloading packages" +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:188 -#, fuzzy -#| msgid "Getting distribution upgrade information" +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:190 -#, fuzzy -#| msgid "Getting updates" +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" -msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਕੈਟਾਗਰੀਆਂ ਲਈਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:192 -#, fuzzy -#| msgid "Getting information" +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" -msgstr "ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਪੁਰਾਣੀ ਟਰਾਂਸੈਕਸ਼ਨ ਲਈ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:200 -#, fuzzy -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" -msgstr "1 ਖਾਸ ਅੱਪਡੇਟ" +msgstr "ਅੱਪਡੇਟ ਲਈ ਨਕਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:210 -#, fuzzy -#| msgid "Unknown group" +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" -msgstr "ਅਣਜਾਣ ਗਰੁੱਪ" +msgstr "ਅਣਜਾਣ ਰੋਲ ਟਾਈਪ" -#: libkpackagekit/KpkStrings.cpp:212 -#, fuzzy -#| msgid "Getting dependencies" +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" -msgstr "ਨਿਰਭਰਤਾ ਲਈ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਨਿਰਭਰਤਾ ਲਈ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:214 -#, fuzzy -#| msgid "Getting update detail" +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" -msgstr "ਅੱਪਡੇਟ ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਅੱਪਡੇਟ ਵੇਰਵਾ ਲਿਆ" -#: libkpackagekit/KpkStrings.cpp:216 -#, fuzzy -#| msgid "Getting details" +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" -msgstr "ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਵੇਰਵਾ ਲਿਆ" -#: libkpackagekit/KpkStrings.cpp:218 -#, fuzzy -#| msgid "Getting details" +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" -msgstr "ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਵੇਰਵਾ ਲਿਆ ਗਿਆ" -#: libkpackagekit/KpkStrings.cpp:220 -#, fuzzy -#| msgid "Getting updates" +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" -msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਅੱਪਡੇਟ ਲਏ" -#: libkpackagekit/KpkStrings.cpp:222 -#, fuzzy -#| msgid "Search package name" +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" -msgstr "ਪੈਕੇਜ ਨਾਂ ਖੋਜ" +msgstr "ਪੈਕੇਜ ਵੇਰਵੇ ਲਈ ਖੋਜ ਕੀਤੀ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:224 -#, fuzzy -#| msgid "Searching for file" +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" -msgstr "ਫਾਇਲ ਲਈ ਖੋਜ ਜਾਰੀ ਹੈ" +msgstr "ਫਾਇਲ ਲਈ ਖੋਜ ਕੀਤੀ" -#: libkpackagekit/KpkStrings.cpp:226 -#, fuzzy -#| msgid "Searching groups" +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" -msgstr "ਗਰੁੱਪ ਖੋਜ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਗਰੁੱਪ ਲਈ ਖੋਜ ਕੀਤੀ" -#: libkpackagekit/KpkStrings.cpp:228 -#, fuzzy -#| msgid "Searching by package name" +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" -msgstr "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਪੈਕੇਜ ਨਾਂ ਲਈ ਖੋਜ ਕੀਤੀ" -#: libkpackagekit/KpkStrings.cpp:230 -#, fuzzy -#| msgid "Failed to create a thread" +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" -msgstr "ਥਰਿੱਡ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ" +msgstr "ਪੈਕੇਜ ਹਟਾਏ" -#: libkpackagekit/KpkStrings.cpp:232 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:234 -#, fuzzy -#| msgid "Installing file" +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" -msgstr "ਫਾਇਲ ਇੰਸਟਾਲ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਲੋਕਲ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕੀਤੀਆਂ" -#: libkpackagekit/KpkStrings.cpp:236 -#, fuzzy -#| msgid "Refreshing package cache" +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" -msgstr "ਪੈਕੇਜ ਕੈਸ਼ ਅੱਪਡੇਟ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਪੈਕੇਜ ਕੈਸ਼ ਤਾਜ਼ਾ ਕੀਤੀ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:238 -#, fuzzy -#| msgid "Updating packages" +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" -msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤੇ ਗਏ" -#: libkpackagekit/KpkStrings.cpp:240 -#, fuzzy -#| msgid "Update System" +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" -msgstr "ਸਿਸਟਮ ਅੱਪਡੇਟ" +msgstr "ਸਿਸਟਮ ਅੱਪਡੇਟ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:242 -#, fuzzy -#| msgid "&Cancel" +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" -msgstr "ਰੱਦ ਕਰੋ(&C)" +msgstr "ਰੱਦ ਕੀਤਾ" -#: libkpackagekit/KpkStrings.cpp:244 -#, fuzzy -#| msgid "Rolling back" +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" -msgstr "ਰੋਲ ਬੈਕ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਰੋਲ ਬੈਕ" -#: libkpackagekit/KpkStrings.cpp:246 -#, fuzzy -#| msgid "Getting list of repositories" +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" -msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ ਦੀ ਲਿਸਟ ਲਈ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ ਦੀ ਲਿਸਟ ਲਈ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:248 -#, fuzzy -#| msgid "Enabling repository" +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" -msgstr "ਰਿਪੋਜ਼ਟਰੀ ਯੋਗ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਰਿਪੋਜ਼ਟਰੀ ਯੋਗ ਕੀਤੀ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:250 -#, fuzzy -#| msgid "Setting repository data" +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" -msgstr "ਰਿਪੋਜ਼ਟਰੀ ਡਾਟਾ ਸੈੱਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਰਿਪੋਜ਼ਟਰੀ ਡਾਟਾ ਸੈੱਟ ਕੀਤਾ" -#: libkpackagekit/KpkStrings.cpp:252 -#, fuzzy -#| msgid "Resolving" +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" -msgstr "ਹੱਲ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਹੱਲ਼ ਕੀਤਾ" -#: libkpackagekit/KpkStrings.cpp:254 -#, fuzzy -#| msgid "File List" +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" -msgstr "ਫਾਇਲ ਲਿਸਟ" +msgstr "ਫਾਇਲ ਲਿਸਟ ਲਈ" -#: libkpackagekit/KpkStrings.cpp:256 -#, fuzzy -#| msgid "Getting updates" +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" -msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਜੋ ਦਿੰਦੀ ਹੈ ਲਈ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:258 -#, fuzzy -#| msgid "Installing signature" +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" -msgstr "ਦਸਤਖਤ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਦਸਤਖਤ ਇੰਸਟਾਲ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:260 -#, fuzzy -#| msgid "Getting package lists" +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" -msgstr "ਪੈਕੇਜ ਲਿਸਟਾਂ ਲਈਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" +msgstr "ਪੈਕੇਜ ਲਿਸਟ ਲਈ" -#: libkpackagekit/KpkStrings.cpp:262 -#, fuzzy -#| msgid "Accepting EULA" +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" -msgstr "EULA ਮਨਜ਼ੂਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "EULA ਮਨਜ਼ੂਰ ਕੀਤਾ" -#: libkpackagekit/KpkStrings.cpp:264 -#, fuzzy -#| msgid "Downloading packages" +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" -msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:266 -#, fuzzy -#| msgid "Getting distribution upgrade information" +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" -msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਲਏ" -#: libkpackagekit/KpkStrings.cpp:268 -#, fuzzy -#| msgid "Getting updates" +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" -msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਕੈਟਾਗਰੀ ਲਈਆਂ" -#: libkpackagekit/KpkStrings.cpp:270 -#, fuzzy -#| msgid "Transactions" +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" -msgstr "ਟਰਾਂਸਐਕਸ਼ਨ" +msgstr "ਪੁਰਾਣੀ ਟਰਾਂਸੈਕਸ਼ਨ ਲਈ" -#: libkpackagekit/KpkStrings.cpp:272 -#, fuzzy -#| msgid "Failed to initialize" +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +msgstr "ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਨਕਲ ਕੀਤੀ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:274 -#, fuzzy -#| msgid "Failed to initialize" +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +msgstr "ਇੰਸਟਾਲ ਕਰਨ ਨਕਲ ਕੀਤੀ" -#: libkpackagekit/KpkStrings.cpp:276 -#, fuzzy -#| msgid "Searching by package name" +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" -msgstr "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਹਟਾਉਣ ਦੀ ਨਕਲ ਕੀਤੀ" -#: libkpackagekit/KpkStrings.cpp:278 -#, fuzzy -#| msgid "Failed to create a thread" +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" -msgstr "ਥਰਿੱਡ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ" +msgstr "ਅੱਪਡੇਟ ਦੀ ਨਕਲ ਕੀਤੀ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "ਕੋਈ ਨੈੱਟਵਰਕ ਕੁਨੈਕਸ਼ਨ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "ਕੋਈ ਪੈਕੇਜ ਕੈਸ਼ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "ਮੈਮੋਰੀ ਖਤਮ ਹੋਈ" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "ਥਰਿੱਡ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "ਇਹ ਬੈਕਐਂਡ ਵਲੋਂ ਹਾਲੇ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "ਇੱਕ ਅੰਦਰੂਨੀ ਸਿਸਟਮ ਗਲਤੀ ਆਈ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "ਇੱਕ ਸੁਰੱਖਿਆ ਟਰੱਸਟ ਸਬੰਧ ਮੌਜੂਦ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "ਗਰੁੱਪ ਨਹੀਂ ਲੱਭਿਆ" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "ਗਰੁੱਪ ਲਿਸਟ ਗਲਤ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "ਨਿਰਭਰਤਾ ਹੱਲ਼ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "ਖੋਜ ਫਿਲਟਰ ਗਲਤ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "ਪੈਕੇਜ ਪਛਾਣ ਕਰਤਾ ਠੀਕ ਢੰਗ ਨਾਲ ਤਿਆਰ ਨਹੀਂ" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਗਲਤੀ" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਨਾਂ ਨਹੀਂ ਲੱਭਿਆ" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "ਇੱਕ ਸੁਰੱਖਿਅਤ ਸਿਸਟਮ ਪੈਕੇਜ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "ਟਾਸਕ ਰੱਦ ਕੀਤੀ ਗਈ ਸੀ" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "ਟਾਸਕ ਧੱਕੇ ਨਾਲ ਬੰਦ ਕੀਤੀ ਗਈ" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "ਸੰਰਚਨਾ ਫਾਇਲ ਪੜ੍ਹਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "ਟਾਸਕ ਰੱਦ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "ਸਰੋਤ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕਦੇ" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "ਲਾਈਸੈਂਸ ਇਕਰਾਰਨਾਮ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "ਪੈਕੇਜਾਂ ਵਿੱਚ ਲੋਕਲ ਫਾਇਲ ਲਈ ਅਪਵਾਦ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "ਪੈਕੇਜ ਢੁੱਕਵੇਂ ਨਹੀਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:342 -#, fuzzy -#| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" -msgstr "ਇੱਕ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਨਾਲ ਕੁਨੈਕਟ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਨਾਲ ਕੁਨੈਕਟ ਕਰਨ ਦੌਰਾਨ ਸਮੱਸਿਆ" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "ਪੂਰਾ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "ਲਾਕ ਨਹੀਂ ਲਿਆ ਜਾ ਸਕਦਾ" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "ਕੋਈ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਸੰਰਚਨਾ ਲਿਖੀ ਨਹੀਂ ਜਾ ਸਕਦੀ" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "ਲੋਕਲ ਇੰਸਟਾਲ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "ਖ਼ਰਾਬ GPG ਦਸਤਖਤ" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "ਗੁੰਮ GPG ਦਸਤਖਤ" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਸੰਰਚਨਾ ਗਲਤ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "ਗਲਤ ਪੈਕੇਜ ਫਾਇਲ" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਬਲਾਕ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "ਪੈਕੇਜ ਨਿਕਾਰਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "ਸਭ ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "ਕੋਈ ਹੋਰ ਮਿਰੱਰ ਉਪਲੱਬਧ ਨਹੀਂ ਹਨ" -#: libkpackagekit/KpkStrings.cpp:374 -#, fuzzy -#| msgid "Getting distribution upgrade information" +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" -msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਡਾਟਾ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:376 -#, fuzzy -#| msgid "The package that is trying to be installed is already installed." +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" -msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ, ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।" +msgstr "ਪੈਕੇਜ ਇਹ ਸਿਸਟਮ ਲਈ ਅਢੁੱਕਵਾਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" -msgstr "" +msgstr "ਡਿਸਕ ਉੱਤੇ ਕੋਈ ਥਾਂ ਨਹੀਂ ਬਚੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:382 -#, fuzzy -#| msgid "Authentication failed" +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "ਪਰਮਾਣਕਿਤਾ ਫੇਲ੍ਹ ਹੋਈ" -#: libkpackagekit/KpkStrings.cpp:384 -#, fuzzy -#| msgid "The package was not found" +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" -msgstr "ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ" +msgstr "ਅੱਪਡੇਟ ਨਹੀਂ ਲੱਭਿਆ" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "ਬੇਭਰੋਸੇ ਸਰੋਤ ਤੋਂ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "ਬੇਭਰੋਸੇਯੋਗ ਖੇਤਰ ਤੋਂ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ" -#: libkpackagekit/KpkStrings.cpp:390 -#, fuzzy -#| msgid "File List" +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" -msgstr "ਫਾਇਲ ਲਿਸਟ" +msgstr "ਫਾਇਲ ਲਿਸਟ ਲਈ ਨਹੀਂ ਜਾ ਸਕਦਾ" -#: libkpackagekit/KpkStrings.cpp:392 -#, fuzzy -#| msgid "A system restart is required after this update" +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" -msgstr "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" +msgstr "ਲੋੜੀਦਾ ਪੈਕੇਜ ਲਿਆ ਨਹੀਂ ਜਾ ਸਕਦਾ" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "ਸਰੋਤ ਆਯੋਗ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:396 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" -msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੈ" +msgstr "ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:398 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +msgstr "ਸੰਰਚਨਾ ਲਈ ਪੈਕੇਜ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:400 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +msgstr "ਪੈਕੇਜ ਬਿਲਡ ਹੋਣ ਲਈ ਫੇਲ੍ਹ" -#: libkpackagekit/KpkStrings.cpp:402 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋਣ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:404 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +msgstr "ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "ਅਣਜਾਣ ਗਲਤੀ" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1545,7 +1379,7 @@ "ਕੋਈ ਨੈੱਟਵਰਕ ਕੁਨੈਕਸ਼ਨ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।\n" "ਆਪਣੀ ਕੁਨੈਕਸ਼ਨ ਸੈਟਿੰਗ ਚੈੱਕ ਕਰਕੇ ਮੁੜ ਟਰਾਈ ਕਰੋ" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1553,7 +1387,7 @@ "ਪੈਕੇਜ ਲਿਸਟ ਨੂੰ ਮੁੜ-ਬਣਾਉਣ ਲਈ ਲੋੜ ਹੈ।\n" "ਇਹ ਬੈਕਐਂਡ ਵਲੋਂ ਆਟੋਮੈਟਿਕ ਹੀ ਕੀਤਾ ਜਾਵੇਗਾ।" -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1562,11 +1396,11 @@ "ਸਰਵਿਸ, ਜੋ ਕਿ ਯੂਜ਼ਰ ਮੰਗ ਨੂੰ ਹੈਂਡਲ ਕਰਨ ਲਈ ਜਵਾਬਦੇਹ ਹੈ, ਲਈ ਮੈਮੋਰੀ ਖਤਮ ਹੋ ਗਈ ਹੈ।\n" "ਕੁਝ ਪਰੋਗਰਾਮ ਬੰਦ ਕਰੋ ਜਾਂ ਕੰਪਿਊਟਰ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰੋ।" -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "ਯੂਜ਼ਰ ਮੰਗ ਦੀ ਸਰਵਿਸ ਲਈ ਥਰਿੱਡ ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ।" -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1574,7 +1408,7 @@ "ਐਕਸ਼ਨ ਇਸ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਿਯੋਗੀ ਨਹੀਂ ਹੈ।\n" "ਇਹ ਹੋਣਾ ਨਹੀਂ ਸੀ ਚਾਹੀਦਾ, ਇਸਕਰਕੇ ਬੱਗ ਰਿਪੋਰਟ ਦਿਓ।" -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1582,40 +1416,31 @@ "ਇੱਕ ਸਮੱਸਿਆ, ਜਿਸ ਦੀ ਸਾਨੂੰ ਉਮੀਦ ਨਹੀਂ ਸੀ, ਆਈ ਹੈ।\n" "ਗਲਤੀ ਵੇਰਵੇ ਸਮੇਤ ਇਹ ਬੱਗ ਰਿਪੋਰਟ ਦਿਓ ਜੀ।" -#: libkpackagekit/KpkStrings.cpp:433 -#, fuzzy -#| msgid "" -#| "A security trust relationship could not be made with the software " -#| "source.\n" -#| "Please check your software signature settings." +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਨਾਲ ਇੱਕ ਸੁਰੱਖਿਆ ਟਰੱਸਟ ਸਬੰਧ ਬਣਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ।\n" "ਆਪਣੀ ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਸੈਟਿੰਗ ਚੈੱਕ ਕਰੋ ਜੀ।" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "ਪੈਕੇਜ, ਜੋ ਕਿ ਹਟਾਉਣ ਜਾਂ ਅੱਪਡੇਟ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ, ਪਹਿਲਾਂ ਇੰਸਟਾਲ ਹੀ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:438 -#, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ, ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1623,7 +1448,7 @@ "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ।\n" "ਆਪਣਾ ਨੈੱਟਵਰਕ ਕੁਨੈਕਸ਼ਨ ਚੈੱਕ ਕਰੋ ਜੀ।" -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1631,21 +1456,16 @@ "ਗਰੁੱਪ ਟਾਈਪ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ।\n" "ਆਪਣੀ ਗਰੁੱਪ ਲਿਸਟ ਚੈੱਕ ਕਰਕੇ ਮੁੜ ਟਰਾਈ ਕਰੋ ਜੀ।" -#: libkpackagekit/KpkStrings.cpp:448 -#, fuzzy -#| msgid "" -#| "The group list could not be loaded.\n" -#| "Refreshing your cache may help, although this is normally a software " -#| "source error." +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "ਗਰੁੱਪ ਲਿਸਟ ਲੋਡ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ।\n" "ਤੁਹਾਡੀ ਕੈਸ਼ ਤਾਜ਼ਾ ਕਰਨ ਨਾਲ ਮੱਦਦ ਹੋ ਸਕਦੀ ਹੈ, ਭਾਵੇਂ ਕਿ ਇਹ ਇੱਕ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਗਲਤੀ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1653,17 +1473,17 @@ "ਇੱਕ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਨਹੀਂ ਲੱਭੀ ਹੈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "ਖੋਜ ਫਿਲਟਰ ਠੀਕ ਤਰ੍ਹਾਂ ਨਹੀਂ ਬਣਾਇਆ ਗਿਆ।" -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1671,27 +1491,23 @@ "ਕਾਰਵਾਈ (ਟਰਾਂਸਐਕਸ਼ਨ) ਚਲਾਉਣ ਦੌਰਾਨ ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:463 -#, fuzzy -#| msgid "" -#| "The remote software source name was not found.\n" -#| "You may need to enable an item in Software Sources." +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "ਰਿਮੋਟ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਨਾਂ ਨਹੀਂ ਲੱਭਿਆ ਜਾ ਸਕਿਆ।\n" "ਤੁਹਾਨੂੰ ਸਾਫਟਵੇਅਰ ਸਰੋਤਾਂ ਵਿੱਚ ਇੱਕ ਆਈਟਮ ਯੋਗ ਕਰਨ ਦੀ ਲੋੜ ਸਕਦੀ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "ਇੱਕ ਸੁਰੱਖਿਅਤ ਸਿਸਟਮ ਪੈਕੇਜ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "ਟਾਸਕ ਠੀਕ ਢੰਗ ਨਾਲ ਰੱਦ ਹੋ ਗਈ ਹੈ ਅਤੇ ਕੋਈ ਪੈਕੇਜ ਵਿੱਚ ਬਦਲਾਅ ਨਹੀਂ ਕੀਤਾ ਗਿਆ।" -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1699,7 +1515,7 @@ "ਇਹ ਟਾਸਕ ਠੀਕ ਤਰ੍ਹਾਂ ਰੱਦ ਕੀਤੀ ਗਈ ਹੈ ਅਤੇ ਕੋਈ ਪੈਕੇਜ ਬਦਲਾਅ ਨਹੀਂ ਕੀਤਾ ਗਿਆ ਹੈ।\n" "ਬੈਕਐਂਡ ਠੀਕ ਢੰਗ ਨਾਲ ਬੰਦ ਨਹੀਂ ਹੋਇਆ।" -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1707,11 +1523,11 @@ "ਨੇਟਿਵ ਪੈਕੇਜ ਸੰਰਚਨਾ ਫਾਇਲ ਖੋਲ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕੀ ਹੈ।\n" "ਯਕੀਨੀ ਬਣਾਉ ਕਿ ਸਿਸਟਮ ਦੀ ਸੰਰਚਨਾ ਠੀਕ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "ਟਾਸਕ ਨੂੰ ਇਸ ਸਮੇਂ ਰੱਦ ਕਰਨਾ ਸੁਰੱਖਿਅਤ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1719,7 +1535,7 @@ "ਸਰੋਤ ਪੈਕੇਜ ਅਕਸਰ ਇਸ ਢੰਗ ਨਾਲ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤੇ ਜਾਂਦੇ ਹਨ।\n" "ਫਾਇਲ ਦੀ ਇਕਸਟੈਨਸ਼ਨ ਚੈੱਕ ਕਰੋ, ਜੋ ਕਿ ਤੁਸੀਂ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੇ ਹੋ।" -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1727,43 +1543,31 @@ "ਲਾਈਸੈਂਸ ਇਕਰਾਰਨਾਮੇ ਨਾਲ ਸਹਿਮਤ ਨਹੀਂ ਸੀ।\n" "ਇਹ ਸਾਫਟਵੇਅਰ ਵਰਤਣ ਲਈ ਤੁਹਾਨੂੰ ਲਾਇਸੈਂਸ ਸ਼ਰਤਾਂ ਮੰਨਣੀਆਂ ਪੈਣਗੀਆਂ।" -#: libkpackagekit/KpkStrings.cpp:484 -#, fuzzy -#| msgid "" -#| "Two packages provide the same file.\n" -#| "This is usually due to mixing packages for different software sources." +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "ਦੋ ਪੈਕੇਜ ਇੱਕੋ ਹੀ ਫਾਇਲ ਦਿੰਦੇ ਹਨ।\n" "ਇਹ ਅਕਸਰ ਵੱਖ ਵੱਖ ਸਾਫਟਵੇਅਰ ਸਰੋਤਾਂ ਲਈ ਪੈਕੇਜ ਰਲਣ ਕਰਕੇ ਹੁੰਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:487 -#, fuzzy -#| msgid "" -#| "Multiple packages exist that are not compatible with each other.\n" -#| "This is usually due to mixing packages from different software sources." +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "ਕਈ ਪੈਕੇਜ ਮੌਜੂਦ ਹਨ, ਜੋ ਕਿ ਆਪਸ ਵਿੱਚ ਰਲਦੇ ਨਹੀਂ ਹਨ।\n" "ਇਹ ਅਕਸਰ ਵੱਖ ਵੱਖ ਸਾਫਟਵੇਅਰ ਸਰੋਤਾਂ ਤੋਂ ਪੈਕੇਜ ਮਿਲਾਉਣ ਕਰਕੇ ਹੁੰਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:490 -#, fuzzy -#| msgid "" -#| "There was a (possibly temporary) problem connecting to a software source\n" -#| "Please check the detailed error for further details." +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "ਇਹ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਨਾਲ ਕੁਨੈਕਟ ਕਰਨ ਲਈ ਇੱਕ (ਸ਼ਾਇਦ ਆਰਜ਼ੀ) ਸਮੱਸਿਆ ਹੈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਲਈ ਵੇਰਵਾ ਗਲਤੀ ਚੈੱਕ ਕਰੋ ਜੀ।" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1771,7 +1575,7 @@ "ਪੈਕੇਜ ਬੈਕਐਂਡ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ।\n" "ਇਹ ਤਾਂ ਹੋ ਸਕਦਾ ਹੈ, ਜੇ ਹੋਰ ਪੈਕੇਜ ਟੂਲ ਵੀ ਇੱਕੋ ਸਮੇਂ ਵਰਤੇ ਜਾ ਰਹੇ ਹਨ।" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1779,7 +1583,7 @@ "ਬੈਕਐਂਡ ਮੌਕੇ ਨੂੰ ਬੰਦ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ।\n" "ਇਹ ਗਲਤੀ ਅਕਸਰ ਅਣਡਿੱਠੀ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1787,15 +1591,15 @@ "ਪੈਕੇਜ ਬੈਕਐਂਡ ਲਈ ਲਾਕ ਨਹੀਂ ਲੈ ਸਕਦਾ ਹੈ।\n" "ਹੋਰ ਪੁਰਾਤਨ ਪੈਕੇਜ ਟੂਲ ਬੰਦ ਕਰ ਦਿਓ ਜੀ, ਜੋ ਕਿ ਚਾਲੂ ਹੋ ਸਕਦੇ ਹਨ।" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "ਕੋਈ ਵੀ ਚੁਣਿਆ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ।" -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "ਰਿਪੋਜ਼ਟਰੀ ਸੰਰਚਨਾ ਨੂੰ ਸੋਧਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ।" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1803,11 +1607,11 @@ "ਲੋਕਲ ਫਾਇਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "ਪੈਕੇਜ ਦਸਤਖਤ ਦੀ ਜਾਂਚ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ।" -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1815,11 +1619,11 @@ "ਪੈਕੇਜ ਦਸਤਖਤ ਗੁੰਮ ਹਨ ਅਤੇ ਇਹ ਪੈਕੇਜ ਅਣ-ਭਰੋਸੇਯੋਗ ਹੈ।\n" "ਇਹ ਪੈਕੇਜ GPG ਕੁੰਜੀ ਨਾਲ ਸਾਇਨ ਨਹੀਂ ਹੈ, ਜਦੋਂ ਇਹ ਬਣਾਇਆ ਗਿਆ ਸੀ।" -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "ਰਿਪੋਜ਼ਟਰੀ ਸੰਰਚਨਾ ਗਲਤ ਹੈ ਅਤੇ ਪੜ੍ਹੀ ਨਹੀਂ ਜਾ ਸਕੀ।" -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1827,23 +1631,23 @@ "ਪੈਕੇਜ, ਜੋ ਤੁਸੀਂ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰ ਰਹੇ ਹੋ, ਠੀਕ ਨਹੀਂ ਹੈ।\n" "ਜਾਂ ਤਾਂ ਪੈਕੇਜ ਫਾਇਲ ਨਿਕਾਰਾ ਹੈ, ਜਾਂ ਇਹ ਠੀਕ ਪੈਕੇਜ ਹੀ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "ਇਹ ਪੈਕੇਜ ਦੀ ਇੰਸਟਾਲ ਨੂੰ ਤੁਹਾਡੇ ਪੈਕੇਜ ਸਿਸਟਮ ਦੀ ਸੰਰਚਨਾ ਵਲੋਂ ਰੋਕਿਆ ਗਿਆ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਡਾਊਨਲੋਡ ਕੀਤਾ ਗਿਆ ਸੀ, ਨਿਕਾਰਾ ਹੋ ਗਿਆ ਹੈ ਅਤੇ ਫੇਰ ਡਾਊਨਲੋਡ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "ਚੁਣੇ ਗਏ ਪੈਕੇਜਾਂ ਵਿੱਚ ਸਭ ਪਹਿਲਾਂ ਹੀ ਸਿਸਟਮ ਉੱਤੇ ਇੰਸਟਾਲ ਹਨ।" -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1851,20 +1655,15 @@ "ਦਿੱਤੀ ਫਾਇਲ ਤੁਹਾਡੇ ਸਿਸਟਮ ਉੱਤੇ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ।\n" "ਚੈੱਕ ਕਰੋ ਕਿ ਫਾਇਲ ਹਾਲੇ ਵੀ ਮੌਜੂਦ ਹੈ ਅਤੇ ਹਟਾਈ ਨਹੀਂ ਗਈ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:528 -#, fuzzy -#| msgid "" -#| "Required data could not be found on any of the configured software " -#| "sources.\n" -#| "There were no more download mirrors that could be tried." +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "ਲੋੜੀਦਾ ਡਾਟਾ ਕਿਸੇ ਵੀ ਸੰਰਚਿਤ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।\n" "ਕੋਈ ਵੀ ਹੋਰ ਡਾਊਨਲੋਡ ਮਿੱਰਰ ਟਰਾਈ ਕਰਨ ਲਈ ਨਹੀਂ ਹਨ।" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " @@ -1872,75 +1671,73 @@ #| "There were no more download mirrors that could be tried." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "ਲੋੜੀਦਾ ਡਾਟਾ ਕਿਸੇ ਵੀ ਸੰਰਚਿਤ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।\n" "ਕੋਈ ਵੀ ਹੋਰ ਡਾਊਨਲੋਡ ਮਿੱਰਰ ਟਰਾਈ ਕਰਨ ਲਈ ਨਹੀਂ ਹਨ।" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਇੰਸਟਾਲ ਕਰਨ ਦੀ ਕੋਸ਼ਿਸ਼ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ, ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" +"ਜੰਤਰ ਉੱਤੇ ਅਢੁੱਕਵੀਂ ਥਾਂ ਨਹੀਂ ਹੈ।\n" +"ਇਹ ਓਪਰੇਸ਼ਨ ਕਰਨ ਲਈ ਸਿਸਟਮ ਡਿਸਕ ਉੱਤੇ ਕੁਝ ਥਾਂ ਖਾਲੀ ਕਰੋ।" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." -msgstr "" +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਪੂਰੀ ਕਰਨ ਲਈ ਹੋਰ ਮੀਡਿਆ ਦੀ ਲੋੜ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" -#: libkpackagekit/KpkStrings.cpp:551 -#, fuzzy -#| msgid "The specified file could not be found" +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." -msgstr "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" +msgstr "ਇਹ ਪੈਕੇਜ ਲਈ ਫਾਇਲ-ਲਿਸਟ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 -#, fuzzy -#| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." -msgstr "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "ਦਿੱਤਾ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਆਯੋਗ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਿਆ" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -1952,7 +1749,7 @@ "ਇੱਕ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਨਹੀਂ ਲੱਭੀ ਹੈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1964,7 +1761,7 @@ "ਲੋਕਲ ਫਾਇਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1976,7 +1773,7 @@ "ਲੋਕਲ ਫਾਇਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1988,7 +1785,7 @@ "ਲੋਕਲ ਫਾਇਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2000,7 +1797,7 @@ "ਲੋਕਲ ਫਾਇਲ ਇੰਸਟਾਲੇਸ਼ਨ ਫੇਲ੍ਹ ਹੋਈ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -2008,843 +1805,826 @@ "ਅਣਜਾਣੀ ਗਲਤੀ ਹੈ, ਬੱਗ ਦੀ ਰਿਪੋਰਟ ਦਿਓ ਜੀ।\n" "ਹੋਰ ਜਾਣਕਾਰੀ ਨੂੰ ਵੇਰਵਾ ਰਿਪੋਰਟ ਵਿੱਚ ਵੇਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:583 -#, fuzzy -#| msgid "Accessibility" +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "ਅਸੈੱਸਬਿਲਟੀ" -#: libkpackagekit/KpkStrings.cpp:585 -#, fuzzy -#| msgid "Accessories" +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "ਸਹੂਲਤਾਂ" -#: libkpackagekit/KpkStrings.cpp:587 -#, fuzzy -#| msgid "Education" +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "ਸਿੱਖਿਆ" -#: libkpackagekit/KpkStrings.cpp:589 -#, fuzzy -#| msgid "Games" +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "ਖੇਡਾਂ" -#: libkpackagekit/KpkStrings.cpp:591 -#, fuzzy -#| msgid "Graphics" +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "ਗਰਾਫਕਿਸ" -#: libkpackagekit/KpkStrings.cpp:593 -#, fuzzy -#| msgid "Internet" +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "ਇੰਟਰਨੈੱਟ" -#: libkpackagekit/KpkStrings.cpp:595 -#, fuzzy -#| msgid "Office" +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "ਆਫਿਸ" -#: libkpackagekit/KpkStrings.cpp:597 -#, fuzzy -#| msgid "Other" +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "ਹੋਰ" -#: libkpackagekit/KpkStrings.cpp:599 -#, fuzzy -#| msgid "Development" +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "ਡਿਵੈਲਪਮੈਂਟ" -#: libkpackagekit/KpkStrings.cpp:601 -#, fuzzy -#| msgid "Multimedia" +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "ਮਲਟੀਮੀਡਿਆ" -#: libkpackagekit/KpkStrings.cpp:603 -#, fuzzy -#| msgid "System" +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "ਸਿਸਟਮ" -#: libkpackagekit/KpkStrings.cpp:605 -#, fuzzy -#| msgid "GNOME desktop" +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "ਗਨੋਮ ਡੈਸਕਟਾਪ" -#: libkpackagekit/KpkStrings.cpp:607 -#, fuzzy -#| msgid "KDE desktop" +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE ਡੈਸਕਟਾਪ" -#: libkpackagekit/KpkStrings.cpp:609 -#, fuzzy -#| msgid "XFCE desktop" +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE ਡੈਸਕਟਾਪ" -#: libkpackagekit/KpkStrings.cpp:611 -#, fuzzy -#| msgid "Other desktops" +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "ਹੋਰ ਡੈਸਕਟਾਪ" -#: libkpackagekit/KpkStrings.cpp:613 -#, fuzzy -#| msgid "Publishing" +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "ਪਬਲਿਸ਼ਿੰਗ" -#: libkpackagekit/KpkStrings.cpp:615 -#, fuzzy -#| msgid "Servers" +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "ਸਰਵਰ" -#: libkpackagekit/KpkStrings.cpp:617 -#, fuzzy -#| msgid "Fonts" +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "ਫੋਂਟ" -#: libkpackagekit/KpkStrings.cpp:619 -#, fuzzy -#| msgid "Admin tools" +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "ਐਡਮਿਨ ਟੂਲ" -#: libkpackagekit/KpkStrings.cpp:621 -#, fuzzy -#| msgid "Legacy" +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "ਪੁਰਾਣੇ" -#: libkpackagekit/KpkStrings.cpp:623 -#, fuzzy -#| msgid "Localization" +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "ਲੋਕਾਈਜੇਸ਼ਨ" -#: libkpackagekit/KpkStrings.cpp:625 -#, fuzzy -#| msgid "Virtualization" +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "ਵੁਰਚੁਲਾਈਜੇਸ਼ਨ" -#: libkpackagekit/KpkStrings.cpp:627 -#, fuzzy -#| msgid "Security" +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "ਸੁਰੱਖਿਆ" -#: libkpackagekit/KpkStrings.cpp:629 -#, fuzzy -#| msgid "Power management" +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "ਪਾਵਰ ਪਰਬੰਧ" -#: libkpackagekit/KpkStrings.cpp:631 -#, fuzzy -#| msgid "Communication" +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "ਕਮਿਊਨੀਕੇਸ਼ਨ" -#: libkpackagekit/KpkStrings.cpp:633 -#, fuzzy -#| msgid "Network" +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "ਨੈੱਟਵਰਕ" -#: libkpackagekit/KpkStrings.cpp:635 -#, fuzzy -#| msgid "Maps" +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "ਨਕਸ਼ੇ" -#: libkpackagekit/KpkStrings.cpp:637 -#, fuzzy -#| msgid "Software sources" +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "ਸਾਫਟਵੇਅਰ ਸਰੋਤ" -#: libkpackagekit/KpkStrings.cpp:639 -#, fuzzy -#| msgid "Science" +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "ਵਿਗਿਆਨ" -#: libkpackagekit/KpkStrings.cpp:641 -#, fuzzy -#| msgid "Documentation" +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "ਡੌਕੂਮੈਨਟੇਸ਼ਨ" -#: libkpackagekit/KpkStrings.cpp:643 -#, fuzzy -#| msgid "Electronics" +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "ਇਲੈਕਟਰੋਨਿਕਸ" -#: libkpackagekit/KpkStrings.cpp:645 -#, fuzzy -#| msgid "Package collections" +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "ਪੈਕੇਜ ਭੰਡਾਰ" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" -msgstr "" +msgstr "ਵੇਂਡਰ" -#: libkpackagekit/KpkStrings.cpp:649 -#, fuzzy -#| msgid "Only newest packages" +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" -msgstr "ਕੇਵਲ ਸਭ ਤੋਂ ਨਵੇਂ ਪੈਕੇਜ ਹੀ" +msgstr "ਸਭ ਤੋਂ ਨਵੇਂ ਪੈਕੇਜ" -#: libkpackagekit/KpkStrings.cpp:651 -#, fuzzy -#| msgid "Unknown group" +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "ਅਣਜਾਣ ਗਰੁੱਪ" -#: libkpackagekit/KpkStrings.cpp:661 -#, fuzzy -#| msgid "Trivial update" +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "ਟਰੀਵੀਲ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:663 -#, fuzzy -#| msgid "Trivial update" +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" -msgstr "ਟਰੀਵੀਲ ਅੱਪਡੇਟ" +msgstr "ਆਮ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:665 -#, fuzzy -#| msgid "Important update" +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "ਖਾਸ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:667 -#, fuzzy -#| msgid "Security update" +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:669 -#, fuzzy -#| msgid "Bug fix update" +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:671 -#, fuzzy -#| msgid "Enhancement update" +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:673 -#, fuzzy -#| msgid "Blocked update" +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "ਬਲਾਕ ਕੀਤੇ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:676 -#, fuzzy -#| msgid "Installed" +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" -msgstr "ਇੰਸਟਾਲ ਕੀਤਾ" +msgstr "ਇੰਸਟਾਲ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:679 -#, fuzzy -#| msgid "Available" +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "ਉਪਲੱਬਧ" -#: libkpackagekit/KpkStrings.cpp:681 -#, fuzzy -#| msgid "Unknown update" +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "ਅਣਜਾਣ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "੧ ਟਰੀਵੀਲ ਅੱਪਡੇਟ" +msgstr[1] "%1 ਟਰੀਵੀਲ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:694 -#, fuzzy, kde-format -#| msgid "1 update" -#| msgid_plural "%1 updates" +#: libkpackagekit/KpkStrings.cpp:733 +#, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" msgid_plural "%1 updates" -msgstr[0] "1 ਅੱਪਡੇਟ" +msgstr[0] "੧ ਅੱਪਡੇਟ" msgstr[1] "%1 ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" -msgstr[0] "1 ਖਾਸ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਖਾਸ ਅੱਪਡੇਟ" msgstr[1] "%1 ਖਾਸ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" -msgstr[0] "1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" msgstr[1] "%1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" -msgstr[0] "1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" msgstr[1] "%1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" -msgstr[0] "1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" msgstr[1] "%1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" -msgstr[0] "1 ਬਲਾਕ ਕੀਤਾ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਬਲਾਕ ਕੀਤਾ ਅੱਪਡੇਟ" msgstr[1] "%1 ਬਲਾਕ ਕੀਤੇ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "%1 ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜ" +msgstr[0] "੧ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤਾ" +msgstr[1] "%1 ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤੇ" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" -msgstr[0] "1 ਉਪਲੱਬਧ ਪੈਕੇਜ" +msgstr[0] "੧ ਉਪਲੱਬਧ ਪੈਕੇਜ" msgstr[1] "%1 ਉਪਲੱਬਧ ਪੈਕੇਜ" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" -msgstr[0] "1 ਅਣਜਾਣ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਅਣਜਾਣ ਅੱਪਡੇਟ" msgstr[1] "%1 ਅਣਜਾਣ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:720 -#, fuzzy, kde-format -#| msgid "Trivial update" +#: libkpackagekit/KpkStrings.cpp:759 +#, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" -msgstr[0] "ਟਰੀਵੀਲ ਅੱਪਡੇਟ" -msgstr[1] "ਟਰੀਵੀਲ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਟਰੀਵੀਲ ਅੱਪਡੇਟ ਚੁਣਿਆ" +msgstr[1] "%1 ਟਰੀਵੀਲ ਅੱਪਡੇਟ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:723 -#, fuzzy, kde-format -#| msgid "1 update" -#| msgid_plural "%1 updates" +#: libkpackagekit/KpkStrings.cpp:762 +#, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" msgid_plural "%1 updates selected" -msgstr[0] "1 ਅੱਪਡੇਟ" -msgstr[1] "%1 ਅੱਪਡੇਟ" +msgstr[0] "੧ ਅੱਪਡੇਟ ਚੁਣਿਆ" +msgstr[1] "%1 ਅੱਪਡੇਟ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:726 -#, fuzzy, kde-format -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:765 +#, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" -msgstr[0] "1 ਖਾਸ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਖਾਸ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਖਾਸ ਅੱਪਡੇਟ ਚੁਣਿਆ" +msgstr[1] "%1 ਖਾਸ ਅੱਪਡੇਟ ਚੁਣਿਆ ਗਿਆ" -#: libkpackagekit/KpkStrings.cpp:728 -#, fuzzy, kde-format -#| msgid "1 security update" -#| msgid_plural "%1 security updates" +#: libkpackagekit/KpkStrings.cpp:767 +#, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" -msgstr[0] "1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ ਚੁਣਿਆ" +msgstr[1] "%1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:730 -#, fuzzy, kde-format -#| msgid "1 bug fix update" -#| msgid_plural "%1 bug fix updates" +#: libkpackagekit/KpkStrings.cpp:769 +#, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" -msgstr[0] "1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ ਚੁਣਿਆ" +msgstr[1] "%1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:732 -#, fuzzy, kde-format -#| msgid "1 enhancement update" -#| msgid_plural "%1 enhancement updates" +#: libkpackagekit/KpkStrings.cpp:771 +#, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" -msgstr[0] "1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" +msgstr[0] "੧ ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ ਚੁਣਿਆ" +msgstr[1] "%1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:734 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: libkpackagekit/KpkStrings.cpp:773 +#, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "%1 ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜ" +msgstr[0] "੧ ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਚੁਣਿਆ" +msgstr[1] "%1 ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜ ਹਟਾਉਣ ਲਈ ਚੁਣਿਆ" -#: libkpackagekit/KpkStrings.cpp:737 -#, fuzzy, kde-format -#| msgid "All packages are already installed" +#: libkpackagekit/KpkStrings.cpp:776 +#, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" -msgstr[0] "ਸਭ ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹਨ" -msgstr[1] "ਸਭ ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹਨ" +msgstr[0] "੧ ਉਪਲੱਬਧ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਚੁਣਿਆ" +msgstr[1] "%1 ਉਪਲੱਬਧ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਚੁਣੇ ਗਏ" -#: libkpackagekit/KpkStrings.cpp:748 -#, fuzzy, kde-format -#| msgid "Trivial update" +#: libkpackagekit/KpkStrings.cpp:787 +#, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" -msgstr[0] "ਟਰੀਵੀਲ ਅੱਪਡੇਟ" -msgstr[1] "ਟਰੀਵੀਲ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਟਰੀਵੀਲ ਅੱਪਡੇਟ" +msgstr[1] "%1 ਟਰੀਵੀਲ ਅੱਪਡੇਟ, %2 ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:751 -#, fuzzy, kde-format -#| msgid "1 update" -#| msgid_plural "%1 updates" +#: libkpackagekit/KpkStrings.cpp:790 +#, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" msgid_plural "%1 updates, %2 selected" -msgstr[0] "1 ਅੱਪਡੇਟ" -msgstr[1] "%1 ਅੱਪਡੇਟ" +msgstr[0] "%1 ਅੱਪਡੇਟ" +msgstr[1] "%1 ਅੱਪਡੇਟ, %2 ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:753 -#, fuzzy, kde-format -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:792 +#, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" -msgstr[0] "1 ਖਾਸ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਖਾਸ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਖਾਸ ਅੱਪਡੇਟ" +msgstr[1] "%1 ਖਾਸ ਅੱਪਡੇਟ, %2 ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:755 -#, fuzzy, kde-format -#| msgid "1 security update" -#| msgid_plural "%1 security updates" +#: libkpackagekit/KpkStrings.cpp:794 +#, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" -msgstr[0] "1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" +msgstr[1] "%1 ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ, %2 ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:757 -#, fuzzy, kde-format -#| msgid "1 bug fix update" -#| msgid_plural "%1 bug fix updates" +#: libkpackagekit/KpkStrings.cpp:796 +#, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" -msgstr[0] "1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ" +msgstr[1] "%1 ਬੱਗ ਫਿਕਸ ਅੱਪਡੇਟ, %2 ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:759 -#, fuzzy, kde-format -#| msgid "1 enhancement update" -#| msgid_plural "%1 enhancement updates" +#: libkpackagekit/KpkStrings.cpp:798 +#, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" -msgstr[0] "1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" -msgstr[1] "%1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ" +msgstr[1] "%1 ਇੰਹਾਂਸਮੈਂਟ ਅੱਪਡੇਟ, %2 ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:762 -#, fuzzy, kde-format -#| msgid "1 blocked update" -#| msgid_plural "%1 blocked updates" +#: libkpackagekit/KpkStrings.cpp:801 +#, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" -msgstr[0] "1 ਬਲਾਕ ਕੀਤਾ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਬਲਾਕ ਕੀਤਾ ਅੱਪਡੇਟ" msgstr[1] "%1 ਬਲਾਕ ਕੀਤੇ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:764 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: libkpackagekit/KpkStrings.cpp:803 +#, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "%1 ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜ" +msgstr[0] "%1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr[1] "%1 ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜ, %2 ਹਟਾਉਣ ਲਈ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:766 -#, fuzzy, kde-format -#| msgid "1 available package" -#| msgid_plural "%1 available packages" +#: libkpackagekit/KpkStrings.cpp:805 +#, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" -msgstr[0] "1 ਉਪਲੱਬਧ ਪੈਕੇਜ" -msgstr[1] "%1 ਉਪਲੱਬਧ ਪੈਕੇਜ" +msgstr[0] "%1 ਉਪਲੱਬਧ ਪੈਕੇਜ" +msgstr[1] "%1 ਉਪਲੱਬਧ ਪੈਕੇਜ, %2 ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਚੁਣੇ" -#: libkpackagekit/KpkStrings.cpp:769 -#, fuzzy, kde-format -#| msgid "1 unknown update" -#| msgid_plural "%1 unknown updates" +#: libkpackagekit/KpkStrings.cpp:808 +#, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" -msgstr[0] "1 ਅਣਜਾਣ ਅੱਪਡੇਟ" +msgstr[0] "%1 ਅਣਜਾਣ ਅੱਪਡੇਟ" msgstr[1] "%1 ਅਣਜਾਣ ਅੱਪਡੇਟ" -#: libkpackagekit/KpkStrings.cpp:778 -#, fuzzy -#| msgid "No restart is necessary for this update" +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" -msgstr "ਇਸ ਅੱਪਡੇਟ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ" +msgstr "ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:780 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" -msgstr "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਤੁਹਾਨੂੰ ਲਾਗ ਆਫ਼ ਕਰਕੇ ਮੁੜ ਲਾਗ-ਇਨ ਕਰਨ ਪਵੇਗਾ।" +msgstr "ਤੁਹਾਨੂੰ ਇਹ ਐਪਲੀਕੇਸ਼ਨ ਮੁੜ-ਚਾਲੂ ਕਰਨੀ ਪਵੇਗੀ" -#: libkpackagekit/KpkStrings.cpp:782 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" -msgstr "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਤੁਹਾਨੂੰ ਲਾਗ ਆਫ਼ ਕਰਕੇ ਮੁੜ ਲਾਗ-ਇਨ ਕਰਨ ਪਵੇਗਾ।" +msgstr "ਤੁਹਾਨੂੰ ਲਾਗ ਆਉਟ ਕਰਕੇ ਲਾਗਇਨ ਕਰਨ ਦੀ ਲੋੜ ਪਵੇਗੀ" -#: libkpackagekit/KpkStrings.cpp:784 -#, fuzzy -#| msgid "Software signature is required" +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" -msgstr "ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਲੋੜੀਦੇ ਹਨ" +msgstr "ਮੁੜ-ਚਾਲੂ ਕਰਨਾ ਪਵੇਗਾ" -#: libkpackagekit/KpkStrings.cpp:786 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." -msgstr "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਤੁਹਾਨੂੰ ਲਾਗ ਆਫ਼ ਕਰਕੇ ਮੁੜ ਲਾਗ-ਇਨ ਕਰਨ ਪਵੇਗਾ।" +msgstr "ਸੁਰੱਖਿਆ ਅਅੱਪਡੇਟ ਕਰਕੇ ਤੁਹਾਨੂੰ ਲਾਗ ਆਫ਼ ਕਰਕੇ ਮੁੜ ਲਾਗ-ਇਨ ਕਰਨ ਪਵੇਗਾ।" -#: libkpackagekit/KpkStrings.cpp:788 -#, fuzzy -#| msgid "Software signature is required" +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." -msgstr "ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਲੋੜੀਦੇ ਹਨ" +msgstr "ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ ਕਰਕੇ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਪਵੇਗੀ।" -#: libkpackagekit/KpkStrings.cpp:801 -#, fuzzy -#| msgid "Software signature is required" +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" -msgstr "ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਲੋੜੀਦੇ ਹਨ" +msgstr "ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:803 -#, fuzzy -#| msgid "Software signature is required" +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" -msgstr "ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਲੋੜੀਦੇ ਹਨ" +msgstr "ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:805 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" -msgstr "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਤੁਹਾਨੂੰ ਲਾਗ ਆਫ਼ ਕਰਕੇ ਮੁੜ ਲਾਗ-ਇਨ ਕਰਨ ਪਵੇਗਾ।" +msgstr "ਤੁਹਾਨੂੰ ਲਾਗਆਉਟ ਕਰਕੇ ਫੇਰ ਲਾਗਇਨ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" -msgstr "" +msgstr "ਤੁਹਾਨੂੰ ਐਪਲੀਕੇਸ਼ਨ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:809 -#, fuzzy -#| msgid "You will be required to log off and back on after this update" +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." -msgstr "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਤੁਹਾਨੂੰ ਲਾਗ ਆਫ਼ ਕਰਕੇ ਮੁੜ ਲਾਗ-ਇਨ ਕਰਨ ਪਵੇਗਾ।" +msgstr "ਤੁਹਾਨੂੰ ਸੁਰੱਖਿਅਤ ਰਹਿਣ ਲਈ ਲਾਗ ਆਉਟ ਕਰਕੇ ਲਾਗਇਨ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:811 -#, fuzzy -#| msgid "Software signature is required" +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." -msgstr "ਸਾਫਟਵੇਅਰ ਦਸਤਖਤ ਲੋੜੀਦੇ ਹਨ" +msgstr "ਸੁਰੱਖਿਅਤ ਕਰਨ ਲਈ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "ਸਥਿਰ" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "ਅਸਥਿਰ" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "ਟੈਸਟਿੰਗ" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." -msgstr "" +msgstr "'%1' ਨਾਂ ਦੀ ਸੀਡੀ ਪਾਉ ਜੀ ਅਤੇ ਜਾਰੀ ਰੱਖੋ।" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." -msgstr "" +msgstr "'%1' ਨਾਂ ਦੀ ਡੀਵੀਡੀ ਪਾ ਕੇ ਜਾਰੀ ਰੱਖੋ ਜੀ।" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." -msgstr "" +msgstr "'%1' ਨਾਂ ਦੀ ਡਿਸਕ ਪਾ ਕੇ ਜਾਰੀ ਰੱਖੋ।" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." -msgstr "" +msgstr "'%1' ਨਾਂ ਦਾ ਮੀਡਿਅਮ ਪਾ ਕੇ ਜਾਰੀ ਰੱਖੋ।" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" -msgstr "" +msgstr "ਮਿੱਰਰ ਖਰਾਬ ਹੋ ਸਕਦਾ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" -msgstr "" +msgstr "ਕੁਨੈਕਸ਼ਨ ਤੋਂ ਇਨਕਾਰ" -#: libkpackagekit/KpkStrings.cpp:861 -#, fuzzy -#| msgid "Search filter was invalid" +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" -msgstr "ਖੋਜ ਫਿਲਟਰ ਗਲਤ ਹੈ" +msgstr "ਪੈਰਾਮੀਟਰ ਅਢੁੱਕਵਾਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:863 -#, fuzzy -#| msgid "The group list was invalid" +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" -msgstr "ਗਰੁੱਪ ਲਿਸਟ ਗਲਤ ਹੈ" +msgstr "ਤਰਜੀਹ ਅਢੁੱਕਵੀਂ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" -msgstr "" +msgstr "ਬੈਕਐਂਡ ਚੇਤਾਵਨੀ" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" -msgstr "" +msgstr "ਡੈਮੇਨ ਚੇਤਾਵਨੀ" -#: libkpackagekit/KpkStrings.cpp:869 -#, fuzzy -#| msgid "No package cache is available" +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" -msgstr "ਕੋਈ ਪੈਕੇਜ ਕੈਸ਼ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ" +msgstr "ਪੈਕੇਜ ਲਿਸਟ ਕੈਸ਼ ਮੁੜ-ਬਿਲਡ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:871 -#, fuzzy -#| msgid "The package is not installed" +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" -msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" +msgstr "ਬੇਭਰੋਸੇਯੋਗ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤਾ" -#: libkpackagekit/KpkStrings.cpp:873 -#, fuzzy -#| msgid "Generating package lists" +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" -msgstr "ਪੈਕੇਜ ਲਿਸਟਾਂ ਤਿਆਰ ਕੀਤੀਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" +msgstr "ਨਵਾਂ ਪੈਕੇਜ ਮੌਜੂਦ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:875 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr "ਪੈਕੇਜ ਨਹੀਂ ਲੱਭਿਆ" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" -msgstr "" +msgstr "ਸੰਰਚਨਾ ਫਾਇਲਾਂ ਬਦਲੀਆਂ ਗਈਆਂ" -#: libkpackagekit/KpkStrings.cpp:879 -#, fuzzy -#| msgid "The package is already installed" +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" -msgstr "" +msgstr "ਆਟੋਮੈਟਿਕ ਸਾਫ਼ ਕਰਨ ਨੂੰ ਅਣਡਿੱਠਾ ਕੀਤਾ ਗਿਆ" -#: libkpackagekit/KpkStrings.cpp:883 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੈ" +msgstr "ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਡਾਊਨਲੋਡ ਫੇਲ੍ਹ ਹੋਇਆ" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." -msgstr "" +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "ਤੁਹਾਨੂੰ ਇਹ ਕਾਰਵਾਈ ਕਰਨ ਲਈ ਲੋੜੀਦੇ ਅਧਿਕਾਰ ਨਹੀਂ ਹਨ।" -#: libkpackagekit/KpkStrings.cpp:898 -#, fuzzy -#| msgid "Could not remove a protected system package" +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." -msgstr "ਇੱਕ ਸੁਰੱਖਿਅਤ ਸਿਸਟਮ ਪੈਕੇਜ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਿਆ" +msgstr "packagekitd ਤੋਂ ਟਰਾਂਸੈਕਸ਼ਨ id ਲਿਆ ਨਹੀਂ ਜਾ ਸਕਿਆ।" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." -msgstr "" +msgstr "ਇਸ ਟਰਾਂਸੈਕਸ਼ਨ id ਨਾਲ ਕੁਨੈਕਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ।" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." -msgstr "" +msgstr "ਇਹ ਕਾਰਵਾਈ ਅਣਜਾਣ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:904 -#, fuzzy -#| msgid "The package signature could not be verified." +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." -msgstr "ਪੈਕੇਜ ਦਸਤਖਤ ਦੀ ਜਾਂਚ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ।" +msgstr "packagekitd ਸਰਵਿਸ ਸ਼ੁਰੂ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ।" -#: libkpackagekit/KpkStrings.cpp:906 -#, fuzzy -#| msgid "The group list was invalid" +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." -msgstr "ਗਰੁੱਪ ਲਿਸਟ ਗਲਤ ਹੈ" +msgstr "ਕਿਊਰੀ ਅਢੁੱਕਵੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:908 -#, fuzzy -#| msgid "The package is not installed" +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." -msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" +msgstr "ਫਾਇਲ ਅਢੁੱਕਵੀਂ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." -msgstr "" +msgstr "ਇਹ ਫੰਕਸ਼ਨ ਸਹਾਇਕ ਨਹੀਂ ਹੈ।" -#: libkpackagekit/KpkStrings.cpp:912 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr "packagekitd ਨਾਲ ਗੱਲ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕਦੀ।" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 -#, fuzzy -#| msgid "Unknown error" +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." -msgstr "ਅਣਜਾਣ ਗਲਤੀ" +msgstr "ਅਣਜਾਣ ਗਲਤੀ ਆਈ ਹੈ।" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" +msgstr "ਅਣਡਿੱਠਾ" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                              • %2
                                              Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                              • %2
                                              Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "ਪਰੋਗਰਾਮ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "ਪਰੋਗਰਾਮ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "%2 ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "ਇੰਸਟਾਲ" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "ਫਾਇਲ ਟਰਾਂਸੈਕਸ਼ਨ ਖੋਜ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "%1 ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇਹ ਫਾਇਲ ਦਿੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +msgstr[1] "ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "ਅੱਗੇ ਦਿੱਤਾ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤਾ ਜਾਵੇਗਾ" +msgstr[1] "ਅੱਗੇ ਦਿੱਤੇ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "ਫਾਇਲ ਕਿਸੇ ਪੈਕੇਜ ਵਿੱਚ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" +msgstr[1] "ਫਾਇਲਾਂ ਕਿਸੇ ਪੈਕੇਜ ਵਿੱਚ ਲੱਭੀਆਂ ਜਾ ਸਕੀਆਂ" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "ਪੈਕੇਜ ਲੱਭਣ ਲਈ ਫੇਲ੍ਹ" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" -msgstr "" +msgstr "ਤੁਹਾਡੇ ਕੋਲ %1 ਹੈ" -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, fuzzy, kde-format -#| msgid "
                                              And another update" -#| msgid_plural "
                                              And %1 more updates" +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format msgid "
                                              And another update" msgid_plural "
                                              And %1 more updates" -msgstr[0] "
                                              ਅਤੇ ਹੋਰ ਅੱਪਡੇਟ" -msgstr[1] "
                                              ਅਤੇ %1 ਹੋਰ ਅੱਪਡੇਟ" +msgstr[0] "
                                              ਅਤੇ ਹੋਰ ਅੱਪਡੇਟ" +msgstr[1] "
                                              ਅਤੇ %1 ਹੋਰ ਅੱਪਡੇਟ" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "ਪੜਤਾਲ ਅਤੇ ਅੱਪਡੇਟ" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "" - -#: SmartIcon/KpkUpdateIcon.cpp:191 -#, fuzzy -#| msgid "Don't ask anymore." +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "ਫੇਰ ਕਦੇ ਨਾ ਪੁੱਛੋ।" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "ਅੱਪਡੇਟ ਆਟੋਮੈਟਿਕ ਹੀ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ।" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ ਆਟੋਮੈਟਿਕ ਹੀ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ।" -#: SmartIcon/KpkUpdateIcon.cpp:289 -#, fuzzy -#| msgid "System update was successful!" +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." -msgstr "ਸਿਸਟਮ ਠੀਕ ਤਰ੍ਹਾਂ ਅੱਪਡੇਟ ਹੋ ਗਿਆ!" +msgstr "ਸਿਸਟਮ ਠੀਕ ਤਰ੍ਹਾਂ ਅੱਪਡੇਟ ਹੋ ਗਿਆ।" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "ਸਾਫਟਵੇਅਰ ਅੱਪਡੇਟ ਫੇਲ੍ਹ ਹੈ।" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "ਅੱਗੇ ਦਿੱਤੀ ਫਾਇਲ ਲੋੜੀਦੀ ਹੈ:" +msgstr[1] "ਅੱਗੇ ਦਿੱਤੀਆਂ ਫਾਇਲਾਂ ਦੀ ਲੋੜ ਹੈ:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਸ ਲਈ ਖੋਜ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?" +msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹਨਾਂ ਲਈ ਹੁਣ ਖੋਜ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "%1 ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦਾ ਹੈ" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" -msgstr "" +msgstr "ਹੁਣੇ ਅੱਪਗਰੇਡ ਸ਼ੁਰੂ ਕਰੋ" -#: SmartIcon/KpkDistroUpgrade.cpp:111 -#, fuzzy -#| msgid "Getting distribution upgrade information" +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " -msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਜਾਣਕਾਰੀ ਲਈ ਜਾ ਰਹੀ ਹੈ" +msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਮੁਕੰਮਲ ਹੋਇਆ। " + +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਹੱਲ਼ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "ਯੂਜ਼ਰ ਨੇ ਟਰਾਂਸੈਕਸ਼ਨ ਰੱਦ ਕੀਤੀ" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "ਅਣਜਾਣ ਗਲਤੀ ਆਈ" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                                              • %2
                                              Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                              • %2
                                              Do you want to search " +"for and install these packages now?" +msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" +msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "ਪਰੋਗਰਾਮ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "ਪਰੋਗਰਾਮ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨੇ ਚਾਹੁੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "%2 ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨੇ ਚਾਹੁੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "ਇੰਸਟਾਲ" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "ਪੈਕੇਜ %2 ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ" +msgstr[1] "ਪੈਕੇਜ %2 ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹਨ" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ ਸਫ਼ਲਤਾ ਨਾਲ ਪੂਰੀ ਨਹੀਂ ਕੀਤੀ ਜਾ ਸਕੀ" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" +msgstr[1] "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "%1 ਨਹੀਂ ਲੱਭਿਆ" #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" @@ -2870,242 +2650,261 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt ਅਤੇ ਹੋਰ ਕੰਮ" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "ਟਰਾਂਸਐਕਸ਼ਨ" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Refresh Packages List" -msgid "Refresh package list" -msgstr "ਪੈਕੇਜ ਲਿਸਟ ਤਾਜ਼ਾ" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" +msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 -#, fuzzy -#| msgid "Updates" -msgid "Show messages" -msgstr "ਅੱਪਡੇਟ" +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "ਪਰੋਗਰਾਮ ਫੋਂਟ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "ਪਰੋਗਰਾਮ ਫੋਂਟ ਇੰਸਟਾਲ ਕਰਨੇ ਚਾਹੁੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 ਫੋਂਟ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "%2 ਫੋਂਟ ਇੰਸਟਾਲ ਕਰਨੇ ਚਾਹੁੰਦਾ ਹੈ" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "ਖੋਜ" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "ਦੇਣ ਵਾਲੇ ਖੋਜਣ ਲਈ ਫੇਲ੍ਹ " -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, fuzzy, kde-format -#| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "ਪੈਕੇਜ ਨਾਂ" -msgstr[1] "ਪੈਕੇਜ ਨਾਂ" +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "ਐਪਲੀਕੇਸ਼ਨ, ਜੋ ਇਸ ਕਿਸਮ ਦੀਆਂ ਫਾਇਲਾਂ ਖੋਲ੍ਹ ਸਕਦੀ ਹੈ" +msgstr[1] "ਐਪਲੀਕੇਸ਼ਨਾਂ, ਜੋ ਕਿ ਇਸ ਕਿਸਮ ਦੀਆਂ ਫਾਇਲਾਂ ਖੋਲ੍ਹ ਸਕਦੀਆਂ ਹਨ" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" -msgstr[0] "" -msgstr[1] "" +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "ਇਹ ਡੌਕੂਮੈਂਟ ਲਈ ਨਵੇਂ ਫੋਂਟ ਨਹੀਂ ਲੱਭੇ ਜਾ ਸਕਦੇ" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "ਫੋਂਟ ਲੱਭਣ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 -#, fuzzy -#| msgid "The software update failed." -msgid "The system update has completed" -msgstr "ਸਾਫਟਵੇਅਰ ਅੱਪਡੇਟ ਫੇਲ੍ਹ ਹੈ।" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "ਇਹ ਆਈਟਮ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਜਾਂ ਇਹ ਇੱਕ ਫਾਇਲ ਨਹੀਂ। " +msgstr[1] "ਇਹ ਆਈਟਮਾਂ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਜਾਂ ਇਹ ਫਾਇਲਾਂ ਨਹੀਂ।" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 -#, fuzzy -#| msgid "Restart" -msgctxt "Restart the computer" -msgid "Restart" -msgstr "ਮੁੜ-ਚਾਲੂ" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "ਇੰਸਟਾਲ ਕਰਨਾ ਅਸੰਭਵ" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "ਇੰਸਟਾਲ" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" +msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "ਇੰਸਟਾਲ?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "ਫਾਇਲ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" +msgstr[1] "ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਨਹੀਂ ਹਨ" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "ਫਾਇਲ ਠੀਕ ਤਰ੍ਹਾਂ ਇੰਸਟਾਲ ਕੀਤੀ ਗਈ" +msgstr[1] "ਫਾਇਲਾਂ ਠੀਕ ਤਰ੍ਹਾਂ ਇੰਸਟਾਲ ਕੀਤੀਆਂ ਗਈਆਂ ਹਨ" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "ਗਲਤੀ ਆਈ ਹੈ।" + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 #, kde-format -msgid "%1" -msgstr "" +msgid "" +"The following plugin is required:
                                              • %2
                                              Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                              • %2
                                              Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "ਪਰੋਗਰਾਮ ਨੂੰ ਇਹ ਫਾਇਲ ਡੀਕੋਡ ਕਰਨ ਲਈ ਹੋਰ ਪਲੱਗਇਨ ਦੀ ਲੋੜ ਹੈ" +msgstr[1] "ਇਹ ਪਰੋਗਰਾਮ ਨੂੰ ਇਹ ਫਾਇਲ ਡੀਕੋਡ ਕਰਨ ਲਈ ਹੋਰ ਪਲੱਗਇਨ ਦੀ ਲੋੜ ਹੈ" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "ਪਰੋਗਰਾਮ ਨੂੰ ਇਹ ਫਾਇਲ ਇੰਕੋਡ ਕਰਨ ਲਈ ਹੋਰ ਪਲੱਗਇਨ ਦੀ ਲੋੜ ਹੈ" +msgstr[1] "ਪਰੋਗਰਾਮ ਨੂੰ ਇਹ ਫਾਇਲਾਂ ਇੰਕੋਡ ਕਰਨ ਲਈ ਹੋਰ ਪਲੱਗਇਨ ਦੀ ਲੋੜ ਹੈ" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -#, fuzzy -#| msgid "KPackageKit Settings" -msgid "KPackageKit settings" -msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ ਸੈਟਿੰਗ" +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:60 -#, fuzzy -#| msgid "Hourly" -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "ਘੰਟੇਵਾਰ" +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" -#: Settings/KpkSettings.cpp:61 -#, fuzzy -#| msgid "Daily" -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "ਰੋਜ਼ਾਨਾ" +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਪੈਕੇਜ ਹੁਣੇ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" +msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਪੈਕੇਜ ਹੁਣੇ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?" -#: Settings/KpkSettings.cpp:62 +#: SmartIcon/PkInstallGStreamerResources.cpp:165 #, fuzzy -#| msgid "Weekly" -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "ਹਫ਼ਤੇਵਾਰ" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Could not find plugin in any configured software source" +msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" -#: Settings/KpkSettings.cpp:63 -#, fuzzy -#| msgid "Monthly" -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "ਮਹੀਨੇਵਾਰ" +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "ਪਲੱਗਇਨ ਲਈ ਖੋਜ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: Settings/KpkSettings.cpp:64 +#: SmartIcon/PkSearchFile.cpp:91 #, fuzzy -#| msgid "Never" -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "ਕਦੇ ਵੀ ਨਹੀਂ" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "ਕੇਵਲ ਸੁਰੱਖਿਆ" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The file name could not be found in any software source" +msgstr "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "ਸਭ ਅੱਪਡੇਟ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ" -#: Settings/KpkSettings.cpp:68 -#, fuzzy -#| msgid "None" -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "ਕੋਈ ਵੀ ਨਹੀਂ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" +msgstr "ਪੈਕੇਜ ਲਿਸਟ ਤਾਜ਼ਾ" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "" +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" +msgstr "ਸੁਨੇਹੇ ਵੇਖੋ" -#: Settings/KpkSettings.cpp:164 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to set origin data" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "ਇਹ ਆਈਕਾਨ ਓਹਲੇ" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -#, fuzzy -#| msgid "The following packages will also be removed for dependencies" -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" -msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, kde-format +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "ਪੈਕੇਜ: %2" +msgstr[1] "ਪੈਕੇਜ: %2" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -#, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" -msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "ਪੈਕੇਜ ਮੈਨੇਜਰ ਵਲੋਂ ਇੱਕ ਸੁਨੇਹਾ" +msgstr[1] "ਪੈਕੇਜ ਮੈਨੇਜਰ ਵਲੋਂ %1 ਸੁਨੇਹੇ" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +msgid "The system update has completed" +msgstr "ਸਿਸਟਮ ਅੱਪਡੇਟ ਪੂਰਾ ਹੋਇਆ" -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +msgctxt "Restart the computer" +msgid "Restart" +msgstr "ਮੁੜ-ਚਾਲੂ" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -#, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "ਇੰਸਟਾਲ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "ਹੁਣ ਨਹੀਂ" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to start search file transaction" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "ਲਾਗਆਉਟ" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "ਪੈਕੇਜ ਪਹਿਲਾਂ ਹੀ ਇੰਸਟਾਲ ਹੈ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -#, fuzzy -#| msgid "The following packages will also be installed as dependencies" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਦੇ ਤੌਰ ਉੱਤੇ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ" -msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਦੇ ਤੌਰ ਉੱਤੇ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -#, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" -msgstr[1] "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "ਪੈਕੇਜ ਮੈਨੇਜਰ ਸੁਨੇਹੇ" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "Failed to find package" -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "ਸੁਨੇਹਾ" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr[0] "ਪਰੋਗਰਾਮ ਫਾਇਲ ਹਟਾਉਣੀ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "ਪਰੋਗਰਾਮ ਫਾਇਲਾਂ ਹਟਾਉਣੀਆਂ ਚਾਹੁੰਦੇ ਹੋ" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "" -msgstr[1] "" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 ਫਾਇਲ ਹਟਾਉਣੀ ਚਾਹੁੰਦਾ ਹੈ" +msgstr[1] "%2 ਫਾਇਲਾਂ ਹਟਾਉਣੀਆਂ ਚਾਹੁੰਦਾ ਹੈ" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following file is going to be removed:" @@ -3113,7 +2912,7 @@ msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" @@ -3125,22 +2924,18 @@ msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -#, fuzzy -#| msgid "Search failed" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" -msgstr "ਖੋਜ ਫੇਲ੍ਹ ਹੋਈ" +msgstr "ਖੋਜ" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -#, fuzzy -#| msgid "The following packages will also be removed for dependencies" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" -msgstr[0] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" -msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਲਈ ਹਟਾਏ ਜਾਣਗੇ" +msgstr[0] "ਹੇਠ ਦਿੱਤਾ ਪੈਕੇਜ ਹਟਾਇਆ ਜਾਵੇਗਾ" +msgstr[1] "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਹਟਾਏ ਜਾਣਗੇ" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -3148,257 +2943,193 @@ msgstr[0] "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" msgstr[1] "ਦਿੱਤੀ ਫਾਇਲ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "Could not find %1" -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                                              • %1
                                              • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Updates" -msgid "Show updates" -msgstr "ਅੱਪਡੇਟ" - -#: KPackageKit/main.cpp:47 -#, fuzzy -#| msgid "Settings" -msgid "Show settings" -msgstr "ਸੈਟਿੰਗ" - -#: KPackageKit/main.cpp:48 -#, fuzzy -#| msgid "Search package name" -msgid "Show backend details" -msgstr "ਪੈਕੇਜ ਨਾਂ ਖੋਜ" - -#: KPackageKit/main.cpp:49 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Mime type installer" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:50 -#, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Single file installer" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "ਖੋਜ" -#: KPackageKit/main.cpp:52 -#, fuzzy -#| msgid "Searching by package name" -msgid "Single package remover" -msgstr "ਪੈਕੇਜ ਨਾਂ ਨਾਲ ਖੋਜ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "ਇਸ ਕਿਸਮ ਦੀ ਫਾਇਲ ਨੂੰ ਹੈਂਡਲ ਕਰਨ ਲਈ ਕੋਈ ਨਵੀਂ ਐਪਲੀਕੇਸ਼ਨ ਨਹੀਂ ਲੱਭੀ ਜਾ ਸਕੀ" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "ਸਾਫਟਵੇਅਰ ਲੱਭਣ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: KPackageKit/KpkInstallFiles.cpp:81 -#, fuzzy -#| msgid "This item is not supported by your backend or it is not a file" -#| msgid_plural "" -#| "These items are not supported by your backend or they are not files" -msgid "This item is not supported by your backend, or it is not a file." +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                                Do you want to install this catalog?

                                                • %2
                                                " msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "ਇਹ ਆਈਟਮ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਜਾਂ ਇਹ ਇੱਕ ਫਾਇਲ ਨਹੀਂ" -msgstr[1] "ਇਹ ਆਈਟਮਾਂ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਜਾਂ ਇਹ ਫਾਇਲਾਂ ਨਹੀਂ" +"

                                                Do you want to install these catalogs?

                                                • %2
                                                " +msgstr[0] "

                                                ਕੀ ਤੁਸੀਂ ਇਹ ਕੈਟਾਲਾਗ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?

                                                • %2
                                                " +msgstr[1] "

                                                ਕੀ ਤੁਸੀਂ ਇਹ ਕੈਟਾਲਾਗ ਇੰਸਟਾਲ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?

                                                • %2
                                                " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "ਕੈਟਾਲਾਗ ਇੰਸਟਾਲ" +msgstr[1] "ਕੈਟਾਲਾਗ ਇੰਸਟਾਲ" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "ਇੰਸਟਾਲ ਕਰਨਾ ਅਸੰਭਵ" - -#: KPackageKit/KpkInstallFiles.cpp:98 +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "ਇੰਸਟਾਲ" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" -msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "ਇੰਸਟਾਲ?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 +#: SmartIcon/PkInstallCatalogs.cpp:99 #, fuzzy -#| msgid "The package is not installed" -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" -msgstr[1] "ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਹੈ" +#| msgid "Sorry, your backend does not support installing packages" +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "ਅਫਸੋਸ ਹੈ ਕਿ ਤੁਹਾਡਾ ਬੈਕਐਂਡ ਪੈਕੇਜ ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਸਹਾਇਕ ਨਹੀਂ ਹੈ" -#: KPackageKit/KpkInstallFiles.cpp:172 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -msgstr[1] "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "ਸਹਾਇਕ ਨਹੀਂ" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "ਕੈਟਾਲਾਗ %2 ਖੋਲ੍ਹਣ ਲਈ ਫੇਲ੍ਹ" +msgstr[1] "ਕੈਟਾਲਾਗ %2 ਖੋਲ੍ਹਣ ਲਈ ਫੇਲ੍ਹ" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "ਖੋਲ੍ਹਣ ਲਈ ਫੇਲ੍ਹ" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਹੈ" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "ਸੈਟਅੱਪ ਟਰਾਂਸੈਕਸ਼ਨ ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ ਹੈ" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -#, fuzzy -#| msgid "Failed to initialize" -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -msgstr[1] "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ ਸੈਟਿੰਗ" -#: KPackageKit/KpkInstallFiles.cpp:197 -#, fuzzy -#| msgid "Sorry an error occurred" -msgid "An error occurred." -msgstr "ਅਫਸੋਸ ਇੱਕ ਗਲਤੀ ਆਈ ਹੈ" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "ਘੰਟੇਵਾਰ" -#: KPackageKit/KpkInstallPackageName.cpp:47 -#, fuzzy -#| msgid "A system restart is required after this update" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" -msgstr[1] "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "ਰੋਜ਼ਾਨਾ" -#: KPackageKit/KpkInstallPackageName.cpp:50 -#, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" -msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "ਹਫ਼ਤੇਵਾਰ" -#: KPackageKit/KpkInstallPackageName.cpp:57 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "ਮਹੀਨੇਵਾਰ" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" -msgstr[1] "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "ਕਦੇ ਵੀ ਨਹੀਂ" -#: KPackageKit/KpkInstallPackageName.cpp:68 -#, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "ਇੰਸਟਾਲ" +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "ਕੇਵਲ ਸੁਰੱਖਿਆ" -#: KPackageKit/KpkInstallPackageName.cpp:81 -#, fuzzy -#| msgid "Transactions" -msgid "Failed to start resolve transaction" -msgstr "ਟਰਾਂਸਐਕਸ਼ਨ" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "ਸਭ ਅੱਪਡੇਟ" -#: KPackageKit/KpkInstallPackageName.cpp:112 -#, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" -msgstr[1] "ਪੈਕੇਜ, ਜੋ ਕਿ ਸੋਧਿਆ ਜਾਣਾ ਸੀ, ਤੁਹਾਡੇ ਸਿਸਟਮ ਜਾਂ ਕਿਸੇ ਸਾਫਟਵੇਅਰ ਸਰੋਤ ਉੱਤੇ ਨਹੀਂ ਲੱਭਿਆ।" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "ਕੋਈ ਵੀ ਨਹੀਂ" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "ਸਰੋਤ ਡਾਟਾ ਸੈੱਟ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                %1
                                                Do " -"you want to search for a program to open this file type now?" -msgstr "" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "ਕੇਪੈਕੇਜਕਿੱਟ ਸਾਫਟਵੇਅਰ ਪਰਬੰਧ ਟੂਲ ਹੈ" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "ਅੱਪਡੇਟ ਵੇਖੋ" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "ਸੈਟਿੰਗ ਵੇਖੋ" -#: KPackageKit/KpkInstallMimeType.cpp:64 -#, fuzzy -#| msgid "Search failed" -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "ਖੋਜ ਫੇਲ੍ਹ ਹੋਈ" +#: KPackageKit/main.cpp:48 +msgid "Show backend details" +msgstr "ਬੈਕਐਂਡ ਵੇਰਵਾ ਵੇਖੋ" -#: KPackageKit/KpkInstallMimeType.cpp:78 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to search for provides" -msgstr "ਸ਼ੁਰੂ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "ਮਾਈਮ ਟਾਈਪ ਇੰਸਟਾਲਰ" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" +#: KPackageKit/main.cpp:50 +msgid "Package name installer" +msgstr "ਪੈਕੇਜ ਨਾਂ ਇੰਸਟਾਲਰ" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" +#: KPackageKit/main.cpp:51 +msgid "Single file installer" +msgstr "ਇੱਕਲੀ ਫਾਇਲ ਇੰਸਟਾਲਰ" -#: KPackageKit/KpkInstallMimeType.cpp:108 -#, fuzzy -#| msgid "Failed to finalize" -msgid "Failed to find software" -msgstr "ਪੂਰਾ ਕਰਨ ਲਈ ਫੇਲ੍ਹ" +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "ਇੱਕ ਪੈਕੇਜ ਹਟਾਉਣ ਵਾਲਾ" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "ਇੰਸਟਾਲ ਕਰਨ ਲਈ ਪੈਕੇਜ ਫਾਇਲ" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "" +msgstr "ਅਮਨਪਰੀਤ ਸਿੰਘ ਆਲਮ" #: rc.cpp:2 -#, fuzzy -#| msgid "Getting details" msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "aalam@users.sf.net" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 -#, fuzzy -#| msgid "Security update" msgid "Select all updates" -msgstr "ਸੁਰੱਖਿਆ ਅੱਪਡੇਟ" +msgstr "ਸਭ ਅੱਪਡੇਟ ਚੁਣੋ" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "ਤਾਜ਼ਾ ਕਰੋ" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3409,16 +3140,14 @@ #. i18n: file: Updater/KpkHistory.ui:22 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchLineKLE) #: rc.cpp:17 -#, fuzzy -#| msgid "No filter" msgid "Type filter" -msgstr "ਫਿਲਟਰ ਨਹੀਂ" +msgstr "ਫਿਲਟਰ ਕਿਸਮ" #. i18n: file: Updater/KpkHistory.ui:54 #. i18n: ectx: property (text), widget (QLabel, timeCacheLabel) #: rc.cpp:20 msgid "Time since last cache refresh: 5 hours" -msgstr "" +msgstr "ਆਖਰੀ ਕੈਸ਼ ਤਾਜ਼ਾ ਕਰਨ ਦਾ ਸਮਾਂ: 5 ਘੰਟੇ" #. i18n: file: AddRm/KpkPackageDetails.ui:69 #. i18n: ectx: property (text), widget (QToolButton, fileListTB) @@ -3438,461 +3167,444 @@ msgid "Required by" msgstr "ਲੋੜੀਦਾ ਹੈ" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "ਸਾਫਟਵੇਅਰ ਸ਼ਾਮਲ ਅਤੇ ਹਟਾਓ" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 -#, fuzzy -#| msgid "Search package name" msgid "Search packages" -msgstr "ਪੈਕੇਜ ਨਾਂ ਖੋਜ" +msgstr "ਪੈਕੇਜ ਖੋਜ" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "ਫਿਲਟਰ" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "ਸਭ ਪੈਕੇਜ" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ - ਟਰਾਂਸਐਕਸ਼ਨ" +msgid "Transaction" +msgstr "ਟਰਾਂਸੈਕਸ਼ਨ" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ਆਈਕਾਨ" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "ਪੈਕੇਜ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "ਫੂ ਕਰਨ ਲਈ ਇੱਕ ਲਾਇਬਰੇਰੀ" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 -#, fuzzy -#| msgid "Education" -msgid "Actions" -msgstr "ਸਿੱਖਿਆ" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:80 -msgid "TextLabel" -msgstr "" +msgid "Actions" +msgstr "ਕਾਰਵਾਈਆਂ" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "ਰਿਪੋਜ਼ਟਰੀ ਨਾਂ:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "ਦਸਤਖਤ URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "ਦਸਤਖਤ ਯੂਜ਼ਰ ਪਛਾਣ:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "ਦਸਤਖਤ ਪਛਾਣ:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "ਕੀ ਤੁਸੀਂ ਯੂਜ਼ਰ ਨੂੰ ਪਛਾਣਦੇ ਹੋ ਅਤੇ ਇਹ ਕੁੰਜੀ ਉੱਤੇ ਭਰੋਸਾ ਕਰਦੇ ਹੋ?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "ਕੀ ਤੁਸੀਂ ਪੈਕੇਜ ਦੇ ਸਰੋਤ ਉੱਤੇ ਭਰੋਸਾ ਕਰਦੇ ਹੋ?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "ਜਾਰੀ ਰੱਖਣ ਤੋਂ ਪਹਿਲਾਂ ਅੱਗੇ ਦਿੱਤੀ ਖਾਸ ਜਾਣਕਾਰੀ ਧਿਆਨ ਨਾਲ ਪੜ੍ਹ ਲਵੋ ਜੀ:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ ਸੈਟਿੰਗ" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "ਅੱਪਡੇਟ ਲਈ ਚੈੱਕ:" +msgid "Update settings" +msgstr "ਅੱਪਡੇਟ ਸੈਟਿੰਗ" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "ਆਟੋਮੈਟਿਕ ਇੰਸਟਾਲ:" +msgid "Check for updates:" +msgstr "ਅੱਪਡੇਟ ਲਈ ਚੈੱਕ:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "ਸਮਾਰਟ ਟਰੇ ਆਈਕਾਨ" +msgid "Automatically install:" +msgstr "ਆਟੋਮੈਟਿਕ ਇੰਸਟਾਲ:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "ਜਦੋਂ ਵੀ ਅੱਪਡੇਟ ਉਪਲੱਬਧ ਹੋਣ ਤਾਂ ਸੂਚਨਾ ਦਿਓ" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "ਜਦੋਂ ਵੱਡੀ ਟਾਸਕ ਪੂਰੀ ਕੀਤੀ ਗਈ ਹੋਵੇ ਤਾਂ ਸੂਚਨਾ ਦਿਓ" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "ਪੈਕੇਜਾਂ ਦਾ ਸਰੋਤ" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "ਡੀਬੱਗ ਅਤੇ ਡਿਵੈਲਪਮੈਂਟ ਪੈਕੇਜਾਂ ਦਾ ਸਰੋਤ ਵੇਖੋ(&S)" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" -msgstr "" +msgstr "ਬੈਕਐਂਡ ਬਾਰੇ" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 -#, fuzzy -#| msgid "Package Name" +#: rc.cpp:137 msgid "Backend name:" -msgstr "ਪੈਕੇਜ ਨਾਂ" +msgstr "ਬੈਕਐਂਡ ਨਾਂ:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 -#, fuzzy -#| msgid "Package Name" +#: rc.cpp:140 msgid "backend name here" -msgstr "ਪੈਕੇਜ ਨਾਂ" +msgstr "ਬੈਕਐਂਡ ਨਾਂ ਇੱਥੇ" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 -#, fuzzy -#| msgid "Package Name" +#: rc.cpp:143 msgid "Backend author:" -msgstr "ਪੈਕੇਜ ਨਾਂ" +msgstr "ਬੈਕਐਂਡ ਲੇਖਕ:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "ਬੈਕਐਂਡ ਵੇਰਵਾ:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 -#, fuzzy -#| msgid "Package Name" msgid "backend author name here" -msgstr "ਪੈਕੇਜ ਨਾਂ" +msgstr "ਬੈਕਐਂਡ ਲੇਖਖ ਨਾਂ ਇੱਥੇ" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "ਬੈਕਐਂਡ ਵੇਰਵਾ ਇੱਥੇ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 -#, fuzzy -#| msgid "Package install blocked" +#: rc.cpp:164 msgid "Package is visible" -msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਬਲਾਕ ਹੈ" +msgstr "ਪੈਕੇਜ ਦਿੱਖ ਹੈ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" -msgstr "" +msgstr "ਸਭ ਤੋਂ ਨਵਾਂ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" -msgstr "" +msgstr "GUI" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 -#, fuzzy -#| msgid "Only free software" +#: rc.cpp:173 msgid "Free software" -msgstr "ਕੇਵਲ ਮੁਕਤ ਸਾਫਟਵੇਅਰ" +msgstr "ਮੁਕਤ ਸਾਫਟਵੇਅਰ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" -msgstr "" +msgstr "ਸਹਾਇਕ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" -msgstr "" +msgstr "ਢੰਗ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 -#, fuzzy -#| msgid "Updates" +#: rc.cpp:182 msgid "GetUpdates" -msgstr "ਅੱਪਡੇਟ" +msgstr "ਅੱਪਡੇਟਲਵੋ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 -#, fuzzy -#| msgid "Updating packages" +#: rc.cpp:185 msgid "UpdatePackage" -msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਅੱਪਡੇਟਪੈਕੇਜ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 -#, fuzzy -#| msgid "Repository name:" +#: rc.cpp:188 msgid "GetRepositoryList" -msgstr "ਰਿਪੋਜ਼ਟਰੀ ਨਾਂ:" +msgstr "GetRepositoryList" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 -#, fuzzy -#| msgid "Refresh" +#: rc.cpp:191 msgid "RefreshCache" -msgstr "ਤਾਜ਼ਾ ਕਰੋ" +msgstr "RefreshCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: rc.cpp:194 msgid "InstallPackage" -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 -#, fuzzy -#| msgid "Repository name:" +#: rc.cpp:197 msgid "RepositoryEnable" -msgstr "ਰਿਪੋਜ਼ਟਰੀ ਨਾਂ:" +msgstr "RepositoryEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 -#, fuzzy -#| msgid "Update System" +#: rc.cpp:200 msgid "UpdateSystem" -msgstr "ਸਿਸਟਮ ਅੱਪਡੇਟ" +msgstr "UpdateSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 -#, fuzzy -#| msgid "Failed to create a thread" +#: rc.cpp:203 msgid "RemovePackage" -msgstr "ਥਰਿੱਡ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ" +msgstr "ਪੈਕੇਜਹਟਾਓ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 -#, fuzzy -#| msgid "Repository name:" +#: rc.cpp:206 msgid "RepositorySetEnable" -msgstr "ਰਿਪੋਜ਼ਟਰੀ ਨਾਂ:" +msgstr "RepositorySetEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 -#, fuzzy -#| msgid "Search failed" +#: rc.cpp:209 msgid "SearchName" -msgstr "ਖੋਜ ਫੇਲ੍ਹ ਹੋਈ" +msgstr "ਖੋਜਨਾਂ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 -#, fuzzy -#| msgid "Depends on" +#: rc.cpp:212 msgid "GetDepends" -msgstr "ਨਿਰਭਰ ਹੈ" +msgstr "ਨਿਰਭਰ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 -#, fuzzy -#| msgid "Getting updates" +#: rc.cpp:215 msgid "WhatProvides" -msgstr "ਅੱਪਡੇਟ ਲਏ ਜਾ ਰਹੇ ਹਨ" +msgstr "ਜੋਦਿੰਦਾਹੈ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 -#, fuzzy -#| msgid "Searching details" +#: rc.cpp:218 msgid "SearchDetails" -msgstr "ਵੇਰਵਾ ਖੋਜ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਖੋਜਵੇਰਵਾ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 -#, fuzzy -#| msgid "Getting details" +#: rc.cpp:221 msgid "GetRequires" -msgstr "ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਲਿਆਜਾਰਿਹਾਹੈ" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 -#, fuzzy -#| msgid "All Packages" +#: rc.cpp:224 msgid "GetPackages" -msgstr "ਸਭ ਪੈਕੇਜ" +msgstr "GetPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 -#, fuzzy -#| msgid "Searching groups" +#: rc.cpp:227 msgid "SearchGroup" -msgstr "ਗਰੁੱਪ ਖੋਜ ਕੀਤੇ ਜਾ ਰਹੇ ਹਨ" +msgstr "SearchGroup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 -#, fuzzy -#| msgid "Getting update detail" +#: rc.cpp:230 msgid "GetUpdateDetail" -msgstr "ਅੱਪਡੇਟ ਵੇਰਵਾ ਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "GetUpdateDetail" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 -#, fuzzy -#| msgid "Search killed" +#: rc.cpp:233 msgid "SearchFile" -msgstr "ਖੋਜ ਖਤਮ ਕੀਤੀ" +msgstr "SearchFile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 -#, fuzzy -#| msgid "Description" +#: rc.cpp:236 msgid "GetDescription" -msgstr "ਵੇਰਵਾ" +msgstr "GetDescription" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 -#, fuzzy -#| msgid "Details" +#: rc.cpp:242 msgid "GetFiles" -msgstr "ਵੇਰਵਾ" +msgstr "GetFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 -#, fuzzy -#| msgid "Resolving" +#: rc.cpp:245 msgid "Resolve" -msgstr "ਹੱਲ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "ਹੱਲ਼" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 -#, fuzzy -#| msgid "Installed" +#: rc.cpp:248 msgid "InstallFIle" -msgstr "ਇੰਸਟਾਲ ਕੀਤਾ" +msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 -#, fuzzy -#| msgid "Installed" +#: rc.cpp:251 msgid "SimulateInstallFiles" -msgstr "ਇੰਸਟਾਲ ਕੀਤਾ" +msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 -#, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" +#: rc.cpp:254 msgid "SimulateInstallPackages" -msgstr "1 ਇੰਸਟਾਲ ਕੀਤਾ ਪੈਕੇਜ" +msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 -#, fuzzy -#| msgid "Failed to create a thread" +#: rc.cpp:257 msgid "SimulateRemovePackages" -msgstr "ਥਰਿੱਡ ਬਣਾਉਣ ਲਈ ਫੇਲ੍ਹ" +msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 -#, fuzzy -#| msgid "Updating packages" +#: rc.cpp:260 msgid "SimulateUpdatePackages" -msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" +msgstr "SimulateUpdatePackages" + +#, fuzzy +#~| msgid "Transactions" +#~ msgid "User canceled the installation" +#~ msgstr "ਟਰਾਂਸਐਕਸ਼ਨ" + +#, fuzzy +#~| msgid "This item is not supported by your backend or it is not a file" +#~| msgid_plural "" +#~| "These items are not supported by your backend or they are not files" +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "ਇਹ ਆਈਟਮ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਜਾਂ ਇਹ ਇੱਕ ਫਾਇਲ ਨਹੀਂ" +#~ msgstr[1] "ਇਹ ਆਈਟਮਾਂ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਵਲੋਂ ਸਹਾਇਕ ਨਹੀਂ ਜਾਂ ਇਹ ਫਾਇਲਾਂ ਨਹੀਂ" + +#, fuzzy +#~| msgid "A system restart is required after this update" +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" +#~ msgstr[1] "ਇਸ ਅੱਪਡੇਟ ਦੇ ਬਾਅਦ ਸਿਸਟਮ ਨੂੰ ਮੁੜ-ਚਾਲੂ ਕਰਨ ਦੀ ਲੋੜ ਹੈ" + +#, fuzzy +#~| msgid "Do you want to install this file?" +#~| msgid_plural "Do you want to install these files?" +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲ ਇੰਸਟਾਲ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ" +#~ msgstr[1] "ਕੀ ਤੁਸੀਂ ਇਹ ਫਾਇਲਾਂ ਇੰਸਟਾਲ ਕਰਨੀਆਂ ਚਾਹੁੰਦੇ ਹੋ?" + +#~ msgid "All packages" +#~ msgstr "ਸਭ ਪੈਕੇਜ" + +#~ msgid "Package Name" +#~ msgstr "ਪੈਕੇਜ ਨਾਂ" + +#~ msgid "KPackageKit Settings" +#~ msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ ਸੈਟਿੰਗ" + +#~ msgid "Smart Tray Icon" +#~ msgstr "ਸਮਾਰਟ ਟਰੇ ਆਈਕਾਨ" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "ਜਦੋਂ ਵੱਡੀ ਟਾਸਕ ਪੂਰੀ ਕੀਤੀ ਗਈ ਹੋਵੇ ਤਾਂ ਸੂਚਨਾ ਦਿਓ" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "ਕੇ-ਪੈਕੇਜ-ਕਿੱਟ - ਟਰਾਂਸਐਕਸ਼ਨ" + +#~ msgid "A library to do foo" +#~ msgstr "ਫੂ ਕਰਨ ਲਈ ਇੱਕ ਲਾਇਬਰੇਰੀ" #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਨਿਰਭਰਤਾ ਦੇ ਤੌਰ ਉੱਤੇ ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ" @@ -3907,11 +3619,6 @@ #~ msgstr "ਹੇਠ ਦਿੱਤੇ ਪੈਕੇਜ ਵੀ ਹਟਾਏ/ਇੰਸਟਾਲ ਕੀਤੇ ਜਾਣਗੇ:" #, fuzzy -#~| msgid "Getting package lists" -#~ msgid "Failed to update package lists" -#~ msgstr "ਪੈਕੇਜ ਲਿਸਟਾਂ ਲਈਆਂ ਜਾ ਰਹੀਆਂ ਹਨ" - -#, fuzzy #~| msgid "Refresh Packages List" #~ msgid "Failed to refresh package lists" #~ msgstr "ਪੈਕੇਜ ਲਿਸਟ ਤਾਜ਼ਾ" @@ -3983,9 +3690,6 @@ #~ msgid "Downloading" #~ msgstr "ਡਾਊਨਲੋਡ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" -#~ msgid "Updating" -#~ msgstr "ਅੱਪਡੇਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" - #~ msgid "Cleaning Up" #~ msgstr "ਸਾਫ਼ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ" @@ -4057,9 +3761,6 @@ #~ msgid "Find Name" #~ msgstr "ਨਾਂ ਲੱਭੋ" -#~ msgid "Find Description" -#~ msgstr "ਵੇਰਵਾ ਲੱਭੋ" - #~ msgid "Find File" #~ msgstr "ਫਾਇਲ ਲੱਭੋ" diff -Nru kpackagekit-0.5.4/po/pl/kpackagekit.po kpackagekit-0.6.0/po/pl/kpackagekit.po --- kpackagekit-0.5.4/po/pl/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/pl/kpackagekit.po 2010-01-30 09:03:22.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-02-02 22:53+0100\n" "Last-Translator: Marta Rybczyńska \n" "Language-Team: \n" @@ -34,11 +34,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Szczegóły" @@ -103,30 +103,30 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "Distribution upgrade complete." msgstr "Pobieranie informacji o aktualizacji dystrybucji" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "The distribution upgrade process failed to start." msgstr "Pobieranie informacji o aktualizacji dystrybucji" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" @@ -220,30 +220,26 @@ msgid "Time since last cache refresh: %1" msgstr "" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nazwa pakietu" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Strona domowa" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licencja" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 #, fuzzy #| msgid "Group" msgctxt "Group of the package" msgid "Group" msgstr "Grupa" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Strona domowa" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Rozmiar" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "" @@ -257,23 +253,21 @@ msgid "KDE interface for managing software" msgstr "" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Znajdź" -#: AddRm/KpkAddRm.cpp:127 -#, fuzzy -#| msgid "All Packages" -msgid "All packages" -msgstr "Wszystkie pakiety" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 #, fuzzy #| msgid "Testing changes" msgid "List of changes" msgstr "Testowanie zmian" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 #, fuzzy #| msgid "Group" msgctxt "Groups of packages" @@ -283,163 +277,163 @@ msgstr[1] "Grupa" msgstr[2] "Grupa" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 #, fuzzy #| msgid "&Cancel" msgid "&Cancel" msgstr "&Anuluj" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 #, fuzzy #| msgid "Find by &Name" msgid "Find by &name" msgstr "Znajdź w &nazwie" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Znajdź w nazwie &pliku" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Znajdź w &opisie" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 #, fuzzy #| msgid "Change Log" msgid "Review Changes" msgstr "Dziennik zmian" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Kolekcje" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Tylko kolekcje" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Wyklucz kolekcje" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Zainstalowane" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Tylko zainstalowane" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Tylko dostępne" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Bez filtra" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Programistyczne" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Tylko programistyczne" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Tylko pliki końcowego użytkownika" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Graficzne" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Tylko graficzne" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Tylko tekstowe" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 #, fuzzy #| msgid "Free" msgctxt "Filter for free packages" msgid "Free" msgstr "Wolne" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Tylko wolne oprogramowanie" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Tylko niewolne oprogramowanie" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architektury" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Tylko natywne architektury" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Tylko nienatywne architektury" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 #, fuzzy #| msgid "Source" msgctxt "Filter for source packages" msgid "Source" msgstr "Źródło" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Tylko kod źródłowy" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Tylko nie-kod źródłowy" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Ukryj pod-pakiety" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Pokaż tylko jeden pakiet, bez pod-pakietów" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Tylko najnowsze pakiety" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Pokaż tylko najnowszy dostępny pakiet" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Widok w grupach" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Wyświetl pakiety w grupach, zgodnie ze stanem" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 #, fuzzy #| msgid "The following packages will also be installed as dependencies" msgid "The following package will be installed:" @@ -448,13 +442,13 @@ msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 #, fuzzy #| msgid "Install" msgid "Install Now" msgstr "Instaluj" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following package will be removed:" @@ -463,13 +457,13 @@ msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 #, fuzzy #| msgid "Removing" msgid "Remove Now" msgstr "Usuwanie" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 #, fuzzy #| msgid "The following packages also have to be removed/installed:" msgid "The following package will be removed and installed:" @@ -478,55 +472,68 @@ msgstr[1] "Następujące pakiety również muszą być usunięte/zainstalowane:" msgstr[2] "Następujące pakiety również muszą być usunięte/zainstalowane:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Zastosuj teraz" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Getting package lists" +msgid "Failed to simulate package removal" +msgstr "Pobieranie listy pakietów" + +#: libkpackagekit/KpkReviewChanges.cpp:187 #, fuzzy #| msgid "Sorry, your backend does not support removing packages" msgid "The current backend does not support removing packages." msgstr "Przepraszamy, Twój silnik nie obsługuje usuwania pakietów" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 #, fuzzy #| msgid "KPackageKit" msgid "KPackageKit Error" msgstr "KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Getting package lists" +msgid "Failed to simulate package install" +msgstr "Pobieranie listy pakietów" + +#: libkpackagekit/KpkReviewChanges.cpp:224 #, fuzzy #| msgid "Sorry, your backend does not support installing packages" msgid "Current backend does not support installing packages." msgstr "Przepraszamy, Twój silnik nie obsługuje instalowania pakietów" -#: libkpackagekit/KpkReviewChanges.cpp:217 -#, fuzzy -#| msgid "Failed to create a thread" -msgid "Failed to remove package" -msgstr "Tworzenie wątku nie powiodło się" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Failed to install package" msgstr "1 zainstalowany pakiet" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +#, fuzzy +#| msgid "Failed to create a thread" +msgid "Failed to remove package" +msgstr "Tworzenie wątku nie powiodło się" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Ukryj" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 #, fuzzy #| msgid "Allows you to hide the window but keeps running transaction task" msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Pozwala na ukrycie okna, ale pozostawia włączone zadania transakcji" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                                                Installing unsigned packages can compromise your system, as it is " @@ -541,11 +548,11 @@ "Twojego systemu, gdyż niemożliwe jest wtedy określenie, czy oprogramowanie " "pochodzi z zaufanego źródła. Czy na pewno chcesz kontynuować instalację?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Instalowanie niepodpisanego oprogramowania" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 #, fuzzy #| msgid "A system restart is required after this update" msgid "A media change is required" @@ -569,7 +576,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Wymagana umowa licencyjna" @@ -584,15 +591,15 @@ msgid "Version" msgstr "Nowa wersja" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 #, fuzzy #| msgid "&Cancel" msgid "Cancel" msgstr "&Anuluj" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, fuzzy, kde-format #| msgid "Search finished in %1" msgid "Finished in %1." @@ -655,536 +662,546 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Wymagany jest podpis oprogramowania" -#: libkpackagekit/KpkStrings.cpp:31 +#: libkpackagekit/KpkStrings.cpp:32 #, fuzzy #| msgid "Unknown state" -msgctxt "The transaction state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Nieznany stan" -#: libkpackagekit/KpkStrings.cpp:33 +#: libkpackagekit/KpkStrings.cpp:35 #, fuzzy #| msgid "Waiting for service to start" -msgctxt "The transaction state" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Czekanie na uruchomienie usługi" -#: libkpackagekit/KpkStrings.cpp:35 +#: libkpackagekit/KpkStrings.cpp:38 #, fuzzy #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Czekanie na pozostałe zadania" -#: libkpackagekit/KpkStrings.cpp:37 +#: libkpackagekit/KpkStrings.cpp:41 #, fuzzy #| msgid "Running task" -msgctxt "The transaction state" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Uruchamianie zadania" -#: libkpackagekit/KpkStrings.cpp:39 +#: libkpackagekit/KpkStrings.cpp:44 #, fuzzy #| msgid "Querying" -msgctxt "The transaction state" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Wysyłanie zapytania" -#: libkpackagekit/KpkStrings.cpp:41 +#: libkpackagekit/KpkStrings.cpp:47 #, fuzzy #| msgid "Getting information" -msgctxt "The transaction state" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Pobieranie informacji" -#: libkpackagekit/KpkStrings.cpp:43 +#: libkpackagekit/KpkStrings.cpp:50 #, fuzzy #| msgid "Failed to create a thread" -msgctxt "The transaction state" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Tworzenie wątku nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:45 +#: libkpackagekit/KpkStrings.cpp:53 #, fuzzy #| msgid "Downloading packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Pobieranie pakietów" -#: libkpackagekit/KpkStrings.cpp:47 +#: libkpackagekit/KpkStrings.cpp:56 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "1 zainstalowany pakiet" -#: libkpackagekit/KpkStrings.cpp:49 +#: libkpackagekit/KpkStrings.cpp:59 #, fuzzy #| msgid "Refreshing software list" -msgctxt "The transaction state" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Odświeżanie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:51 +#: libkpackagekit/KpkStrings.cpp:62 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Aktualizacja pakietów" -#: libkpackagekit/KpkStrings.cpp:53 +#: libkpackagekit/KpkStrings.cpp:65 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Aktualizacja pakietów" -#: libkpackagekit/KpkStrings.cpp:55 +#: libkpackagekit/KpkStrings.cpp:68 #, fuzzy #| msgid "Updating packages" -msgctxt "The transaction state" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Aktualizacja pakietów" -#: libkpackagekit/KpkStrings.cpp:57 +#: libkpackagekit/KpkStrings.cpp:71 #, fuzzy #| msgid "Resolving dependencies" -msgctxt "The transaction state" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Rozwiązywanie zależności" -#: libkpackagekit/KpkStrings.cpp:59 +#: libkpackagekit/KpkStrings.cpp:74 #, fuzzy #| msgid "Checking signatures" -msgctxt "The transaction state" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Sprawdzanie podpisów" -#: libkpackagekit/KpkStrings.cpp:61 +#: libkpackagekit/KpkStrings.cpp:77 #, fuzzy #| msgid "Rolling back" -msgctxt "The transaction state" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Przywracanie" -#: libkpackagekit/KpkStrings.cpp:63 +#: libkpackagekit/KpkStrings.cpp:80 #, fuzzy #| msgid "Testing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Testowanie zmian" -#: libkpackagekit/KpkStrings.cpp:65 +#: libkpackagekit/KpkStrings.cpp:83 #, fuzzy #| msgid "Committing changes" -msgctxt "The transaction state" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Zatwierdzanie zmian" -#: libkpackagekit/KpkStrings.cpp:67 +#: libkpackagekit/KpkStrings.cpp:86 #, fuzzy #| msgid "Requesting data" -msgctxt "The transaction state" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Pozyskiwanie danych" -#: libkpackagekit/KpkStrings.cpp:69 +#: libkpackagekit/KpkStrings.cpp:89 #, fuzzy #| msgid "Finished" -msgctxt "The transaction state" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Ukończono" -#: libkpackagekit/KpkStrings.cpp:71 +#: libkpackagekit/KpkStrings.cpp:92 #, fuzzy #| msgid "Cancelling" -msgctxt "The transaction state" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Anulowanie" -#: libkpackagekit/KpkStrings.cpp:73 +#: libkpackagekit/KpkStrings.cpp:95 #, fuzzy #| msgid "Downloading repository information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Pobieranie informacji repozytorium" -#: libkpackagekit/KpkStrings.cpp:75 +#: libkpackagekit/KpkStrings.cpp:98 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Pobieranie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:77 +#: libkpackagekit/KpkStrings.cpp:101 #, fuzzy #| msgid "Downloading file lists" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Pobieranie listy plików" -#: libkpackagekit/KpkStrings.cpp:79 +#: libkpackagekit/KpkStrings.cpp:104 #, fuzzy #| msgid "Downloading list of packages" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Pobieranie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:81 +#: libkpackagekit/KpkStrings.cpp:107 #, fuzzy #| msgid "Downloading groups" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Pobieranie grup" -#: libkpackagekit/KpkStrings.cpp:83 +#: libkpackagekit/KpkStrings.cpp:110 #, fuzzy #| msgid "Downloading update information" -msgctxt "The transaction state" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Pobieranie informacji aktualizacji" -#: libkpackagekit/KpkStrings.cpp:85 +#: libkpackagekit/KpkStrings.cpp:113 #, fuzzy #| msgid "Repackaging files" -msgctxt "The transaction state" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Ponowne pakowanie plików" -#: libkpackagekit/KpkStrings.cpp:87 +#: libkpackagekit/KpkStrings.cpp:116 #, fuzzy #| msgid "Loading cache" -msgctxt "The transaction state" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Wczytywanie bufora" -#: libkpackagekit/KpkStrings.cpp:89 +#: libkpackagekit/KpkStrings.cpp:119 #, fuzzy #| msgid "Scanning installed applications" -msgctxt "The transaction state" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Skanowanie zainstalowanych programów" -#: libkpackagekit/KpkStrings.cpp:91 +#: libkpackagekit/KpkStrings.cpp:122 #, fuzzy #| msgid "Generating package lists" -msgctxt "The transaction state" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generowanie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Czekanie na pozostałe zadania" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Ponowne pakowanie plików" + +#: libkpackagekit/KpkStrings.cpp:150 #, fuzzy #| msgid "Downloading" msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Pobieranie" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 #, fuzzy #| msgid "Updated" msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Zaktualizowano" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 #, fuzzy #| msgid "Installed" msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Zainstalowane" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 #, fuzzy #| msgid "Removing" msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Usuwanie" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 #, fuzzy #| msgid "Cleaning Up" msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Czyszczenie" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 #, fuzzy #| msgid "Obsoletes" msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Dezaktualizacje" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Nieznana grupa" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 #, fuzzy #| msgid "Getting dependencies" msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Pobieranie zależności" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 #, fuzzy #| msgid "Getting update detail" msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Pobieranie szczegółu aktualizacji" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 #, fuzzy #| msgid "Getting details" msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Pobieranie szczegółów" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 #, fuzzy #| msgid "Getting prerequesites" msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Pobieranie wymagań" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Pobieranie aktualizacji" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 #, fuzzy #| msgid "Searching details" msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Szukanie szczegółów" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 #, fuzzy #| msgid "Searching for file" msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Szukanie pliku" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Szukanie grup" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Szukanie w nazwie pakietu" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 #, fuzzy #| msgid "Removing" msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Usuwanie" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 #, fuzzy #| msgid "Installing" msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Instalowanie" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 #, fuzzy #| msgid "Installing file" msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Instalowanie pliku" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Odświeżanie bufora pakietu" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 #, fuzzy #| msgid "Updating packages" msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Aktualizacja pakietów" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 #, fuzzy #| msgid "Updating system" msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Aktualizacja systemu" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 #, fuzzy #| msgid "Canceling" msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Anulowanie" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 #, fuzzy #| msgid "Rolling back" msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Przywracanie" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 #, fuzzy #| msgid "Getting list of repositories" msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Pobieranie listy repozytoriów" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Włączanie repozytorium" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Ustawianie danych repozytorium" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Rozwiązywanie" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 #, fuzzy #| msgid "File List" msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Lista plików" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Pobieranie aktualizacji" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Instalowanie podpisu" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Pobieranie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Stosowanie EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Pobieranie pakietów" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Pobieranie informacji o aktualizacji dystrybucji" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Pobieranie aktualizacji" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 #, fuzzy #| msgid "Getting information" msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Pobieranie informacji" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Inicjalizacja nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Inicjalizacja nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Szukanie w nazwie pakietu" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -1192,84 +1209,84 @@ msgid "Simulating the update" msgstr "1 ważna aktualizacja" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 #, fuzzy #| msgid "Unknown group" msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Nieznana grupa" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 #, fuzzy #| msgid "Getting dependencies" msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Pobieranie zależności" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 #, fuzzy #| msgid "Getting update detail" msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Pobieranie szczegółu aktualizacji" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 #, fuzzy #| msgid "Getting details" msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Pobieranie szczegółów" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 #, fuzzy #| msgid "Getting prerequesites" msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Pobieranie wymagań" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Pobieranie aktualizacji" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 #, fuzzy #| msgid "Search package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Znajdź nazwę pakietu" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 #, fuzzy #| msgid "Searching for file" msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Szukanie pliku" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 #, fuzzy #| msgid "Searching groups" msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Szukanie grup" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Szukanie w nazwie pakietu" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 #, fuzzy #| msgid "Failed to create a thread" msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Tworzenie wątku nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -1277,428 +1294,440 @@ msgid "Installed packages" msgstr "1 zainstalowany pakiet" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 #, fuzzy #| msgid "Installing file" msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Instalowanie pliku" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 #, fuzzy #| msgid "Refreshing package cache" msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Odświeżanie bufora pakietu" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 #, fuzzy #| msgid "Updating packages" msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Aktualizacja pakietów" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 #, fuzzy #| msgid "Updating system" msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Aktualizacja systemu" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 #, fuzzy #| msgid "&Cancel" msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "&Anuluj" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 #, fuzzy #| msgid "Rolling back" msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Przywracanie" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 #, fuzzy #| msgid "Getting list of repositories" msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Pobieranie listy repozytoriów" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 #, fuzzy #| msgid "Enabling repository" msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Włączanie repozytorium" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 #, fuzzy #| msgid "Setting repository data" msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Ustawianie danych repozytorium" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 #, fuzzy #| msgid "Resolving" msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Rozwiązywanie" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 #, fuzzy #| msgid "File List" msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Lista plików" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Pobieranie aktualizacji" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 #, fuzzy #| msgid "Installing signature" msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Instalowanie podpisu" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 #, fuzzy #| msgid "Getting package lists" msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Pobieranie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 #, fuzzy #| msgid "Accepting EULA" msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Stosowanie EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 #, fuzzy #| msgid "Downloading packages" msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Pobieranie pakietów" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 #, fuzzy #| msgid "Getting distribution upgrade information" msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Pobieranie informacji o aktualizacji dystrybucji" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 #, fuzzy #| msgid "Getting updates" msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Pobieranie aktualizacji" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 #, fuzzy #| msgid "Transactions" msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Transakcje" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Inicjalizacja nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Failed to initialize" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Inicjalizacja nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Searching by package name" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Szukanie w nazwie pakietu" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to create a thread" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Tworzenie wątku nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Brak połączenia z siecią" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Brak dostępnego bufora pakietu" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Brak pamięci" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Tworzenie wątku nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Nie obsługiwane przez ten silnik" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Wystąpił wewnętrzny błąd systemu" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Brak związku zaufania bezpieczeństwa" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Pakiet nie jest zainstalowany" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Nie znaleziono pakietu" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Pakiet jest już zainstalowany" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Pobieranie pakietu nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Nie znaleziono grupy" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Niepoprawna lista grup" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Rozwiązywanie zależności nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Niepoprawny filtr wyszukiwania" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Błędny identyfikator pakietu" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Błąd transakcji" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Nie znaleziono nazwy repozytorium" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Nie można usunąć zabezpieczonego pakietu systemowego" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Anulowano zadanie" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Wymuszono anulowanie zadania" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Odczyt pliku konfiguracyjnego nie powiódł się" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Zadanie nie może być anulowane" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Nie można zainstalować pakietów źródłowych" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Akceptowanie licencji nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Konflikt pliku lokalnego pomiędzy pakietami" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Pakiety nie są kompatybilne" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Problem podczas łączenia ze źródłem oprogramowania" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Inicjalizacja nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Finalizacja nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Nie można pobrać blokady" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Brak pakietów do aktualizacji" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Nie można zapisać konfiguracji repozytorium" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Instalacja lokalna nie powiodła się" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Zły podpis GPG" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Brak podpisu GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Niepoprawna konfiguracja repozytorium" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Niepoprawny plik pakietu" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Zablokowano instalację pakietu" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Pakiet jest uszkodzony" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Wszystkie pakiety są już zainstalowane" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Nie można znaleźć określonego pliku" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Brak dostępnych źródeł" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 #, fuzzy #| msgid "Getting distribution upgrade information" msgid "No distribution upgrade data is available" msgstr "Pobieranie informacji o aktualizacji dystrybucji" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "Package is incompatible with this system" msgstr "Pakiet, który próbujesz zainstalować, jest już zainstalowany." -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 #, fuzzy #| msgid "Authentication failed" msgid "Authorization failed" msgstr "Uwierzytelnienie nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "Nie znaleziono pakietu" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot install from untrusted origin" msgstr "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Cannot update from untrusted origin" msgstr "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgid "File List" msgid "Cannot get the file list" msgstr "Lista plików" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "A system restart is required after this update" msgid "Cannot get package requires" msgstr "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Pobieranie pakietu nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Plik pakietu do zainstalowania" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Plik pakietu do zainstalowania" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Plik pakietu do zainstalowania" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Plik pakietu do zainstalowania" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Nieznany błąd" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1706,7 +1735,7 @@ "Brak dostępnego połączenia z siecią.\n" "Proszę sprawdzić swoje ustawienia połączenia i spróbować ponownie" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1714,7 +1743,7 @@ "Lista pakietów musi zostać przebudowana.\n" "Powinno się to stać automatycznie za pomocą silnika." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1723,11 +1752,11 @@ "Brak pamięci dla usługi odpowiedzialnej za żądania użytkowników.\n" "Proszę zamknąć niektóre programy lub ponownie uruchomić komputer." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Nie można utworzyć wątku dla żądania użytkownika." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1735,7 +1764,7 @@ "Działanie nie jest obsługiwane przez ten silnik.\n" "Proszę zgłosić błąd, a sytuacja nie powinna się powtórzyć." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1743,44 +1772,44 @@ "Wystąpił nieoczekiwany problem.\n" "Proszę zgłosić błąd z jego opisem." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Nie można utworzyć związku zaufania bezpieczeństwa z tym źródłem " "oprogramowania.\n" "Proszę sprawdzić ustawienia podpisu oprogramowania." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Pakiet, który próbujesz usunąć lub uaktualnić, nie jest jeszcze " "zainstalowany." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " "źródle oprogramowania." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Pakiet, który próbujesz zainstalować, jest już zainstalowany." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1788,7 +1817,7 @@ "Pobieranie pakietu nie powiodło się.\n" "Proszę sprawdzić swoje połączenie sieciowe." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1796,7 +1825,7 @@ "Nie znaleziono wpisanej grupy.\n" "Proszę sprawdzić listę grup i spróbować ponownie." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1804,14 +1833,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Nie można wczytać listy grup.\n" "Odświeżenie bufora może pomóc, jednak zazwyczaj jest to błąd źródła " "oprogramownia." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1819,11 +1848,11 @@ "Nie znaleziono zależności pakietu.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Filtr wyszukiwania został niepoprawnie skonstruowany." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1832,7 +1861,7 @@ "systemowej.\n" "Zazwyczaj sytuacja taka oznacza wewnętrzny błąd i powinna być zgłoszona." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1840,27 +1869,27 @@ "Wystąpił błąd podczas uruchamiania transakcji.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Nie znaleziono nazwy źródła oprogramowania zdalnego.\n" "Może wystąpić konieczność włączenia elementu w Źródłach oprogramowania." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Usuwanie zabezpieczonego pakietu systemowego jest zabronione." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Anulowanie zadania powiodło się i nie zmieniono żadnych pakietów." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1868,7 +1897,7 @@ "Anulowanie zadania powiodło się i nie zmieniono żadnych pakietów.\n" "Silnik nie zakończył działania czysto." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1876,11 +1905,11 @@ "Nie można otworzyć pliku konfiguracyjnego natywnego pakietu.\n" "Proszę się upewnić, że konfiguracja Twojego systemu jest poprawna." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Zadanie nie jest bezpieczne, aby teraz mogło zostać anulowane." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1888,7 +1917,7 @@ "Pakiety źródłowe nie są zazwyczaj instalowane w ten sposób.\n" "Sprawdź rozszerzenie pliku, który próbujesz zainstalować." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1896,45 +1925,45 @@ "Nie zaakceptowano umowy licencyjnej.\n" "Aby używać tego programu, musisz zaakceptować licencję." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Dwa pakiety dostarczają ten sam plik.\n" "Jest to zazwyczaj spowodowane mieszaniem pakietów z różnych źródeł " "oprogramowania." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Istnieje wiele pakietów, które nie są kompatybilne z pozostałymi.\n" "Zazwyczaj jest to efektem mieszania pakietów z różnych źródeł oprogramowania." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software source\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Wystąpił (prawdopodobnie tymczasowy) problem z połączeniem ze źródłem " "oprogramowania\n" "Proszę sprawdzić szczegóły błędu, aby uzyskać więcej szczegółów." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1943,7 +1972,7 @@ "Taka sytuacja może wystąpić, jeśli używane są równocześnie różne narzędzia " "pakowania." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1951,7 +1980,7 @@ "Zamykanie instancji silnika nie powiodło się..\n" "Ten błąd może być zwyczajnie zignorowany." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1959,15 +1988,15 @@ "Nie można założyć blokady na silnik pakowania.\n" "Proszę zamknąć wszystkie inne narzędzia do pakowania, które mogą być otwarte." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Nie można zaktualizować żadnego z wybranych pakietów." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Nie można zmienić konfiguracji repozytorium." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1975,11 +2004,11 @@ "Instalacja pliku lokalnego nie powiodła się.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Nie można zweryfikować podpisu pakietu." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1987,11 +2016,11 @@ "Brak podpisu pakietu, pakietowi nie można ufać.\n" "Ten pakiet nie został podpisany po utworzeniu za pomocą klucza GPG." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Konfiguracja repozytorium jest niepoprawna lub nie można jej odczytać." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1999,7 +2028,7 @@ "Pakiet, który próbujesz zainstalować, jest niepoprawny.\n" "Plik pakietu mógł zostać uszkodzony lub nie jest to poprawny pakiet." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -2007,18 +2036,18 @@ "Instalacja tego pakietu została przerwana przez konfigurację Twojego systemu " "pakowania." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Pobrany pakiet jest uszkodzony i trzeba go pobrać ponownie." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Wszystkie wybrane do instalacji pakiety są już zainstalowane w systemie." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -2026,21 +2055,21 @@ "Nie można znaleźć podanego pliku w systemie.\n" "Sprawdź, czy plik jeszcze istnieje i czy nie został usunięty." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Nie można znaleźć wymaganych danych w żadnym ze skonfigurowanych źródeł " "oprogramowania.\n" "Nie ma już więcej serwerów lustrzanych, które można by wypróbować." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " @@ -2048,80 +2077,80 @@ #| "There were no more download mirrors that could be tried." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Nie można znaleźć wymaganych danych w żadnym ze skonfigurowanych źródeł " "oprogramowania.\n" "Nie ma już więcej serwerów lustrzanych, które można by wypróbować." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 #, fuzzy #| msgid "The package that is trying to be installed is already installed." msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Pakiet, który próbujesz zainstalować, jest już zainstalowany." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "" "Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " "źródle oprogramowania." -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "" "Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " "źródle oprogramowania." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The specified file could not be found" msgid "The file list is not available for this package." msgstr "Nie można znaleźć określonego pliku" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Nie można znaleźć określonego pliku" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -2133,7 +2162,7 @@ "Nie znaleziono zależności pakietu.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2145,7 +2174,7 @@ "Instalacja pliku lokalnego nie powiodła się.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2157,7 +2186,7 @@ "Instalacja pliku lokalnego nie powiodła się.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2169,7 +2198,7 @@ "Instalacja pliku lokalnego nie powiodła się.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -2181,7 +2210,7 @@ "Instalacja pliku lokalnego nie powiodła się.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -2189,320 +2218,320 @@ "Nieznany błąd, proszę zgłosić błąd.\n" "Więcej informacji znajduje się w szczegółowym raporcie." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 #, fuzzy #| msgid "Accessibility" msgctxt "The group type" msgid "Accessibility" msgstr "Dostępność" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 #, fuzzy #| msgid "Accessories" msgctxt "The group type" msgid "Accessories" msgstr "Akcesoria" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 #, fuzzy #| msgid "Education" msgctxt "The group type" msgid "Education" msgstr "Edukacja" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 #, fuzzy #| msgid "Games" msgctxt "The group type" msgid "Games" msgstr "Gry" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 #, fuzzy #| msgid "Graphics" msgctxt "The group type" msgid "Graphics" msgstr "Grafika" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 #, fuzzy #| msgid "Internet" msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 #, fuzzy #| msgid "Office" msgctxt "The group type" msgid "Office" msgstr "Biuro" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 #, fuzzy #| msgid "Other" msgctxt "The group type" msgid "Other" msgstr "Inne" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 #, fuzzy #| msgid "Development" msgctxt "The group type" msgid "Development" msgstr "Programistyczne" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 #, fuzzy #| msgid "Multimedia" msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 #, fuzzy #| msgid "System" msgctxt "The group type" msgid "System" msgstr "System" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 #, fuzzy #| msgid "GNOME desktop" msgctxt "The group type" msgid "GNOME desktop" msgstr "Środowisko GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 #, fuzzy #| msgid "KDE desktop" msgctxt "The group type" msgid "KDE desktop" msgstr "Środowisko KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 #, fuzzy #| msgid "XFCE desktop" msgctxt "The group type" msgid "XFCE desktop" msgstr "Środowisko XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 #, fuzzy #| msgid "Other desktops" msgctxt "The group type" msgid "Other desktops" msgstr "Inne środowiska" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 #, fuzzy #| msgid "Publishing" msgctxt "The group type" msgid "Publishing" msgstr "Publikowanie" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 #, fuzzy #| msgid "Servers" msgctxt "The group type" msgid "Servers" msgstr "Serwery" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 #, fuzzy #| msgid "Fonts" msgctxt "The group type" msgid "Fonts" msgstr "Czcionki" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 #, fuzzy #| msgid "Admin tools" msgctxt "The group type" msgid "Admin tools" msgstr "Narzędzia administracyjne" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 #, fuzzy #| msgid "Legacy" msgctxt "The group type" msgid "Legacy" msgstr "Starsze wersje" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 #, fuzzy #| msgid "Localization" msgctxt "The group type" msgid "Localization" msgstr "Lokalizacja" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 #, fuzzy #| msgid "Virtualization" msgctxt "The group type" msgid "Virtualization" msgstr "Wirtualizacja" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 #, fuzzy #| msgid "Security" msgctxt "The group type" msgid "Security" msgstr "Bezpieczeństwo" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 #, fuzzy #| msgid "Power management" msgctxt "The group type" msgid "Power management" msgstr "Zarządzanie energią" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 #, fuzzy #| msgid "Communication" msgctxt "The group type" msgid "Communication" msgstr "Komunikacja" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 #, fuzzy #| msgid "Network" msgctxt "The group type" msgid "Network" msgstr "Sieć" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 #, fuzzy #| msgid "Maps" msgctxt "The group type" msgid "Maps" msgstr "Mapy" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 #, fuzzy #| msgid "Software sources" msgctxt "The group type" msgid "Software sources" msgstr "Źródła oprogramowania" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 #, fuzzy #| msgid "Science" msgctxt "The group type" msgid "Science" msgstr "Nauka" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 #, fuzzy #| msgid "Documentation" msgctxt "The group type" msgid "Documentation" msgstr "Dokumentacja" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 #, fuzzy #| msgid "Electronics" msgctxt "The group type" msgid "Electronics" msgstr "Elektronika" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 #, fuzzy #| msgid "Package collections" msgctxt "The group type" msgid "Package collections" msgstr "Kolekcje pakietów" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 #, fuzzy #| msgid "Only newest packages" msgctxt "The group type" msgid "Newest packages" msgstr "Tylko najnowsze pakiety" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 #, fuzzy #| msgid "Unknown group" msgctxt "The group type" msgid "Unknown group" msgstr "Nieznana grupa" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 #, fuzzy #| msgid "Trivial update" msgctxt "The type of update" msgid "Trivial update" msgstr "Drobna aktualizacja" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 #, fuzzy #| msgid "Trivial update" msgctxt "The type of update" msgid "Normal update" msgstr "Drobna aktualizacja" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 #, fuzzy #| msgid "Important update" msgctxt "The type of update" msgid "Important update" msgstr "Ważna aktualizacja" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 #, fuzzy #| msgid "Security update" msgctxt "The type of update" msgid "Security update" msgstr "Aktualizacja bezpieczeństwa" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 #, fuzzy #| msgid "Bug fix update" msgctxt "The type of update" msgid "Bug fix update" msgstr "Aktualizacja naprawiająca błędy" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 #, fuzzy #| msgid "Enhancement update" msgctxt "The type of update" msgid "Enhancement update" msgstr "Aktualizacja ulepszająca" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 #, fuzzy #| msgid "Blocked update" msgctxt "The type of update" msgid "Blocked update" msgstr "Zablokowana aktualizacja" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 #, fuzzy #| msgid "Installed" msgctxt "The type of update" msgid "Installed" msgstr "Zainstalowane" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 #, fuzzy #| msgid "Available" msgctxt "The type of update" msgid "Available" msgstr "Dostępny" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 #, fuzzy #| msgid "Unknown update" msgctxt "The type of update" msgid "Unknown update" msgstr "Nieznana aktualizacja" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" @@ -2510,7 +2539,7 @@ msgstr[1] "%1 drobne aktualizacje" msgstr[2] "%1 drobnych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2521,7 +2550,7 @@ msgstr[1] "%1 aktualizacje" msgstr[2] "%1 aktualizacji" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" @@ -2529,7 +2558,7 @@ msgstr[1] "%1 ważne aktualizacje" msgstr[2] "%1 ważnych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" @@ -2537,7 +2566,7 @@ msgstr[1] "%1 aktualizacje bezpieczeństwa" msgstr[2] "%1 aktualizacji bezpieczeństwa" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" @@ -2545,7 +2574,7 @@ msgstr[1] "%1 aktualizacje naprawiające błędy" msgstr[2] "%1 aktualizacji naprawiających błędy" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" @@ -2553,7 +2582,7 @@ msgstr[1] "%1 aktualizacje ulepszające" msgstr[2] "%1 aktualizacji ulepszających" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" @@ -2561,7 +2590,7 @@ msgstr[1] "%1 zablokowane aktualizacje" msgstr[2] "%1 zablokowanych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" @@ -2569,7 +2598,7 @@ msgstr[1] "%1 zainstalowane pakiety" msgstr[2] "%1 zainstalowanych pakietów" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" @@ -2577,7 +2606,7 @@ msgstr[1] "%1 dostępne pakiety" msgstr[2] "%1 dostępnych pakietów" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" @@ -2585,7 +2614,7 @@ msgstr[1] "%1 nieznane aktualizacje" msgstr[2] "%1 nieznanych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2595,7 +2624,7 @@ msgstr[1] "%1 drobne aktualizacje" msgstr[2] "%1 drobnych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2606,7 +2635,7 @@ msgstr[1] "%1 aktualizacje" msgstr[2] "%1 aktualizacji" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2616,7 +2645,7 @@ msgstr[1] "%1 ważne aktualizacje" msgstr[2] "%1 ważnych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2626,7 +2655,7 @@ msgstr[1] "%1 aktualizacje bezpieczeństwa" msgstr[2] "%1 aktualizacji bezpieczeństwa" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2636,7 +2665,7 @@ msgstr[1] "%1 aktualizacje naprawiające błędy" msgstr[2] "%1 aktualizacji naprawiających błędy" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2646,7 +2675,7 @@ msgstr[1] "%1 aktualizacje ulepszające" msgstr[2] "%1 aktualizacji ulepszających" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2656,7 +2685,7 @@ msgstr[1] "%1 zainstalowane pakiety" msgstr[2] "%1 zainstalowanych pakietów" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, fuzzy, kde-format #| msgid "All packages are already installed" msgid "1 available package selected to be installed" @@ -2665,7 +2694,7 @@ msgstr[1] "Wszystkie pakiety są już zainstalowane" msgstr[2] "Wszystkie pakiety są już zainstalowane" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, fuzzy, kde-format #| msgid "1 trivial update" #| msgid_plural "%1 trivial updates" @@ -2675,7 +2704,7 @@ msgstr[1] "%1 drobne aktualizacje" msgstr[2] "%1 drobnych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, fuzzy, kde-format #| msgid "1 update" #| msgid_plural "%1 updates" @@ -2686,7 +2715,7 @@ msgstr[1] "%1 aktualizacje" msgstr[2] "%1 aktualizacji" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, fuzzy, kde-format #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -2696,7 +2725,7 @@ msgstr[1] "%1 ważne aktualizacje" msgstr[2] "%1 ważnych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, fuzzy, kde-format #| msgid "1 security update" #| msgid_plural "%1 security updates" @@ -2706,7 +2735,7 @@ msgstr[1] "%1 aktualizacje bezpieczeństwa" msgstr[2] "%1 aktualizacji bezpieczeństwa" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, fuzzy, kde-format #| msgid "1 bug fix update" #| msgid_plural "%1 bug fix updates" @@ -2716,7 +2745,7 @@ msgstr[1] "%1 aktualizacje naprawiające błędy" msgstr[2] "%1 aktualizacji naprawiających błędy" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, fuzzy, kde-format #| msgid "1 enhancement update" #| msgid_plural "%1 enhancement updates" @@ -2726,7 +2755,7 @@ msgstr[1] "%1 aktualizacje ulepszające" msgstr[2] "%1 aktualizacji ulepszających" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, fuzzy, kde-format #| msgid "1 blocked update" #| msgid_plural "%1 blocked updates" @@ -2736,7 +2765,7 @@ msgstr[1] "%1 zablokowane aktualizacje" msgstr[2] "%1 zablokowanych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, fuzzy, kde-format #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -2746,7 +2775,7 @@ msgstr[1] "%1 zainstalowane pakiety" msgstr[2] "%1 zainstalowanych pakietów" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, fuzzy, kde-format #| msgid "1 available package" #| msgid_plural "%1 available packages" @@ -2756,7 +2785,7 @@ msgstr[1] "%1 dostępne pakiety" msgstr[2] "%1 dostępnych pakietów" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, fuzzy, kde-format #| msgid "1 unknown update" #| msgid_plural "%1 unknown updates" @@ -2766,299 +2795,530 @@ msgstr[1] "%1 nieznane aktualizacje" msgstr[2] "%1 nieznanych aktualizacji" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 #, fuzzy #| msgid "No restart is necessary for this update" msgid "No restart is necessary" msgstr "Dla tej aktualizacji nie jest potrzebne ponowne uruchomienie" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to restart this application" msgstr "Po tej aktualizacji należy się wylogować i zalogować ponownie" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in" msgstr "Po tej aktualizacji należy się wylogować i zalogować ponownie" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 #, fuzzy #| msgid "Software signature is required" msgid "A restart will be required" msgstr "Wymagany jest podpis oprogramowania" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." msgstr "Po tej aktualizacji należy się wylogować i zalogować ponownie" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "Software signature is required" msgid "A restart will be required due to a security update." msgstr "Wymagany jest podpis oprogramowania" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 #, fuzzy #| msgid "Software signature is required" msgid "No restart is required" msgstr "Wymagany jest podpis oprogramowania" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 #, fuzzy #| msgid "Software signature is required" msgid "A restart is required" msgstr "Wymagany jest podpis oprogramowania" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You need to log out and log back in" msgstr "Po tej aktualizacji należy się wylogować i zalogować ponownie" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You need to log out and log back in to remain secure." msgstr "Po tej aktualizacji należy się wylogować i zalogować ponownie" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "Software signature is required" msgid "A restart is required to remain secure." msgstr "Wymagany jest podpis oprogramowania" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabilny" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Niestabilny" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testowy" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 #, fuzzy #| msgid "Search filter was invalid" msgid "The parameter was invalid" msgstr "Niepoprawny filtr wyszukiwania" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 #, fuzzy #| msgid "The group list was invalid" msgid "The priority was invalid" msgstr "Niepoprawna lista grup" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 #, fuzzy #| msgid "No package cache is available" msgid "The package list cache is being rebuilt" msgstr "Brak dostępnego bufora pakietu" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 #, fuzzy #| msgid "The package is not installed" msgid "An untrusted package was installed" msgstr "Pakiet nie jest zainstalowany" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 #, fuzzy #| msgid "Generating package lists" msgid "A newer package exists" msgstr "Generowanie listy pakietów" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Could not find package" msgstr "1 zainstalowany pakiet" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 #, fuzzy #| msgid "The package is already installed" msgid "Package is already installed" msgstr "Pakiet jest już zainstalowany" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Pobieranie pakietu nie powiodło się" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Nie można usunąć zabezpieczonego pakietu systemowego" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Nie można zweryfikować podpisu pakietu." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The group list was invalid" msgid "The query is not valid." msgstr "Niepoprawna lista grup" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The package is not installed" msgid "The file is not valid." msgstr "Pakiet nie jest zainstalowany" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "Could not talk to packagekitd." msgstr "1 zainstalowany pakiet" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Nieznany błąd" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "" - -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, fuzzy, kde-format -#| msgid "
                                                And another update" -#| msgid_plural "
                                                And %1 more updates" -msgid "
                                                And another update" -msgid_plural "
                                                And %1 more updates" -msgstr[0] "
                                                I kolejna aktualizacja" -msgstr[1] "
                                                I kolejne %1 aktualizacje" -msgstr[2] "
                                                I kolejne %1 aktualizacji" - -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "Sprawdź i aktualizuj" - -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "" +msgid "" +"The following file is required:
                                                • %2
                                                Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                • %2
                                                Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 #, fuzzy -#| msgid "Don't ask anymore." -msgid "Do not ask again" -msgstr "Nie pytaj więcej." - -#: SmartIcon/KpkUpdateIcon.cpp:235 -msgid "Updates are being automatically installed." -msgstr "Aktualizacje są automatycznie instalowane." +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" -#: SmartIcon/KpkUpdateIcon.cpp:262 -msgid "Security updates are being automatically installed." -msgstr "Aktualizacje bezpieczeństwa są automatycznie instalowane." +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 #, fuzzy -#| msgid "System update was successful!" -msgid "System update was successful." -msgstr "Aktualizacja systemu powiodła się!" +#| msgid "Install" +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instaluj" -#: SmartIcon/KpkUpdateIcon.cpp:298 -msgid "The software update failed." -msgstr "Aktualizacja oprogramowania nie powiodła się." +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to start search file transaction" +msgstr "Inicjalizacja nie powiodła się" -#: SmartIcon/KpkDistroUpgrade.cpp:68 -msgid "Start upgrade now" +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" msgstr "" -#: SmartIcon/KpkDistroUpgrade.cpp:111 -#, fuzzy -#| msgid "Getting distribution upgrade information" -msgid "Distribution upgrade finished. " -msgstr "Pobieranie informacji o aktualizacji dystrybucji" +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The %1 package already provides this file" +msgstr "Pakiet jest już zainstalowany" -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Inicjalizacja nie powiodła się" +msgstr[1] "Inicjalizacja nie powiodła się" +msgstr[2] "Inicjalizacja nie powiodła się" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +#, fuzzy +#| msgid "The following packages will also be installed as dependencies" +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Następujące pakiety zostaną również usunięte jako zależności" +msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" +msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Nie można znaleźć określonego pliku" +msgstr[1] "Nie można znaleźć określonego pliku" +msgstr[2] "Nie można znaleźć określonego pliku" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Failed to find package" +msgstr "1 zainstalowany pakiet" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, fuzzy, kde-format +#| msgid "
                                                And another update" +#| msgid_plural "
                                                And %1 more updates" +msgid "
                                                And another update" +msgid_plural "
                                                And %1 more updates" +msgstr[0] "
                                                I kolejna aktualizacja" +msgstr[1] "
                                                I kolejne %1 aktualizacje" +msgstr[2] "
                                                I kolejne %1 aktualizacji" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Sprawdź i aktualizuj" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +#, fuzzy +#| msgid "Don't ask anymore." +msgid "Do not ask again" +msgstr "Nie pytaj więcej." + +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." +msgstr "Aktualizacje są automatycznie instalowane." + +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "Aktualizacje bezpieczeństwa są automatycznie instalowane." + +#: SmartIcon/KpkUpdateIcon.cpp:319 +#, fuzzy +#| msgid "System update was successful!" +msgid "System update was successful." +msgstr "Aktualizacja systemu powiodła się!" + +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." +msgstr "Aktualizacja oprogramowania nie powiodła się." + +#: SmartIcon/KpkInstallProvideFile.cpp:47 +#, fuzzy +#| msgid "The following packages will also be removed for dependencies" +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Następujące pakiety zostaną również usunięte jako zależności" +msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" +msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +#, fuzzy +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Czy chcesz zainstalować ten plik?" +msgstr[1] "Czy chcesz zainstalować te pliki?" +msgstr[2] "Czy chcesz zainstalować te pliki?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" +msgstr "" + +#: SmartIcon/KpkDistroUpgrade.cpp:113 +#, fuzzy +#| msgid "Getting distribution upgrade information" +msgid "Distribution upgrade finished. " +msgstr "Pobieranie informacji o aktualizacji dystrybucji" + +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +#, fuzzy +#| msgid "Transactions" +msgid "Failed to start resolve transaction" +msgstr "Transakcje" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgid "Transactions" +msgid "User canceled the transaction" +msgstr "Transakcje" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Nieznany błąd" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional package is required:
                                                • %2
                                                Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                • %2
                                                Do you want to search " +"for and install these packages now?" +msgstr[0] "Czy chcesz zainstalować ten plik?" +msgstr[1] "Czy chcesz zainstalować te pliki?" +msgstr[2] "Czy chcesz zainstalować te pliki?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +#, fuzzy +#| msgid "Install" +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instaluj" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Pakiet jest już zainstalowany" +msgstr[1] "Pakiet jest już zainstalowany" +msgstr[2] "Pakiet jest już zainstalowany" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Failed to install packages" +msgstr "1 zainstalowany pakiet" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." +msgstr[1] "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." +msgstr[2] "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "Could not find %1" +msgstr "1 zainstalowany pakiet" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -3082,234 +3342,308 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt i inne rzeczy" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Transakcje" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 #, fuzzy -#| msgid "Refresh Packages List" -msgid "Refresh package list" -msgstr "Odśwież listę pakietów" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "Czy chcesz zainstalować ten plik?" +msgstr[1] "Czy chcesz zainstalować te pliki?" +msgstr[2] "Czy chcesz zainstalować te pliki?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/PkInstallFontconfigResources.cpp:72 #, fuzzy -#| msgid "Updates" -msgid "Show messages" -msgstr "Aktualizacje" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 -msgid "Hide this icon" -msgstr "" +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/PkInstallFontconfigResources.cpp:76 #, fuzzy, kde-format -#| msgid "Package Name" -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Nazwa pakietu" -msgstr[1] "Nazwa pakietu" -msgstr[2] "Nazwa pakietu" +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 -#, kde-format -msgid "One message from the package manager" -msgid_plural "%1 messages from the package manager" +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgid "Search failed" +msgctxt "Search for packages" +msgid "Search" +msgstr "Szukanie nie powiodło się" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to search for provides" +msgstr "Inicjalizacja nie powiodła się" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 -#, fuzzy -#| msgid "The software update failed." -msgid "The system update has completed" -msgstr "Aktualizacja oprogramowania nie powiodła się." +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 #, fuzzy -#| msgid "Restart" -msgctxt "Restart the computer" -msgid "Restart" -msgstr "Uruchom ponownie" +#| msgid "Failed to finalize" +msgid "Failed to find font" +msgstr "Finalizacja nie powiodła się" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 -msgid "Logout" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend or it is not a file" +#| msgid_plural "" +#| "These items are not supported by your backend or they are not files" +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Ten element nie jest obsługiwany przez Twój silnik lub nie jest plikiem" +msgstr[1] "" +"Te elementy nie są obsługiwane przez Twój silnik lub nie są plikami." +msgstr[2] "" +"Te elementy nie są obsługiwane przez Twój silnik lub nie są plikami." -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 -#, kde-format -msgid "%1% - %2" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Nie można zainstalować" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 -#, kde-format -msgid "%1" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instaluj" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 -msgid "Package Manager Messages" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Czy chcesz zainstalować ten plik?" +msgstr[1] "Czy chcesz zainstalować te pliki?" +msgstr[2] "Czy chcesz zainstalować te pliki?" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 -msgid "Message" -msgstr "" +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Zainstalować?" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +#: SmartIcon/PkInstallPackageFiles.cpp:149 #, fuzzy -#| msgid "KPackageKit Settings" -msgid "KPackageKit settings" -msgstr "Ustawienia KPackageKit" +#| msgid "The package is not installed" +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Pakiet nie jest zainstalowany" +msgstr[1] "Pakiet nie jest zainstalowany" +msgstr[2] "Pakiet nie jest zainstalowany" -#: Settings/KpkSettings.cpp:60 +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 #, fuzzy -#| msgid "Hourly" -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Co godzinę" +#| msgid "Failed to initialize" +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Inicjalizacja nie powiodła się" +msgstr[1] "Inicjalizacja nie powiodła się" +msgstr[2] "Inicjalizacja nie powiodła się" -#: Settings/KpkSettings.cpp:61 +#: SmartIcon/PkInstallPackageFiles.cpp:235 #, fuzzy -#| msgid "Daily" -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Codziennie" +#| msgid "Sorry an error occurred" +msgid "An error occurred." +msgstr "Przepraszamy, wystąpił błąd" -#: Settings/KpkSettings.cpp:62 -#, fuzzy -#| msgid "Weekly" -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Co tydzień" +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                • %2
                                                Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                • %2
                                                Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:63 -#, fuzzy -#| msgid "Monthly" -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Co miesiąc" +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:64 -#, fuzzy -#| msgid "Never" -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nigdy" +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Tylko bezpieczeństwo" +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Wszystkie aktualizacje" +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: Settings/KpkSettings.cpp:68 +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 #, fuzzy -#| msgid "None" -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Żadne" +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Czy chcesz zainstalować ten plik?" +msgstr[1] "Czy chcesz zainstalować te pliki?" +msgstr[2] "Czy chcesz zainstalować te pliki?" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "Could not find plugin in any configured software source" msgstr "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." -#: Settings/KpkSettings.cpp:164 +#: SmartIcon/PkInstallGStreamerResources.cpp:167 #, fuzzy #| msgid "Failed to initialize" -msgid "Failed to set origin data" +msgid "Failed to search for plugin" msgstr "Inicjalizacja nie powiodła się" -#: KPackageKit/KpkInstallProvideFile.cpp:47 +#: SmartIcon/PkSearchFile.cpp:91 #, fuzzy -#| msgid "The following packages will also be removed for dependencies" -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Następujące pakiety zostaną również usunięte jako zależności" -msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" -msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" +#| msgid "" +#| "The package that is being modified was not found on your system or in any " +#| "software source." +msgid "The file name could not be found in any software source" +msgstr "" +"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " +"źródle oprogramowania." -#: KPackageKit/KpkInstallProvideFile.cpp:50 -#, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Czy chcesz zainstalować ten plik?" -msgstr[1] "Czy chcesz zainstalować te pliki?" -msgstr[2] "Czy chcesz zainstalować te pliki?" +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Transakcje" -#: KPackageKit/KpkInstallProvideFile.cpp:57 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "1 zainstalowany pakiet" -msgstr[1] "1 zainstalowany pakiet" -msgstr[2] "1 zainstalowany pakiet" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "1 zainstalowany pakiet" -msgstr[1] "1 zainstalowany pakiet" -msgstr[2] "1 zainstalowany pakiet" +#| msgid "Refresh Packages List" +msgid "Refresh package list" +msgstr "Odśwież listę pakietów" -#: KPackageKit/KpkInstallProvideFile.cpp:68 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instaluj" +#| msgid "Updates" +msgid "Show messages" +msgstr "Aktualizacje" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to start search file transaction" -msgstr "Inicjalizacja nie powiodła się" +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:101 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, fuzzy, kde-format -#| msgid "The package is already installed" -msgid "The %1 package already provides this file" -msgstr "Pakiet jest już zainstalowany" +#| msgid "Package Name" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Nazwa pakietu" +msgstr[1] "Nazwa pakietu" +msgstr[2] "Nazwa pakietu" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -#, fuzzy -#| msgid "The following packages will also be installed as dependencies" -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Następujące pakiety zostaną również usunięte jako zależności" -msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" -msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: KPackageKit/KpkInstallProvideFile.cpp:116 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 #, fuzzy -#| msgid "The specified file could not be found" -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Nie można znaleźć określonego pliku" -msgstr[1] "Nie można znaleźć określonego pliku" -msgstr[2] "Nie można znaleźć określonego pliku" +#| msgid "The software update failed." +msgid "The system update has completed" +msgstr "Aktualizacja oprogramowania nie powiodła się." -#: KPackageKit/KpkInstallProvideFile.cpp:118 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "Failed to find package" -msgstr "1 zainstalowany pakiet" +#| msgid "Restart" +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Uruchom ponownie" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +msgid "Logout" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" @@ -3319,15 +3653,17 @@ msgstr[1] "1 zainstalowany pakiet" msgstr[2] "1 zainstalowany pakiet" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "1 installed package" +#| msgid_plural "%1 installed packages" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "1 zainstalowany pakiet" +msgstr[1] "1 zainstalowany pakiet" +msgstr[2] "1 zainstalowany pakiet" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following file is going to be removed:" @@ -3336,7 +3672,7 @@ msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 #, fuzzy #| msgid "Do you want to install this file?" #| msgid_plural "Do you want to install these files?" @@ -3349,14 +3685,14 @@ msgstr[1] "Czy chcesz zainstalować te pliki?" msgstr[2] "Czy chcesz zainstalować te pliki?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 #, fuzzy #| msgid "Search failed" msgctxt "Search for a package and remove" msgid "Search" msgstr "Szukanie nie powiodło się" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 #, fuzzy #| msgid "The following packages will also be removed for dependencies" msgid "The following package will be removed" @@ -3365,7 +3701,7 @@ msgstr[1] "Następujące pakiety zostaną również usunięte jako zależności" msgstr[2] "Następujące pakiety zostaną również usunięte jako zależności" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 #, fuzzy #| msgid "The specified file could not be found" msgid "The file could not be found in any installed package" @@ -3374,251 +3710,227 @@ msgstr[1] "Nie można znaleźć określonego pliku" msgstr[2] "Nie można znaleźć określonego pliku" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "Could not find %1" -msgstr "1 zainstalowany pakiet" - -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                                                • %1
                                                • Do you want to search for a program to open this file type now?" msgstr "" -#: KPackageKit/main.cpp:46 -#, fuzzy -#| msgid "Updates" -msgid "Show updates" -msgstr "Aktualizacje" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: KPackageKit/main.cpp:47 -#, fuzzy -#| msgid "Settings" -msgid "Show settings" -msgstr "Ustawienia" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: KPackageKit/main.cpp:48 +#: SmartIcon/PkInstallMimeTypes.cpp:68 #, fuzzy -#| msgid "Search package name" -msgid "Show backend details" -msgstr "Znajdź nazwę pakietu" +#| msgid "Search failed" +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Szukanie nie powiodło się" -#: KPackageKit/main.cpp:49 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Mime type installer" -msgstr "Inicjalizacja nie powiodła się" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" -#: KPackageKit/main.cpp:50 +#: SmartIcon/PkInstallMimeTypes.cpp:123 #, fuzzy -#| msgid "Package file to install" -msgid "Package name installer" -msgstr "Plik pakietu do zainstalowania" +#| msgid "Failed to finalize" +msgid "Failed to find software" +msgstr "Finalizacja nie powiodła się" -#: KPackageKit/main.cpp:51 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Single file installer" -msgstr "Inicjalizacja nie powiodła się" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                                  Do you want to install this catalog?

                                                  • %2
                                                  " +msgid_plural "" +"

                                                  Do you want to install these catalogs?

                                                  • %2
                                                  " +msgstr[0] "Czy chcesz zainstalować ten plik?" +msgstr[1] "Czy chcesz zainstalować te pliki?" +msgstr[2] "Czy chcesz zainstalować te pliki?" -#: KPackageKit/main.cpp:52 +#: SmartIcon/PkInstallCatalogs.cpp:58 #, fuzzy -#| msgid "Searching by package name" -msgid "Single package remover" -msgstr "Szukanie w nazwie pakietu" - -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Plik pakietu do zainstalowania" +#| msgid "Install" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instaluj" +msgstr[1] "Instaluj" +msgstr[2] "Instaluj" -#: KPackageKit/KpkInstallFiles.cpp:81 +#: SmartIcon/PkInstallCatalogs.cpp:62 #, fuzzy -#| msgid "This item is not supported by your backend or it is not a file" -#| msgid_plural "" -#| "These items are not supported by your backend or they are not files" -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Ten element nie jest obsługiwany przez Twój silnik lub nie jest plikiem" -msgstr[1] "" -"Te elementy nie są obsługiwane przez Twój silnik lub nie są plikami." -msgstr[2] "" -"Te elementy nie są obsługiwane przez Twój silnik lub nie są plikami." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Nie można zainstalować" - -#: KPackageKit/KpkInstallFiles.cpp:98 +#| msgid "Install" +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "Instaluj" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Czy chcesz zainstalować ten plik?" -msgstr[1] "Czy chcesz zainstalować te pliki?" -msgstr[2] "Czy chcesz zainstalować te pliki?" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Sorry, your backend does not support installing packages" +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Przepraszamy, Twój silnik nie obsługuje instalowania pakietów" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Zainstalować?" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Nie obsługiwane przez ten silnik" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Plik pakietu do zainstalowania" +msgstr[1] "Plik pakietu do zainstalowania" +msgstr[2] "Plik pakietu do zainstalowania" + +#: SmartIcon/PkInstallCatalogs.cpp:148 #, fuzzy -#| msgid "The package is not installed" -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Pakiet nie jest zainstalowany" -msgstr[1] "Pakiet nie jest zainstalowany" -msgstr[2] "Pakiet nie jest zainstalowany" +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Finalizacja nie powiodła się" -#: KPackageKit/KpkInstallFiles.cpp:172 +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 #, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Inicjalizacja nie powiodła się" -msgstr[1] "Inicjalizacja nie powiodła się" -msgstr[2] "Inicjalizacja nie powiodła się" +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Nie można zainstalować pakietów źródłowych" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 +#: SmartIcon/PkInstallCatalogs.cpp:206 #, fuzzy -#| msgid "Failed to initialize" -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Inicjalizacja nie powiodła się" -msgstr[1] "Inicjalizacja nie powiodła się" -msgstr[2] "Inicjalizacja nie powiodła się" +#| msgid "Transactions" +msgid "Failed to start setup transaction" +msgstr "Transakcje" -#: KPackageKit/KpkInstallFiles.cpp:197 +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 #, fuzzy -#| msgid "Sorry an error occurred" -msgid "An error occurred." -msgstr "Przepraszamy, wystąpił błąd" +#| msgid "KPackageKit Settings" +msgid "KPackageKit settings" +msgstr "Ustawienia KPackageKit" -#: KPackageKit/KpkInstallPackageName.cpp:47 +#: Settings/KpkSettings.cpp:61 #, fuzzy -#| msgid "A system restart is required after this update" -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" -msgstr[1] "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" -msgstr[2] "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" +#| msgid "Hourly" +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Co godzinę" -#: KPackageKit/KpkInstallPackageName.cpp:50 +#: Settings/KpkSettings.cpp:62 #, fuzzy -#| msgid "Do you want to install this file?" -#| msgid_plural "Do you want to install these files?" -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Czy chcesz zainstalować ten plik?" -msgstr[1] "Czy chcesz zainstalować te pliki?" -msgstr[2] "Czy chcesz zainstalować te pliki?" +#| msgid "Daily" +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Codziennie" -#: KPackageKit/KpkInstallPackageName.cpp:57 +#: Settings/KpkSettings.cpp:63 #, fuzzy -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "1 zainstalowany pakiet" -msgstr[1] "1 zainstalowany pakiet" -msgstr[2] "1 zainstalowany pakiet" +#| msgid "Weekly" +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Co tydzień" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, fuzzy, kde-format -#| msgid "1 installed package" -#| msgid_plural "%1 installed packages" -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "1 zainstalowany pakiet" -msgstr[1] "1 zainstalowany pakiet" -msgstr[2] "1 zainstalowany pakiet" +#: Settings/KpkSettings.cpp:64 +#, fuzzy +#| msgid "Monthly" +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Co miesiąc" + +#: Settings/KpkSettings.cpp:65 +#, fuzzy +#| msgid "Never" +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nigdy" -#: KPackageKit/KpkInstallPackageName.cpp:68 +#: Settings/KpkSettings.cpp:67 #, fuzzy -#| msgid "Install" -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instaluj" +#| msgid "Security Only" +msgid "Security only" +msgstr "Tylko bezpieczeństwo" -#: KPackageKit/KpkInstallPackageName.cpp:81 +#: Settings/KpkSettings.cpp:68 #, fuzzy -#| msgid "Transactions" -msgid "Failed to start resolve transaction" -msgstr "Transakcje" +#| msgid "All Updates" +msgid "All updates" +msgstr "Wszystkie aktualizacje" -#: KPackageKit/KpkInstallPackageName.cpp:112 +#: Settings/KpkSettings.cpp:69 #, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "" -"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " -"źródle oprogramowania." -msgstr[1] "" -"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " -"źródle oprogramowania." -msgstr[2] "" -"Modyfikowany pakiet nie został znaleziony w Twoim systemie ani w żadnym " -"źródle oprogramowania." +#| msgid "None" +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Żadne" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                  %1
                                                  Do " -"you want to search for a program to open this file type now?" +#: Settings/KpkSettings.cpp:167 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to set origin data" +msgstr "Inicjalizacja nie powiodła się" + +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" msgstr "" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: KPackageKit/main.cpp:46 +#, fuzzy +#| msgid "Updates" +msgid "Show updates" +msgstr "Aktualizacje" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: KPackageKit/main.cpp:47 +#, fuzzy +#| msgid "Settings" +msgid "Show settings" +msgstr "Ustawienia" -#: KPackageKit/KpkInstallMimeType.cpp:64 +#: KPackageKit/main.cpp:48 #, fuzzy -#| msgid "Search failed" -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Szukanie nie powiodło się" +#| msgid "Search package name" +msgid "Show backend details" +msgstr "Znajdź nazwę pakietu" -#: KPackageKit/KpkInstallMimeType.cpp:78 +#: KPackageKit/main.cpp:49 #, fuzzy #| msgid "Failed to initialize" -msgid "Failed to search for provides" +msgid "Mime type installer" msgstr "Inicjalizacja nie powiodła się" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: KPackageKit/main.cpp:50 +#, fuzzy +#| msgid "Package file to install" +msgid "Package name installer" +msgstr "Plik pakietu do zainstalowania" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" +#: KPackageKit/main.cpp:51 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Single file installer" +msgstr "Inicjalizacja nie powiodła się" -#: KPackageKit/KpkInstallMimeType.cpp:108 +#: KPackageKit/main.cpp:52 #, fuzzy -#| msgid "Failed to finalize" -msgid "Failed to find software" -msgstr "Finalizacja nie powiodła się" +#| msgid "Searching by package name" +msgid "Single package remover" +msgstr "Szukanie w nazwie pakietu" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Plik pakietu do zainstalowania" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" @@ -3632,7 +3944,7 @@ msgid "Your emails" msgstr "Pobieranie szczegółów" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 #, fuzzy @@ -3640,13 +3952,13 @@ msgid "Select all updates" msgstr "Aktualizacja bezpieczeństwa" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Odśwież" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3686,13 +3998,13 @@ msgid "Required by" msgstr "Wymagany przez" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Dodaj i usuń oprogramowanie" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 #, fuzzy @@ -3700,169 +4012,171 @@ msgid "Search packages" msgstr "Znajdź nazwę pakietu" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtry" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Wszystkie pakiety" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transakcja" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Transakcje" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Education" +msgid "icon" +msgstr "Edukacja" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Pobieranie pakietów" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Biblioteka do wykonania foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Education" msgid "Actions" msgstr "Edukacja" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nazwa repozytorium:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Adres URL podpisu:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identyfikator podpisu użytkownika:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identyfikator podpisu:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Czy rozpoznajesz tego użytkownika i ufasz temu kluczowi?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Czy ufasz temu źródłu pakietów?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Proszę przeczytać poniższą ważną informację, zanim kontynuujesz:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Ustawienia" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Ustawienia KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Sprawdzaj aktualizacje:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "Aktualizacja" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automatycznie instaluj:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Sprawdzaj aktualizacje:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Inteligentna ikona w tacce" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Automatycznie instaluj:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Powiadamiaj, gdy aktualizacje są dostępne" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Powiadamiaj, gdy zostało ukończone długie zadanie" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Źródło pakietów" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Pokazuj źródła debugowania i pakietów programistycznych" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 #, fuzzy #| msgid "Package Name" msgid "Backend name:" @@ -3870,7 +4184,7 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 #, fuzzy #| msgid "Package Name" msgid "backend name here" @@ -3878,13 +4192,21 @@ #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 #, fuzzy #| msgid "Package Name" msgid "Backend author:" msgstr "Nazwa pakietu" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find Description" +msgid "Backend description:" +msgstr "Znajdź opis" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 #, fuzzy @@ -3892,256 +4214,323 @@ msgid "backend author name here" msgstr "Nazwa pakietu" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Package Name" +msgid "backend description here" +msgstr "Nazwa pakietu" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Zablokowano instalację pakietu" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Tylko wolne oprogramowanie" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 #, fuzzy #| msgid "Updates" msgid "GetUpdates" msgstr "Aktualizacje" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 #, fuzzy #| msgid "Updating packages" msgid "UpdatePackage" msgstr "Aktualizacja pakietów" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 #, fuzzy #| msgid "Repository name:" msgid "GetRepositoryList" msgstr "Nazwa repozytorium:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 #, fuzzy #| msgid "Refresh" msgid "RefreshCache" msgstr "Odśwież" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "InstallPackage" msgstr "1 zainstalowany pakiet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 #, fuzzy #| msgid "Repository name:" msgid "RepositoryEnable" msgstr "Nazwa repozytorium:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 #, fuzzy #| msgid "Updating system" msgid "UpdateSystem" msgstr "Aktualizacja systemu" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 #, fuzzy #| msgid "Failed to create a thread" msgid "RemovePackage" msgstr "Tworzenie wątku nie powiodło się" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Nazwa repozytorium:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgid "Search failed" msgid "SearchName" msgstr "Szukanie nie powiodło się" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Zależy od" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 #, fuzzy #| msgid "Getting updates" msgid "WhatProvides" msgstr "Pobieranie aktualizacji" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 #, fuzzy #| msgid "Searching details" msgid "SearchDetails" msgstr "Szukanie szczegółów" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgid "Getting prerequesites" msgid "GetRequires" msgstr "Pobieranie wymagań" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Wszystkie pakiety" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgid "Searching groups" msgid "SearchGroup" msgstr "Szukanie grup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgid "Getting update detail" msgid "GetUpdateDetail" msgstr "Pobieranie szczegółu aktualizacji" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgid "Search killed" msgid "SearchFile" msgstr "Zabito szukanie" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Opis" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Szczegóły" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgid "Resolving" msgid "Resolve" msgstr "Rozwiązywanie" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Zainstalowane" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Zainstalowane" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "1 installed package" #| msgid_plural "%1 installed packages" msgid "SimulateInstallPackages" msgstr "1 zainstalowany pakiet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "Failed to create a thread" msgid "SimulateRemovePackages" msgstr "Tworzenie wątku nie powiodło się" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "Updating packages" msgid "SimulateUpdatePackages" msgstr "Aktualizacja pakietów" +#, fuzzy +#~| msgid "Transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Transakcje" + +#, fuzzy +#~| msgid "This item is not supported by your backend or it is not a file" +#~| msgid_plural "" +#~| "These items are not supported by your backend or they are not files" +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Ten element nie jest obsługiwany przez Twój silnik lub nie jest plikiem" +#~ msgstr[1] "" +#~ "Te elementy nie są obsługiwane przez Twój silnik lub nie są plikami." +#~ msgstr[2] "" +#~ "Te elementy nie są obsługiwane przez Twój silnik lub nie są plikami." + +#, fuzzy +#~| msgid "A system restart is required after this update" +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" +#~ msgstr[1] "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" +#~ msgstr[2] "Dla tej aktualizacji wymagane jest ponowne uruchomienie systemu" + +#, fuzzy +#~| msgid "Do you want to install this file?" +#~| msgid_plural "Do you want to install these files?" +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Czy chcesz zainstalować ten plik?" +#~ msgstr[1] "Czy chcesz zainstalować te pliki?" +#~ msgstr[2] "Czy chcesz zainstalować te pliki?" + +#, fuzzy +#~| msgid "All Packages" +#~ msgid "All packages" +#~ msgstr "Wszystkie pakiety" + +#~ msgid "Package Name" +#~ msgstr "Nazwa pakietu" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Ustawienia KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Inteligentna ikona w tacce" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Powiadamiaj, gdy zostało ukończone długie zadanie" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Transakcja" + +#~ msgid "A library to do foo" +#~ msgstr "Biblioteka do wykonania foo" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Następujące pakiety zostaną również usunięte jako zależności" @@ -4155,11 +4544,6 @@ #~ msgstr "Następujące pakiety również muszą być usunięte/zainstalowane:" #, fuzzy -#~| msgid "Getting package lists" -#~ msgid "Failed to update package lists" -#~ msgstr "Pobieranie listy pakietów" - -#, fuzzy #~| msgid "Refresh Packages List" #~ msgid "Failed to refresh package lists" #~ msgstr "Odśwież listę pakietów" @@ -4230,9 +4614,6 @@ #~ msgid "Downloading" #~ msgstr "Pobieranie" -#~ msgid "Updating" -#~ msgstr "Aktualizacja" - #~ msgid "Cleaning Up" #~ msgstr "Czyszczenie" @@ -4313,9 +4694,6 @@ #~ msgid "Find Name" #~ msgstr "Znajdź nazwę" -#~ msgid "Find Description" -#~ msgstr "Znajdź opis" - #~ msgid "Find File" #~ msgstr "Znajdź plik" diff -Nru kpackagekit-0.5.4/po/pt/kpackagekit.po kpackagekit-0.6.0/po/pt/kpackagekit.po --- kpackagekit-0.5.4/po/pt/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/pt/kpackagekit.po 2010-01-30 09:03:32.000000000 +0000 @@ -2,8 +2,8 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-06 11:47+0100\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-08 13:16+0000\n" "Last-Translator: José Nuno Coelho Pires \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" @@ -27,11 +27,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detalhes" @@ -94,20 +94,20 @@ "Recomenda-se que mantenha o seu computador ligado à corrente, enquanto a " "actualização é efectuada." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "A actualização da distribuição terminou." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "O processo de actualização da distribuição saiu com o código %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "O processo de actualização da distribuição não pôde ser iniciado." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -115,7 +115,7 @@ "O processo de actualização da distribuição estoirou, ao fim de algum tempo, " "após ter iniciado com sucesso." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" "O processo de actualização da distribuição terminou com um erro desconhecido." @@ -196,28 +196,24 @@ msgid "Time since last cache refresh: %1" msgstr "Tempo desde a última actualização da 'cache': %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nome do Pacote" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Página Pessoal" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licença" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grupo" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Página Pessoal" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Tamanho" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Não foram encontrados ficheiros." @@ -229,235 +225,244 @@ msgid "KDE interface for managing software" msgstr "Interface do KDE para gerir o 'software'" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Procurar" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Todos os pacotes" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Pesquisa de texto" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Lista das alterações" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Grupo:" msgstr[1] "Grupos:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cancelar" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Procurar pelo &nome" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Procurar pelo &nome do ficheiro" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Procurar pela &descrição" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Rever as Alterações" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Colecções" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Apenas as colecções" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Excluir as colecções" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Instalado" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Apenas os instalados" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Apenas os disponíveis" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Sem filtro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Desenvolvimento" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Apenas de desenvolvimento" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Apenas os ficheiros do utilizador" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Gráfico" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Apenas gráfico" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Apenas texto" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Livre" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Apenas 'software' livre" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Apenas 'software' não-livre" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arquitecturas" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Apenas as arquitecturas nativas" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Apenas as arquitecturas não-nativas" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Código" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Apenas código-fonte" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Apenas não-código-fonte" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Esconder os sub-pacotes" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Mostrar apenas um pacote, não os sub-pacotes" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Apenas os pacotes mais recentes" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Mostrar apenas o pacote mais recente" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Ver por grupos" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Mostrar os pacotes por grupos, de acordo com o estado" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Será também instalado o seguinte pacote:" msgstr[1] "Serão também instalados os seguintes pacotes:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instalar Agora" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Será também removido o seguinte pacote:" msgstr[1] "Serão também removidos os seguintes pacotes:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Remover Agora" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "O seguinte pacote também terá de ser removido e instalado:" msgstr[1] "Os seguintes pacotes também terão de ser removidos e instalados:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Aplicar Agora" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Não foi possível simular a remoção do pacote" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "A sua infra-estrutura não suporta a remoção de pacotes." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Erro do KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Não foi possível simular a instalação do pacote" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "A sua infra-estrutura não suporta a instalação de pacotes." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Não foi possível remover o pacote" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Não foi possível instalar o pacote" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Não foi possível remover o pacote" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Esconder" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Permite-lhe esconder a janela, mantendo à mesma a tarefa da transacção em " "curso." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -467,11 +472,11 @@ "que é impossível verificar se a aplicação veio de uma fonte fidedigna.\n" "Tem a certeza que deseja continuar a instalação?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "A instalar uma aplicação não-assinada" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "É necessária uma mudança de disco" @@ -491,7 +496,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "É Necessário um Acordo de Licença" @@ -504,13 +509,13 @@ msgid "Version" msgstr "Versão" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cancelar" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Terminado em %1." @@ -560,807 +565,815 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "É necessária uma assinatura do 'software'" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Estado desconhecido" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "À espera que o serviço se inicie" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "À espera das outras tarefas" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "A executar uma tarefa" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "A efectuar uma pesquisa" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "A obter informações" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" -msgstr "Foram removidos os pacotes" +msgstr "A remover os pacotes" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "A obter os pacotes" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" -msgstr "Foram instalados os pacotes" +msgstr "A instalar os pacotes" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "A actualizar a lista de aplicações" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "A actualizar os pacotes" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "A limpar os pacotes" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "A tornar os pacotes obsoletos" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "A resolver as dependências" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "A verificar as assinaturas" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "A voltar atrás" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "A testar as alterações" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "A confirmar as modificações" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "A pedir dados" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Terminado" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "A cancelar" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "A obter informações do repositório" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "A obter a lista de pacotes" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "A obter as listas de ficheiros" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "A obter as listas de alterações" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "A obter os grupos" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "A obter a informação das actualizações" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "A regenerar os pacotes de ficheiros" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "A carregar a 'cache'" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "A sondar as aplicações instaladas" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "A gerar as listas de pacotes" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "À espera do desbloqueio do gestor de pacotes" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "À espera da autenticação" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "A actualizar a lista de aplicações em execução" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "A verificar as aplicações actualmente em uso" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "A verificar as bibliotecas actualmente em uso" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "A copiar os ficheiros" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Obtido" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Actualizado" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Removido" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Limpo" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Obsoleto" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Tipo de papel desconhecido" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "A obter as dependências" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "A obter o detalhe da actualização" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "A obter os detalhes" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "A obter os requisitos" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "A obter as actualizações" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "A pesquisar os detalhes" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "A pesquisar o ficheiro" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "A pesquisar os grupos" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "A pesquisar o nome do pacote" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "A remover" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "A instalar" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "A instalar o ficheiro" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "A actualizar a 'cache' de pacotes" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "A actualizar os pacotes" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "A actualizar o sistema" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "A cancelar" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "A voltar atrás" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "A obter a lista dos repositórios" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "A activar o repositório" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "A definir os dados do repositório" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "A resolver" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "A obter a lista de ficheiros" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "A obter as ofertas" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "A instalar a assinatura" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "A obter as listas de pacotes" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "A aceitar a EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "A obter os pacotes" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "A obter a informação de actualização da distribuição" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "A obter as categorias" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "A obter as transacções antigas" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "A simular a instalação dos ficheiros" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "A simular a instalação" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "A simular a remoção" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "A simular a actualização" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Tipo de papel desconhecido" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Foram obtidas as dependências" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Foram obtidos os detalhes de actualizações" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Foram obtidos os detalhes" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Foram obtidos os requisitos" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Foram obtidas as actualizações" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Foram pesquisados os detalhes dos pacotes" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Foi pesquisado o ficheiro" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Foram pesquisados os grupos" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Foi pesquisado o nome do pacote" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Foram removidos os pacotes" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Foram instalados os pacotes" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Foram instalados os ficheiros locais" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Foi actualizada a 'cache' de pacotes" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Foram actualizados os pacotes" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Foi actualizado o sistema" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Cancelado" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Reposto no estado anterior" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Foi obtida a lista de repositórios" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Foi activado o repositório" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Foram definidos os dados do repositório" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Resolvido" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Foi obtida a lista de ficheiros" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Foram obtidas as ofertas" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Foi instalada a assinatura" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Foram obtidas as listas de pacotes" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Foi aceite a EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Foram obtidos os pacotes" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Foram obtidas as actualizações da distribuição" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Foram obtidas as categorias" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Foram obtidas as transacções antigas" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "A instalação dos ficheiros foi simulada" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "A instalação foi simulada" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "A remoção foi simulada" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "A actualização foi simulada" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Não está disponível nenhuma ligação de rede" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Não está disponível nenhuma 'cache' de pacotes" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Sem memória" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Não foi possível criar uma tarefa separada" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Não é suportado por esta infra-estrutura" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Ocorreu um erro interno do sistema" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Não está presente uma relação de confiança de segurança" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "O pacote não está instalado" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "O pacote não foi encontrado" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "O pacote já está instalado" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "A transferência do pacote foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "O grupo não foi encontrado" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "A lista de grupos estava inválida" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "A resolução de dependências foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "O filtro da pesquisa era inválido" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "O identificado do pacote não tem um formato correcto" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Erro na transacção" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "O nome do repositório não foi encontrado" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Não foi possível remover um pacote protegido do sistema" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "A tarefa foi cancelada" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "A tarefa foi cancelada à força" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "A leitura do ficheiro de configuração foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "A tarefa não pode ser cancelada" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Os pacotes de código não podem ser instalados" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "O acordo da licença não foi aceite" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Ocorreu um conflito de ficheiros locais entre pacotes" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Os pacotes não são compatíveis" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" -msgstr "Ocorreu um problema ao ligar à fonte da aplicação" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "Ocorreu um problema ao ligar à origem da aplicação" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Não foi possível inicializar" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Não foi possível finalizar" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Não foi possível obter um bloqueio" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Não existem pacotes para actualizar" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Não é possível gravar a configuração do repositório" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "A instalação local foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "A assinatura de GPG é inválida" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Falta a assinatura de GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "A configuração do repositório é inválida" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "O ficheiro do pacote é inválido" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "A instalação do pacote foi bloqueada" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "O pacote está corrompido" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Já estão instalados todos os pacotes" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Não foi possível encontrar o ficheiro indicado" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Não estão disponíveis mais réplicas" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Não estão disponíveis dados de actualização da distribuição" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "O pacote é incompatível com este sistema" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Não há mais espaço livre em disco" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "A autorização foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "A actualização não foi encontrada" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "Não é possível instalar a partir de uma fonte não-fidedigna" - -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "Não é possível actualizar a partir de uma fonte não-fidedigna" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "Não é possível instalar a partir de uma origem não-fidedigna" + +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "Não é possível actualizar a partir de uma origem não-fidedigna" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Não é possível obter a lista de ficheiros" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Não é possível obter os requisitos do pacote" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" -msgstr "Não é possível desactivar a fonte" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "Não é possível desactivar a origem" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "A transferência foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Não foi possível configurar o pacote" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Não foi possível compilar o pacote" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Não foi possível instalar o pacote" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Não foi possível remover o pacote" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Erro desconhecido" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1368,7 +1381,7 @@ "Não está disponível nenhuma ligação de rede.\n" "Verifique por favor a configuração da sua ligação e tente de novo" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1376,7 +1389,7 @@ "A lista de pacotes necessita ser reconstruída.\n" "Isto já deverá ter sido feito automaticamente pela infra-estrutura." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1386,11 +1399,11 @@ "memória.\n" "Por favor feche alguns programas ou reinicie o seu computador." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Não foi possível criar a tarefa de serviço ao pedido do utilizador." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1398,7 +1411,7 @@ "A acção não é suportada por esta infra-estrutura.\n" "Comunique por favor um erro, dado que isto não deveria acontecer." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1406,35 +1419,35 @@ "Ocorreu um problema inesperado.\n" "Comunique por favor este erro, em conjunto com a sua descrição." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Não foi possível estabelecer uma relação de confiança na segurança com a " "origem da aplicação.\n" "Verifique por favor a sua configuração de assinatura do 'software'." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "O pacote que está a tentar remover ou actualizar não está instalado de " "momento." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "O pacote que está a ser modificado não foi encontrado nem no seu sistema nem " -"em qualquer fonte de aplicações." +"em qualquer origem de aplicações." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "O pacote que está a tentar instalar já está de facto instalado." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1442,7 +1455,7 @@ "A transferência do pacote foi mal-sucedida.\n" "Verifique por favor a sua ligação à rede." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1450,17 +1463,17 @@ "O tipo de grupo não foi encontrado.\n" "Verifique por favor a sua lista de grupos e tente de novo." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Não foi possível carregar a lista de grupos.\n" "A actualização da sua 'cache' poderá ajudar, mas isto normalmente é um erro " -"da fonte de aplicações." +"da origem das aplicações." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1468,11 +1481,11 @@ "Não foi possível encontrar uma dependência de pacotes.\n" "Poderá obter mais informações no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "O filtro de pesquisa não tinha um formato adequado." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1481,7 +1494,7 @@ "servidor.\n" "Isto normalmente corresponde a um erro interno que deverá ser resolvido." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1489,23 +1502,23 @@ "Ocorreu um erro ao executar a transacção.\n" "Poderá obter mais informações no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -"O nome da fonte de aplicações remota não foi encontrado.\n" -"Poderá ter de activar um item nas Fontes de Aplicações." +"O nome da origem de aplicações remota não foi encontrado.\n" +"Poderá ter de activar um item nas Origens de Aplicações." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Não é permitido remover um pacote protegido do sistema." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "A tarefa foi cancelada com sucesso sem modificar nenhuns pacotes." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1513,7 +1526,7 @@ "A tarefa foi cancelada com sucesso sem ter alterado nenhuns pacotes.\n" "A infra-estrutura não terminou de forma ordeira." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1521,11 +1534,11 @@ "Não foi possível aceder ao ficheiro de configuração nativa dos pacotes.\n" "Verifique por favor se a configuração do seu sistema está de facto válida." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "A tarefa não pode ser cancelada em segurança nesta altura." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1533,7 +1546,7 @@ "Os pacotes de código não são instalados normalmente desta forma.\n" "Verifique a extensão do ficheiro que está a tentar instalar." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1541,32 +1554,33 @@ "O acordo de licença não foi aceite.\n" "Para usar esta aplicação, terá de aceitar a licença." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Existem dois pacotes que oferecem o mesmo ficheiro.\n" -"Isto acontece normalmente quando mistura pacotes de diferentes fontes de " +"Isto acontece normalmente quando mistura pacotes de diferentes origens de " "aplicações." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Existem vários pacotes que não são compatíveis entre si.\n" -"Isto acontece normalmente quando mistura pacotes de diferentes fontes." +"Isto acontece normalmente quando mistura pacotes de diferentes origens." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -"Ocorreu um problema (talvez temporário) ao ligar a uma fonte de aplicações.\n" +"Ocorreu um problema (talvez temporário) ao ligar a uma origem de " +"aplicações.\n" "Verifique o erro detalhado para obter mais detalhes." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1575,7 +1589,7 @@ "Isto poderá ocorrer se estiver a usar outras aplicações de gestão de pacotes " "em simultâneo." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1583,7 +1597,7 @@ "Não foi possível encerrar a instância da infra-estrutura.\n" "Este erro poderá normalmente ser ignorado." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1591,15 +1605,15 @@ "Não foi possível obter o bloqueio exclusivo da infra-estrutura de pacotes.\n" "Por favor, feche todas as outras aplicações abertas de gestão de pacotes." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Não foi possível actualizar nenhum dos pacotes seleccionados." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Não foi possível modificar a configuração do repositório." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1607,11 +1621,11 @@ "A instalação do ficheiro local foi mal-sucedida.\n" "Encontra-se disponível mais alguma informação no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Não foi possível verificar a assinatura do pacote." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1619,12 +1633,12 @@ "Faltava a assinatura do pacote, tornando este pacote não-fiável.\n" "Este pacote não foi assinado com uma chave de GPG na sua criação." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "" "A configuração do repositório era inválida, pelo que não foi possível lê-la." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1632,7 +1646,7 @@ "O pacote que está a tentar instalar não é válido.\n" "O ficheiro do pacote poderá estar corrompido ou não ser um pacote válido." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1640,21 +1654,21 @@ "A instalação deste pacote foi evitada pela configuração do seu sistema de " "pacotes." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "O pacote que foi transferido está corrompido e precisa de ser transferido de " "novo." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Todos os pacotes seleccionados para a instalação já estão instalados de " "facto." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1662,31 +1676,31 @@ "Não foi possível encontrar o ficheiro indicado no sistema.\n" "Verifique se o ficheiro ainda existe e se não foi removido." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -"Não foi possível encontrar dados necessários em nenhuma das fontes de " +"Não foi possível encontrar dados necessários em nenhuma das origens de " "aplicações configuradas.\n" -"Não existem mais réplicas das fontes para experimentar." +"Não existem mais réplicas das origens para experimentar." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -"Não foi possível encontrar dados necessários em nenhuma das fontes de " +"Não foi possível encontrar dados necessários em nenhuma das origens de " "aplicações configuradas.\n" "A lista de actualizações da distribuição ficará indisponível." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "O pacote que está a tentar instalar é incompatível com este sistema." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1694,11 +1708,11 @@ "Não existe espaço suficiente no dispositivo.\n" "Liberte algum espaço no disco de sistema para efectuar esta operação." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "É necessário um disco adicional para completar a transacção." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1706,7 +1720,7 @@ "Não conseguiu fornecer uma autenticação correcta.\n" "Verifique por favor todas as senhas ou configurações de contas." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1716,28 +1730,29 @@ "Provavelmente já foi instalada ou não está mais disponível no servidor " "remoto." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." -msgstr "O pacote não pôde ser instalado a partir de uma fonte não-fidedigna." - -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." -msgstr "O pacote não pôde ser actualizado a partir de uma fonte não-fidedigna." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "O pacote não pôde ser instalado a partir de uma origem não-fidedigna." + +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." +msgstr "" +"O pacote não pôde ser actualizado a partir de uma origem não-fidedigna." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "A lista de ficheiros não está disponível para este pacote." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" "Não foi possível obter as informações sobre quem necessita deste pacote." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." -msgstr "Não foi possível desactivar a fonte de aplicações indicada." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "Não foi possível desactivar a origem de aplicações indicada." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1746,7 +1761,7 @@ "feita manualmente.\n" "Poderá obter mais informações no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1754,7 +1769,7 @@ "Não foi possível configurar correctamente um dos pacotes seleccionados.\n" "Encontra-se disponível mais alguma informação no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1762,7 +1777,7 @@ "Não foi possível compilar correctamente um dos pacotes seleccionados.\n" "Encontra-se disponível mais alguma informação no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1770,7 +1785,7 @@ "Não foi possível instalar correctamente um dos pacotes seleccionados.\n" "Encontra-se disponível mais alguma informação no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1778,7 +1793,7 @@ "Não foi possível remover correctamente um dos pacotes seleccionados.\n" "Encontra-se disponível mais alguma informação no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1786,239 +1801,239 @@ "Ocorreu um erro desconhecido; envie por favor um relatório de erros.\n" "Está disponível mais alguma informação no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Acessibilidade" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Acessórios" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Educação" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Jogos" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Gráficos" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Escritório" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Outros" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Desenvolvimento" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimédia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistema" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Ambiente de trabalho GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Ambiente de trabalho KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Ambiente de trabalho XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Outros ambientes de trabalho" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publicações" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servidores" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Tipos de Letra" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Ferramentas de administração" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Legado" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Localização" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualização" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Segurança" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Gestão de energia" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Comunicação" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Rede" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapas" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Fontes de aplicações" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Ciência" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentação" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Electrónica" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Colectâneas de pacotes" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Fabricante" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Apenas os pacotes mais recentes" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Grupo desconhecido" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Actualização trivial" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Actualização normal" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Actualização importante" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Actualização de segurança" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Correcção de erros" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Actualização para melhoria" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Actualização bloqueada" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Instalada" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Disponível" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Actualização desconhecida" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 actualização trivial" msgstr[1] "%1 actualizações triviais" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2026,70 +2041,70 @@ msgstr[0] "1 actualização" msgstr[1] "%1 actualizações" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 actualização importante" msgstr[1] "%1 actualizações importantes" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 actualização de segurança" msgstr[1] "%1 actualizações de segurança" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 correcção de erros" msgstr[1] "%1 correcções de erros" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 actualização de melhoria" msgstr[1] "%1 actualizações de melhoria" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 actualização bloqueada" msgstr[1] "%1 actualizações bloqueadas" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 pacote instalado" msgstr[1] "%1 pacotes instalados" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 pacote disponível" msgstr[1] "%1 pacotes disponíveis" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 actualização desconhecida" msgstr[1] "%1 actualizações desconhecidas" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 actualização trivial seleccionada" msgstr[1] "%1 actualizações triviais seleccionadas" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2097,56 +2112,56 @@ msgstr[0] "1 actualização seleccionada" msgstr[1] "%1 actualizações seleccionadas" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "%1 actualização importante seleccionada" msgstr[1] "%1 actualizações importantes seleccionadas" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 actualização de segurança seleccionada" msgstr[1] "%1 actualizações de segurança seleccionadas" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 correcção de erros seleccionada" msgstr[1] "%1 correcções de erros seleccionadas" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 actualização de melhoria seleccionada" msgstr[1] "%1 actualizações de melhoria seleccionadas" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 pacote instalado seleccionado para remoção" msgstr[1] "%1 pacotes instalados seleccionados para remoção" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 pacote disponível seleccionado para instalação" msgstr[1] "%1 pacotes disponíveis seleccionados para instalação" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 actualização trivial" msgstr[1] "%1 actualizações triviais, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2154,513 +2169,760 @@ msgstr[0] "%1 actualização" msgstr[1] "%1 actualizações, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 actualização importante" msgstr[1] "%1 actualizações importantes, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 actualização de segurança" msgstr[1] "%1 actualizações de segurança, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 correcção de erros" msgstr[1] "%1 correcções de erros, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 actualização de melhoria" msgstr[1] "%1 actualizações de melhoria, %2 seleccionadas" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 actualização bloqueada" msgstr[1] "%1 actualizações bloqueadas" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 pacote instalado" msgstr[1] "%1 pacotes instalados, %2 seleccionados para remoção" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 pacote disponível" msgstr[1] "%1 pacotes disponíveis, %2 seleccionados para instalação" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 actualização desconhecida" msgstr[1] "%1 actualizações desconhecidas" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Não é necessário reiniciar" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Ser-lhe-á pedido para reiniciar esta aplicação" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Ser-lhe-á pedido para encerrar e reiniciar a sua sessão" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Será necessário reiniciar" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "É necessário encerrar a sessão e reiniciá-la depois, devido a uma " "actualização de segurança." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" "É necessário reiniciar o sistema, devido a uma actualização de segurança." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Não é necessário reiniciar" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "É necessário reiniciar" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "É necessário encerrar e reiniciar a sua sessão" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "É necessário reiniciar a aplicação" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "Terá de encerrar a sessão e reiniciá-la depois para permanecer seguro." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "É necessário reiniciar o sistema para permanecer seguro." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Estável" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Instável" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testes" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Introduza por favor o CD chamado '%1' e carregue em Continuar." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Introduza por favor o DVD chamado '%1' e carregue em Continuar." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Introduza por favor o disco chamado '%1' e carregue em Continuar." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Introduza por favor o disco chamado '%1' e carregue em Continuar." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Uma das réplicas poderá estar inválida" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "A ligação foi recusada" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "O parâmetro era inválido" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "A prioridade era inválida" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Aviso da infra-estrutura" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Aviso do servidor" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "A 'cache' de pacotes está a ser reconstruída" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Foi instalado um pacote não-fidedigno" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Existe um pacote mais recente" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Não foi possível encontrar o pacote" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Os ficheiros de configuração foram alterados" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "O pacote já está instalado" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "A limpeza automática está a ser ignorada" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "A transferência da fonte de aplicações foi mal-sucedida" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Não tem os privilégios necessários para efectuar esta acção." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "" "Não foi possível obter um ID de transacção a partir do serviço do PackageKit." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Não é possível contactar este ID de transacção." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Esta acção é desconhecida." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Não foi possível iniciar o serviço do PackageKit." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "A pesquisa não é válida." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "O ficheiro não é válido." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Esta função ainda não é suportada." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Não foi possível contactar o serviço do PackageKit." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Ocorreu um erro desconhecido." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorar" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                  • %2
                                                  Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                  • %2
                                                  Do you want to search " +"for these now?" +msgstr[0] "" +"É necessário o seguinte ficheiro:
                                                  • %2
                                                  Deseja procurar por " +"ele agora?" +msgstr[1] "" +"São necessários os seguintes ficheiros:
                                                  • %2
                                                  Deseja procurar " +"por eles agora?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Um programa deseja instalar um ficheiro" +msgstr[1] "Um programa deseja instalar ficheiros" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 deseja instalar um ficheiro" +msgstr[1] "%2 deseja instalar ficheiros" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Não foi possível iniciar a transacção de pesquisa de ficheiros" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "não concorda com a pesquisa" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "O pacote %1 já fornece este ficheiro" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Não foi possível instalar o ficheiro" +msgstr[1] "Não foi possível instalar os ficheiros" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Será instalado o seguinte pacote" +msgstr[1] "Serão instalados os seguintes pacotes" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Não foi possível encontrar o ficheiro em nenhum pacote" +msgstr[1] "Não foi possível encontrar os ficheiros em nenhum pacote" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Não foi possível encontrar o pacote" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Tem %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                                  And another update" msgid_plural "
                                                  And %1 more updates" msgstr[0] "
                                                  E outra actualização" msgstr[1] "
                                                  E mais %1 actualizações/i>" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Rever e actualizar" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Agora não" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Não voltar a perguntar" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "As actualizações estão a ser instaladas automaticamente." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "As actualizações de segurança estão a ser instaladas automaticamente." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "A actualização do sistema ocorreu com sucesso." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "A actualização do sistema não foi bem-sucedida." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "É necessário o seguinte ficheiro:" +msgstr[1] "São necessários os seguintes ficheiros:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Deseja procurar por ele agora?" +msgstr[1] "Deseja procurar por eles agora?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 deseja instalar um ficheiro" +msgstr[1] "%1 deseja instalar ficheiros" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Iniciar agora a actualização" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "A actualização da distribuição terminou." -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 -msgid "KPackageKit" -msgstr "KPackageKit" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Não foi possível iniciar a transacção de resolução" -#: SmartIcon/main.cpp:36 -msgid "KPackageKit Tray Icon" -msgstr "Ícone da Bandeja do KPackageKit" +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "O utilizador cancelou a transacção" -#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Ocorreu um erro desconhecido" -#: SmartIcon/main.cpp:41 -msgid "Trever Fischer" -msgstr "Trever Fischer" +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                                  • %2
                                                  Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                  • %2
                                                  Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"É necessário um pacote adicional:
                                                  • %2
                                                  Deseja procurar por " +"ele e instalá-lo agora?" +msgstr[1] "" +"São necessários pacotes adicionais:
                                                  • %2
                                                  Deseja procurar por " +"eles e instalá-los agora?" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "Adrien Bustany" -msgstr "Adrien Bustany" +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Um programa deseja instalar um pacote" +msgstr[1] "Um programa deseja instalar pacotes" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "libpackagekit-qt and other stuff" -msgstr "libpackagekit-qt e outras coisas" +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 deseja instalar um pacote" +msgstr[1] "%2 deseja instalar pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "O pacote %2 já está instalado" +msgstr[1] "Os pacotes %2 já estão instalados" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Não foi possível instalar os pacotes" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "A transacção não terminou com sucesso" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "O pacote não foi encontrado em nenhuma fonte de aplicações" +msgstr[1] "Os pacotes não foram encontrados em nenhuma fonte de aplicações" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Não foi possível encontrar o %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "Ícone da Bandeja do KPackageKit" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "libpackagekit-qt e outras coisas" + +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"É necessário um tipo de letra adicional para ver este documento " +"correctamente. Deseja procurar por um pacote adequado e instalá-lo agora?" +msgstr[1] "" +"São necessários tipos de letra adicionais para ver este documento " +"correctamente. Deseja procurar pelos pacotes adequados e instalá-los agora?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Um programa deseja instalar um tipo de letra" +msgstr[1] "Um programa deseja instalar tipos de letra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 deseja instalar um tipo de letra" +msgstr[1] "%2 deseja instalar tipos de letra" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Procurar" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Não foi possível procurar as ofertas" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplicação que consegue abrir este tipo de ficheiro" +msgstr[1] "Aplicações que conseguem abrir este tipo de ficheiro" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "Não foram encontrados tipos de letra para lidar com este documento" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Não foi possível encontrar o tipo de letra" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Este item não é suportado pela sua infra-estrutura ou então não é um " +"ficheiro." +msgstr[1] "" +"Estes itens não são suportados pela sua infra-estrutura ou então não são " +"ficheiros." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Não é possível instalar" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Deseja instalar este ficheiro?" +msgstr[1] "Deseja instalar estes %1 ficheiros?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Instalar?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "O ficheiro não foi instalado" +msgstr[1] "Os ficheiros não foram instalado" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "O ficheiro foi instalado com sucesso" +msgstr[1] "Os ficheiros foram instalados com sucesso" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Ocorreu um erro." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                  • %2
                                                  Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                  • %2
                                                  Do you want to " +"search for these now?" +msgstr[0] "" +"É necessário o seguinte 'plugin':
                                                  • %2
                                                  Deseja procurar por " +"ele e instalá-lo agora?" +msgstr[1] "" +"São necessários os seguintes 'plugins':
                                                  • %2
                                                  Deseja procurar " +"por eles e instalá-los agora?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Um programa necessita de um 'plugin' adicional para descodificar este " +"ficheiro" +msgstr[1] "" +"Um programa necessita de 'plugins' adicionais para descodificar este ficheiro" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Um programa necessita de um 'plugin' adicional para codificar este ficheiro" +msgstr[1] "" +"Um programa necessita de 'plugins' adicionais para codificar este ficheiro" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Um programa necessita de um 'plugin' adicional para esta operação" +msgstr[1] "Um programa necessita de 'plugins' adicionais para esta operação" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +"%2 necessita de um 'plugin' adicional para descodificar este ficheiro" +msgstr[1] "" +"%2 necessita de 'plugins' adicionais para descodificar este ficheiro" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 necessita de um 'plugin' adicional para codificar este ficheiro" +msgstr[1] "%2 necessita de 'plugins' adicionais para codificar este ficheiro" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 necessita de um 'plugin' adicional para esta operação" +msgstr[1] "%2 necessita de 'plugins' adicionais para esta operação" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Deseja instalar este pacote agora?" +msgstr[1] "Deseja instalar estes pacotes agora?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" +"Não foi possível encontrar o 'plugin' em nenhuma origem de aplicações " +"configurada" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Não foi possível procurar o 'plugin'" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "O nome do ficheiro não foi encontrado em nenhuma fonte de aplicações" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transacções" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Actualizar a lista de pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Mostrar as mensagens" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Esconder este ícone" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Pacote: %1" -msgstr[1] "Pacotes: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Pacote: %2" +msgstr[1] "Pacotes: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Uma mensagem do gestor de pacotes" msgstr[1] "%1 mensagens do gestor de pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "A actualização do sistema terminou" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Reiniciar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Agora não" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Encerrar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Mensagens do Gestor de Pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Mensagem" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Configuração do KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Horário" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Diário" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Semanal" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Mensal" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nunca" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Apenas de Segurança" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Todas as Actualizações" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Nada" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Não tem os privilégios necessários para efectuar esta acção." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Não foi possível definir os dados de origem" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "É necessário o seguinte ficheiro:" -msgstr[1] "São necessários os seguintes ficheiros:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Deseja procurar por ele agora?" -msgstr[1] "Deseja procurar por eles agora?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Um programa deseja instalar um ficheiro" -msgstr[1] "Um programa deseja instalar ficheiros" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 deseja instalar um ficheiro" -msgstr[1] "%1 deseja instalar ficheiros" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Não foi possível iniciar a transacção de pesquisa de ficheiros" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "O pacote %1 já fornece este ficheiro" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Será instalado o seguinte pacote" -msgstr[1] "Serão instalados os seguintes pacotes" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Não foi possível encontrar o ficheiro em nenhum pacote" -msgstr[1] "Não foi possível encontrar os ficheiros em nenhum pacote" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Não foi possível encontrar o pacote" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Um programa deseja remover um ficheiro" msgstr[1] "Um programa deseja remover ficheiros" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 deseja remover um ficheiro" -msgstr[1] "%1 deseja remover ficheiros" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 deseja remover um ficheiro" +msgstr[1] "%2 deseja remover ficheiros" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Será removido o seguinte ficheiro:" msgstr[1] "Serão removidos os seguintes ficheiros:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2671,18 +2933,18 @@ msgstr[1] "" "Deseja procurar pelos pacotes que contêm estes ficheiros e removê-los agora?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Procurar" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Será removido o seguinte pacote" msgstr[1] "Serão removidos os seguintes pacotes" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "" @@ -2690,11 +2952,135 @@ msgstr[1] "" "Não foi possível encontrar os ficheiros indicados em nenhum pacote instalado" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "Não foi possível encontrar o %1" +msgid "" +"An additional program is required to open this type of file:
                                                  • %1
                                                  • Do you want to search for a program to open this file type now?" +msgstr "" +"É necessário um programa adicional para abrir este tipo de ficheiro:
                                                    • %" +"1
                                                    Deseja procurar por um programa que abra este tipo de ficheiros?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Um programa necessita de um tipo MIME novo" +msgstr[1] "Um programa necessita de tipos MIME novos" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 necessita de um tipo MIME novo" +msgstr[1] "%2 necessita de tipos MIME novos" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Procurar" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Não foram encontradas aplicações para lidar com este tipo de ficheiros" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Não foi possível encontrar o 'software'" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                                    Do you want to install this catalog?

                                                    • %2
                                                    " +msgid_plural "" +"

                                                    Do you want to install these catalogs?

                                                    • %2
                                                    " +msgstr[0] "

                                                    Deseja instalar este catálogo?

                                                    • %2
                                                    " +msgstr[1] "

                                                    Deseja instalar estes catálogos?

                                                    • %2
                                                    " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instalar o catálogo" +msgstr[1] "Instalar os catálogos" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"A sua infra-estrutura não suporta nenhum dos métodos necessários para " +"instalar um catálogo" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Não suportado" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Não foi possível abrir o catálogo %2" +msgstr[1] "Não foi possível abrir os catálogos %2" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Não foi possível aceder" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "Não foi encontrado nenhum pacote para instalar" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Não foi possível iniciar a transacção de configuração" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Configuração do KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Horário" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Diário" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Semanal" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Mensal" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nunca" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Apenas de segurança" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Todas as actualizações" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Nada" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Não foi possível definir os dados de origem" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2732,142 +3118,6 @@ msgid "Package file to install" msgstr "Ficheiro do pacote a instalar" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Este item não é suportado pela sua infra-estrutura ou então não é um " -"ficheiro." -msgstr[1] "" -"Estes itens não são suportados pela sua infra-estrutura ou então não são " -"ficheiros." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Não é possível instalar" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Deseja instalar este ficheiro?" -msgstr[1] "Deseja instalar estes %1 ficheiros?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Instalar?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "O ficheiro não foi instalado" -msgstr[1] "Os ficheiros não foram instalado" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Não foi possível instalar o ficheiro" -msgstr[1] "Não foi possível instalar os ficheiros" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "O ficheiro foi instalado com sucesso" -msgstr[1] "Os ficheiros foram instalados com sucesso" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Ocorreu um erro." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "É necessário um pacote adicional:" -msgstr[1] "São necessários pacotes adicionais:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Deseja pesquisá-lo e instalá-lo agora?" -msgstr[1] "Deseja pesquisá-los e instalá-los agora?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Um programa deseja instalar um pacote" -msgstr[1] "Um programa deseja instalar pacotes" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 deseja instalar um pacote" -msgstr[1] "%1 deseja instalar pacotes" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Não foi possível iniciar a transacção de resolução" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "O pacote não foi encontrado em nenhuma fonte de aplicações" -msgstr[1] "Os pacotes não foram encontrados em nenhuma fonte de aplicações" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                    %1
                                                    Do " -"you want to search for a program to open this file type now?" -msgstr "" -"É necessário um programa adicional para abrir este tipo de ficheiro:
                                                    %" -"1
                                                    Deseja procurar por um programa que abra este tipo de ficheiros?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Um programa necessita de um tipo MIME novo" -msgstr[1] "Um programa necessita de tipos MIME novos" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "O programa %1 necessita de um tipo MIME novo" -msgstr[1] "O programa %1 necessita de tipos MIME novos" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Procurar" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Não foi possível procurar as ofertas" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplicação que consegue abrir este tipo de ficheiro" -msgstr[1] "Aplicações que conseguem abrir este tipo de ficheiro" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Não foram encontradas aplicações para lidar com este tipo de ficheiros" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Não foi possível encontrar o 'software'" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2878,19 +3128,19 @@ msgid "Your emails" msgstr "jncp@netcabo.pt" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Seleccionar todas as actualizações" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Actualizar" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2928,388 +3178,390 @@ msgid "Required by" msgstr "É necessário por" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Adicionar e Remover Aplicações" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Procurar por pacotes" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtros" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Todos os Pacotes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transacção" +msgid "Transaction" +msgstr "Transacção" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ícone" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "A Obter os Pacotes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Uma biblioteca para fazer 'xpto'" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libxpto" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "São necessárias alterações adicionais para terminar a tarefa" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Acções" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nome do repositório:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL da assinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identificação do utilizador da assinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificação da assinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Reconhece o utilizador e confia nesta chave?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Confia na origem dos pacotes?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Leia por favor a seguinte informação importante antes de prosseguir:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Configuração" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Configuração do KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Verificar as Actualizações:" +msgid "Update settings" +msgstr "Configuração da actualização" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Instalar Automaticamente:" +msgid "Check for updates:" +msgstr "Verificar as actualizações:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Ícone da Bandeja" +msgid "Automatically install:" +msgstr "Instalar automaticamente:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Notificar quando estiverem disponíveis actualizações" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Notificar quando tiverem terminado as tarefas demoradas" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "Origem dos Pacotes" +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "Origem dos pacotes" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "Mo&strar a origem dos pacotes de depuração e desenvolvimento" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Acerca da Infra-Estrutura" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Nome da infra-estrutura:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "nome da infra-estrutura aqui" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Autor da infra-estrutura:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Descrição da infra-estrutura:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "autor da infra-estrutura aqui" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "descrição da infra-estrutura aqui" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "O pacote está visível" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Mais Recente" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Interface" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "'Software' livre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Suportado" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Métodos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Obter as Actualizações" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Actualizar o Pacote" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Lista de Repositórios" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Actualizar a 'Cache'" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Instalar o Pacote" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Activar o Repositório" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Actualizar o Sistema" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Remover o Pacote" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Activar o Repositório" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Procurar o Nome" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Obter as Dependências" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "Obter as Ofertas" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Pesquisar os Detalhes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Obter os Requisitos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Obter os Pacotes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Procurar o Grupo" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Obter os Detalhes das Actualizações" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Procurar o Ficheiro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Obter a Descrição" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Obter os Ficheiros" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resolver" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Instalar o Ficheiro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "Simular a Instalação dos Ficheiros" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "Simular a Instalação dos Pacotes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "Simular a Remoção dos Pacotes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "Simular a Actualização dos Pacotes" diff -Nru kpackagekit-0.5.4/po/pt_BR/kpackagekit.po kpackagekit-0.6.0/po/pt_BR/kpackagekit.po --- kpackagekit-0.5.4/po/pt_BR/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/pt_BR/kpackagekit.po 2010-01-30 09:03:37.000000000 +0000 @@ -8,9 +8,9 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-07 23:30-0300\n" -"Last-Translator: André Marcelo Alvarenga \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-13 16:44-0300\n" +"Last-Translator: Luiz Fernando Ranghetti \n" "Language-Team: Brazilian Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,11 +29,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detalhes" @@ -95,20 +95,20 @@ "É recomendável que você mantenha seu computador conectado enquanto a " "atualização estiver sendo executada." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "A atualização da distribuição foi concluída." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "O processo de atualização da distribuição terminou com o código %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Falha ao iniciar o processo de atualização da distribuição." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -116,7 +116,7 @@ "O processo de atualização da distribuição travou algum tempo após ter " "iniciado com sucesso." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" "O processo de atualização da distribuição falhou com um erro desconhecido." @@ -197,28 +197,24 @@ msgid "Time since last cache refresh: %1" msgstr "Tempo desde a última atualização do cache: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Nome do pacote" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Página inicial" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licença" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grupo" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Página inicial" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Tamanho" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Nenhum arquivo foi encontrado." @@ -230,235 +226,244 @@ msgid "KDE interface for managing software" msgstr "Interface do KDE para gerenciamento de software" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Pesquisar" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Todos os pacotes" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Pesquisa de texto" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Lista de alterações" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Grupo:" msgstr[1] "Grupos:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Cancelar" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Pesquisar pelo &nome" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Pesquisar pelo nome do &arquivo" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Pesquisar pela &descrição" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Revisar alterações" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Coleções" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Somente coleções" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Excluir coleções" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Instalado" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Somente os instalados" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Somente os disponíveis" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Sem filtro" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Desenvolvimento" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Somente de desenvolvimento" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Somente arquivos do usuário" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Gráfico" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Somente gráficos" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Somente texto" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Livre" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Somente software livre" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Somente software proprietário" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arquiteturas" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Somente arquiteturas nativas" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Somente arquiteturas não-nativas" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Fonte" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" -msgstr "Somente código-fonte" +msgstr "Somente código fonte" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Somente sem códigos fonte" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Ocultar subpacotes" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Exibir somente um pacote, não subpacotes" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Somente pacotes novos" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Exibir somente o pacote mais novo disponível" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Exibir em grupos" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Exibir pacotes em grupos de acordo com o status" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "O seguinte pacote será instalado:" msgstr[1] "Os seguintes pacotes serão instalados:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instalar agora" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "O seguinte pacote será removido:" msgstr[1] "Os seguintes pacotes serão removidos:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Remover agora" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "O seguinte pacote será removido e instalado:" msgstr[1] "Os seguintes pacotes serão removidos e instalados:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Aplicar agora" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Falha ao simular a remoção do pacote" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "A infraestrutura atual não suporta a remoção de pacotes." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Erro do KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Falha ao simular a instalação do pacote" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "A infraestrutura atual não suporta a instalação de pacotes." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Falha ao remover o pacote" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Falha ao instalar o pacote" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Falha ao remover o pacote" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Ocultar" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Permite-lhe ocultar a janela enquanto mantém a tarefa da transação em " "execução." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -467,13 +472,13 @@ "Você está para instalar pacotes não assinados pode comprometer o seu " "sistema, já que é impossível verificar se o software foi obtido de uma fonte " "confiável.\n" -" Tem certeza de que deseja continuar a instalação?" +" Tem certeza de que quer continuar a instalação?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Instalando software não assinado" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "É necessário trocar a mídia" @@ -493,7 +498,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "É necessário concordar com o contrato de licença" @@ -506,13 +511,13 @@ msgid "Version" msgstr "Versão" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Cancelar" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Concluída em %1." @@ -562,807 +567,815 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "É necessária a assinatura do software" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" -msgstr "Estado desconhecido" +msgstr "Status desconhecido" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Aguardando o serviço ser iniciado" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" -msgstr "Aguardando outras tarefas" +msgstr "Aguardando por outras tarefas" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Executando tarefa" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Consultando" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Obtendo informações" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Removendo pacotes" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Baixando pacotes" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Instalando pacotes" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Atualizando a lista de softwares" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Atualizando pacotes" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Limpando pacotes" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Tornando os pacotes obsoletos" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Resolvendo as dependências" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Verificando assinaturas" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Desfazendo" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Testando as alterações" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Aplicando as alterações" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Requisitando dados" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Concluído" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Cancelando" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Baixando informações do repositório" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Baixando lista de pacotes" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Baixando listas de arquivos" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Baixando listas de alterações" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Baixando grupos" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Baixando informações das atualizações" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Reempacotando arquivos" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Carregando o cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" -msgstr "Identificando os aplicativos instalados" +msgstr "Examinando os aplicativos instalados" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Gerando as listas de pacotes" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" -msgstr "Esperando pelo bloqueio do gerenciador de pacotes" +msgstr "Aguardando o bloqueio do gerenciador de pacotes" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Aguardando pela autenticação" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Atualizando a lista de aplicativos em execução" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" -msgstr "Verificando os aplicativos em uso" +msgstr "Verificando por aplicativos atualmente em uso" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Verificando as bibliotecas em uso" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Copiando arquivos" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Baixado" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Atualizado" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Removido" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Limpo" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Tornado obsoleto" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Tipo de função desconhecida" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Obtendo as dependências" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Obtendo os detalhes da atualização" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Obtendo os detalhes" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Obtendo os requisitos" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Obtendo as atualizações" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Pesquisando os detalhes" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Pesquisando por arquivo" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Pesquisando grupos" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Pesquisando pelo nome do pacote" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Removendo" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Instalando" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Instalando arquivo" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Atualizando o cache de pacotes" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Atualizando pacotes" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Atualizando o sistema" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Cancelando" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Desfazendo" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Obtendo a lista de repositórios" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Habilitando repositório" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Configurando os dados do repositório" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Resolvendo" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Obtendo a lista de arquivos" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Obtendo o fornecedor" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Instalando a assinatura" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Obtendo as listas de pacotes" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Aceitando a EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Baixando pacotes" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Obtendo informações de atualização da distribuição" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Obtendo categorias" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Obtendo transações antigas" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Simulando a instalação dos arquivos" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Simulando a instalação" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Simulando a remoção" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Simulando a atualização" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Tipo de função desconhecida" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Dependências obtidas" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Detalhes da atualização obtidos" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Detalhes obtidos" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Requisitos obtidos" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Atualizações obtidas" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Detalhes dos pacotes pesquisados" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Arquivo pesquisado" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Grupos pesquisados" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Nome do pacote pesquisado" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Pacotes removidos" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Pacotes instalados" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Arquivos locais instalados" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Cache de pacotes atualizado" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Pacotes atualizados" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Sistema atualizado" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Cancelado" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Desfeito" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Lista de repositórios obtida" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Repositório habilitado" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Configurar dados do repositório" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Resolvido" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Lista de arquivos obtida" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Fornecedor obtido" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Assinatura instalada" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Listas de pacotes obtidas" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "EULA aceita" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Pacotes baixados" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Atualização da distribuição obtida" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Categorias obtidas" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Transações antigas obtidas" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "A instalação dos arquivos foi simulada" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "A instalação foi simulada" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "A remoção foi simulada" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "A atualização foi simulada" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Nenhuma conexão de rede disponível" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Nenhum cache de pacotes disponível" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Memória insuficiente" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Falha ao criar uma tarefa separada" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Sem suporte por esta infraestrutura" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Ocorreu um erro interno do sistema" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Uma conexão segura confiável não está presente" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "O pacote não está instalado" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "O pacote não foi encontrado" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "O pacote já está instalado" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Falha ao baixar o pacote" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "O grupo não foi encontrado" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "A lista de grupos é inválida" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Falha ao resolver a dependência" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Filtro de pesquisa inválido" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "O identificador do pacote não foi bem construído" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Erro da transação" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "O nome do repositório não foi encontrado" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Não foi possível remover um pacote protegido do sistema" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "A tarefa foi cancelada" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "A tarefa foi cancelada à força" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Falha na leitura do arquivo de configuração" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "A tarefa não pode ser cancelada" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Os pacotes fonte não podem ser instalados" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Falha na aceitação da licença" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Conflito de arquivo local entre pacotes" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Os pacotes não são compatíveis" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "Problema ao se conectar a uma fonte de softwares" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Falha ao inicializar" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Falha ao finalizar" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Não foi possível obter o bloqueio" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Nenhum pacote a atualizar" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Não foi possível salvar a configuração do repositório" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Falha na instalação local" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "A assinatura GPG está incorreta" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Falta a assinatura GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Configuração de repositório inválida" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Arquivo de pacote inválido" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "A instalação do pacote está bloqueada" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "O pacote está corrompido" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Todos os pacotes já estão instalados" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "O arquivo especificado não pôde ser encontrado" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Nenhum outro espelho disponível" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Não estão disponíveis dados de atualização da distribuição" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "O pacote é incompatível com o sistema" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Não há espaço disponível no disco" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Falha na autorização" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "A atualização não foi encontrada" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "Não foi possível instalar de uma fonte não confiável" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "Não foi possível atualizar de uma fonte não confiável" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Não foi possível obter a lista de arquivos" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Não foi possível obter as requisições dos pacotes" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "Não foi possível desabilitar a fonte" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Falha no download" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Falha ao configurar o pacote" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Falha ao compilar o pacote" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Falha ao instalar o pacote" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Falha na remoção do pacote" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Erro desconhecido" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1370,15 +1383,15 @@ "Não há conexão de rede disponível.\n" "Verifique suas configurações de conexão e tente novamente" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." msgstr "" "A lista de pacotes precisa ser recriada.\n" -"Isto deveria ter sido feito pela infraestrutura automaticamente." +"Isto deveria ter sido feito automaticamente pela infraestrutura." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1388,11 +1401,11 @@ "memória.\n" "Feche alguns programas ou reinicie seu computador." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Uma tarefa não pôde ser criada para tratar a solicitação do usuário." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1400,7 +1413,7 @@ "A ação não é suportada por esta infraestrutura.\n" "Por favor, relate este erro já que o mesmo não deveria ter acontecido." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1408,35 +1421,35 @@ "Ocorreu um problema inesperado.\n" "Por favor, relate este erro com a sua descrição." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Não foi possível realizar um relacionamento seguro de confiança com a fonte " "de software.\n" "Verifique as configurações de assinatura de software." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "O pacote que está tentando ser removido ou atualizado ainda não está " "instalado." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "O pacote que está sendo alterado não foi encontrado no seu sistema ou em " "qualquer fonte de software." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "O pacote que está tentando instalar já está instalado." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1444,7 +1457,7 @@ "Falha ao baixar o pacote.\n" "Verifique sua conexão de rede." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1452,17 +1465,17 @@ "O grupo não foi encontrado.\n" "Verifique sua lista de grupos e tente novamente." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "A lista de grupos não pôde ser carregada.\n" "Atualizar o cache pode ajudar, embora isto geralmente é um erro na fonte do " "software." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1470,11 +1483,11 @@ "Uma dependência de pacote não pôde ser encontrada.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "O filtro de pesquisa não foi formado corretamente." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1483,7 +1496,7 @@ "daemon do sistema.\n" "Isto normalmente indica um erro interno e deve ser relatado." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1491,23 +1504,23 @@ "Ocorreu um erro não especificado na transação.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "O nome da fonte de software remoto não foi encontrado.\n" "Pode ser necessário habilitar um item nas fontes de software." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Não é permitida a remoção de um pacote protegido do sistema." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "A tarefa foi cancelada com sucesso e nenhum pacote foi alterado." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1515,7 +1528,7 @@ "A tarefa foi cancelada com sucesso e nenhum pacote foi alterado.\n" "A infraestrutura não foi concluída corretamente." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1523,11 +1536,11 @@ "O arquivo de configuração do pacote nativo não pode ser aberto.\n" "Certifique-se de que a configuração é válida." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Não é seguro cancelar a tarefa neste momento." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1535,7 +1548,7 @@ "Pacotes de fontes normalmente não são instalados desta maneira.\n" "Verifique a extensão do arquivo que você está tentando instalar." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1543,34 +1556,34 @@ "O contrato de licença não foi aceito.\n" "Para usar este software você deve aceitar a licença." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Dois pacotes fornecem o mesmo arquivo.\n" "Isto normalmente é devido à mistura de pacotes para fontes de software " "diferentes." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Existem múltiplos pacotes que não são compatíveis entre si.\n" "Isto normalmente é devido à mistura de pacotes para fontes de softwares " "diferentes." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Houve um (possivelmente temporário) problema de conexão com a fonte de " "software.\n" "Verifique o erro detalhado para mais detalhes." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1579,7 +1592,7 @@ "Isto pode ocorrer se outras ferramentas de empacotamento estão sendo usadas " "simultaneamente." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1587,7 +1600,7 @@ "Falha ao encerrar a instância da infraestrutura.\n" "Normalmente, este erro pode ser ignorado." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1596,15 +1609,15 @@ "empacotamento.\n" "Feche todas as outras ferramentas de empacotamento que estejam abertas." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Nenhum dos pacotes selecionados pode ser atualizado." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "A configuração do repositório não pode ser alterada." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1612,11 +1625,11 @@ "Falha ao instalar o arquivo local.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "A assinatura do pacote não pode ser verificada." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1624,11 +1637,11 @@ "A assinatura do pacote está faltando e o pacote não é confiável.\n" "Este pacote não foi assinado com uma chave GPG quando criado." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "A configuração do repositório era inválida e não pode ser lida." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1636,7 +1649,7 @@ "O pacote que você está tentando instalar não é válido.\n" "Ele pode estar corrompido ou pode não ser um pacote." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1644,18 +1657,18 @@ "Instalação deste pacote foi impedida pela configuração do seu sistema de " "pacotes." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "O pacote baixado está corrompido e precisa ser baixado novamente." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" "Todos os pacotes selecionados para instalação já estão instalados no sistema." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1663,32 +1676,32 @@ "O arquivo especificado não pode ser localizado no sistema.\n" "Verifique se ele ainda existe e se não foi removido." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -"Os dados requeridos não puderam ser localizados em nenhuma das fontes de " +"Os dados necessários não puderam ser localizados em nenhuma das fontes de " "software configuradas.\n" -"Não há mais mirrors para se tentar." +"Não existem mais espelhos para se tentar." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -"Os dados de atualização requeridos não puderam ser encontrados em nenhuma " +"Os dados de atualização necessários não puderam ser encontrados em nenhuma " "das fontes de software configuradas.\n" "A lista de atualização da distribuição não estará disponível." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "O pacote que está tentando ser instalado é incompatível com este sistema." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1696,11 +1709,11 @@ "Não há espaço suficiente no dispositivo.\n" "Libere algum espaço no disco para executar esta operação." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Uma mídia adicional é necessária para completar a transação." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1708,7 +1721,7 @@ "Você não conseguiu fornecer uma autenticação correta.\n" "Verifique todas as senhas ou configurações de contas." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1718,28 +1731,28 @@ "Provavelmente ela já foi instalada ou não está mais disponível no servidor " "remoto." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "O pacote não pôde ser instalado de uma fonte não confiável." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "O pacote não pôde ser atualizado de uma fonte não confiável." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "A lista de arquivos não está disponível para este pacote." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" "Não foi possível obter as informações sobre quem necessita deste pacote." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "A fonte de software especificada não pôde ser desabilitada." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1748,7 +1761,7 @@ "manualmente.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1756,7 +1769,7 @@ "Não foi possível configurar corretamente um dos pacotes selecionados.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1764,7 +1777,7 @@ "Não foi possível compilar corretamente um dos pacotes selecionados.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1772,7 +1785,7 @@ "Não foi possível instalar corretamente um dos pacotes selecionados.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1780,7 +1793,7 @@ "Não foi possível remover corretamente um dos pacotes selecionados.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1788,239 +1801,239 @@ "Erro desconhecido, por favor, relate o erro.\n" "Mais informações estão disponíveis no relatório detalhado." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Acessibilidade" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" -msgstr "Acessórios" +msgstr "Complementos" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Educativos" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Jogos" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Gráficos" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Suíte de escritório" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Outro" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Desenvolvimento" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimídia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistema" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Ambiente de trabalho GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Ambiente de trabalho KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Ambiente de trabalho XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Outros ambientes de trabalho" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Editoração" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servidores" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Fontes" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Ferramentas administrativas" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Antigos" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Localização" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualização" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Segurança" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Gerenciamento de energia" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Comunicação" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Rede" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapas" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Fontes de software" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Ciência" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentação" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Eletrônica" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Coleções de pacotes" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Fabricante" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Pacotes novos" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Grupo desconhecido" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Atualização comum" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Atualização normal" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Atualização importante" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Atualização de segurança" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Atualização de correção" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Atualização de melhorias" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Atualização bloqueada" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Instalado" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Disponível" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Atualização desconhecida" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 atualização comum" msgstr[1] "%1 atualizações comuns" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2028,70 +2041,70 @@ msgstr[0] "1 atualização" msgstr[1] "%1 atualizações" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 atualização importante" msgstr[1] "%1 atualizações importantes" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 atualização de segurança" msgstr[1] "%1 atualizações de segurança" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 atualização de correção" msgstr[1] "%1 atualizações de correção" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 atualização de melhorias" msgstr[1] "%1 atualizações de melhorias" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 atualização bloqueada" msgstr[1] "%1 atualizações bloqueadas" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 pacote instalado" msgstr[1] "%1 pacotes instalados" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 pacote disponível" msgstr[1] "%1 pacotes disponíveis" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 atualização desconhecida" msgstr[1] "%1 atualizações desconhecidas" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 atualização comum selecionada" msgstr[1] "%1 atualizações comuns selecionadas" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2099,56 +2112,56 @@ msgstr[0] "1 atualização selecionada" msgstr[1] "%1 atualizações selecionadas" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 atualização importante selecionada" msgstr[1] "%1 atualizações importantes selecionadas" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 atualização de segurança selecionada" msgstr[1] "%1 atualizações de segurança selecionadas" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 atualização de correção selecionada" msgstr[1] "%1 atualizações de correção selecionadas" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 atualização de melhorias selecionada" msgstr[1] "%1 atualizações de melhorias selecionadas" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 pacote instalado selecionado para ser removido" msgstr[1] "%1 pacotes instalados selecionados para serem removidos" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 pacote disponível selecionado para ser instalado" msgstr[1] "%1 pacotes disponíveis selecionados para serem instalados" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 atualização comum" msgstr[1] "%1 atualizações comuns, %2 selecionada(s)" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2156,297 +2169,465 @@ msgstr[0] "%1 atualização" msgstr[1] "%1 atualizações, %2 selecionada(s)" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 atualização importante" msgstr[1] "%1 atualizações importantes, %2 selecionada(s)" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 atualização de segurança" msgstr[1] "%1 atualizações de segurança, %2 selecionada(s)" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 atualização de correção" msgstr[1] "%1 atualizações de correção, %2 selecionada(s)" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 atualização de melhorias" msgstr[1] "%1 atualizações de melhorias, %2 selecionada(s)" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 atualização bloqueada" msgstr[1] "%1 atualizações bloqueadas" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 pacote instalado" msgstr[1] "%1 pacotes instalados, %2 selecionado(s) para ser(em) removido(s)" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 pacote disponível" msgstr[1] "%1 pacotes disponíveis, %2 selecionado(s) para ser(em) instalado(s)" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 atualização desconhecida" msgstr[1] "%1 atualizações desconhecidas" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Não é necessário reiniciar" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Será solicitado a você reiniciar este aplicativo" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Será solicitado a você encerrar e iniciar a sessão novamente" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "A reinicialização será necessária" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "É necessário encerrar a sessão e reiniciá-la depois, devido a uma " "atualização de segurança." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" "É necessário reiniciar o sistema, devido a uma atualização de segurança." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Não é necessário reiniciar" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "A reinicialização é necessária" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Você precisa encerrar e iniciar a sessão" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Você precisa reiniciar o aplicativo" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "" "Você precisa encerrar a sessão e reiniciá-la depois para permanecer seguro." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "É necessário reiniciar o sistema para permanecer seguro." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Estável" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Instável" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Em teste" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Insira o CD chamado '%1' e pressione continuar." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Insira o DVD chamado '%1' e pressione continuar." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Insira o disco chamado '%1' e pressione continuar." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Insira a mídia chamada '%1' e pressione continuar." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Um mirror está possivelmente quebrado" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "A conexão foi recusada" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "O parâmetro é inválido" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "A prioridade é inválida" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Aviso da infraestrutura" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Aviso do daemon" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "O cache da lista de pacotes está sendo reconstruído" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Um pacote não confiável foi instalado" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Existe um pacote mais recente" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Não foi possível encontrar o pacote" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Os arquivos de configuração foram alterados" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "O pacote já está instalado" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "A limpeza automática será ignorada" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "Falha ao baixar o código-fonte do programa" +msgstr "Falha ao baixar o código fonte do programa" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Você não tem os privilégios necessários para executar esta ação." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "Não foi possível obter um ID de transação a partir do packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Não é possível conectar a este ID de transação." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Esta ação é desconhecida." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Não foi possível iniciar o serviço packagekitd." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "A pesquisa não é válida." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "O arquivo não é válido." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Esta função ainda não é suportada." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Não foi possível comunicar-se com o packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Ocorreu um erro desconhecido." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorar" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                    • %2
                                                    Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                    • %2
                                                    Do you want to search " +"for these now?" +msgstr[0] "" +"O seguinte arquivo é requerido:
                                                    • %2
                                                    Do you want to search " +"for this now?" +msgstr[1] "" +"The following files are required:
                                                    • %2
                                                    Do you want to search " +"for these now?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Um programa quer instalar um arquivo" +msgstr[1] "Um programa quer instalar arquivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 quer instalar um arquivo" +msgstr[1] "%2 quer instalar arquivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Falha ao iniciar a transação de pesquisa de arquivo" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "não concorda com a pesquisa" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "O pacote %1 já fornece este arquivo" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Falha ao instalar o arquivo" +msgstr[1] "Falha ao instalar os arquivos" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "O seguinte pacote será instalado" +msgstr[1] "Os seguintes pacotes serão instalados" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "O arquivo não pôde ser encontrado em nenhum pacote" +msgstr[1] "Os arquivos não puderam ser encontrados em nenhum pacote" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Falha ao encontrar pacote" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Você tem %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                                    And another update" msgid_plural "
                                                    And %1 more updates" msgstr[0] "
                                                    E outra atualização" msgstr[1] "
                                                    E mais %1 atualizações" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Revisar e atualizar" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Agora não" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Não perguntar novamente" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "As atualizações estão sendo instaladas automaticamente." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "As atualizações de segurança estão sendo instaladas automaticamente." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "A atualização do sistema foi concluída com sucesso." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Falha na atualização do software." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "O seguinte arquivo é necessário:" +msgstr[1] "Os seguintes arquivos são necessários:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Você quer pesquisar por ele agora?" +msgstr[1] "Você quer pesquisar por eles agora?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 quer instalar um arquivo" +msgstr[1] "%1 quer instalar arquivos" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Iniciar a atualização agora" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "A atualização da distribuição foi concluída. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Falha ao iniciar a transação de resolução" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "O usuário cancelou a transação" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Ocorreu um erro desconhecido" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                                    • %2
                                                    Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                    • %2
                                                    Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Um pacote adicional é necessário:
                                                    • %2
                                                    Você quer pesquisar e " +"instalar este pacote agora?" +msgstr[1] "" +"Pacotes adicionais são necessários:
                                                    • %2
                                                    Você quer pesquisar " +"e instalar estes pacotes agora?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Um programa quer instalar um pacote" +msgstr[1] "Um programa quer instalar pacotes" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 quer instalar um pacote" +msgstr[1] "%2 quer instalar pacotes" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "O pacote %2 já está instalado" +msgstr[1] "Os pacotes %2 já estão instalados" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Falha ao instalar os pacotes" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "A transação não foi concluída com sucesso" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "O pacote não foi encontrado em nenhuma fonte de software" +msgstr[1] "Os pacotes não foram encontrados em nenhuma fonte de software" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Não foi possível encontrar %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2471,230 +2652,432 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt e outras coisas" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Transações" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Um programa adicional é necessário para abrir este tipo de arquivo:
                                                    %" +"1
                                                    Você quer pesquisar por um programa que abra este tipo de arquivo " +"agora?" +msgstr[1] "" +"Um programa adicional é necessário para abrir este tipo de arquivo:
                                                    %" +"1
                                                    Você quer pesquisar por um programa que abra este tipo de arquivo " +"agora?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Um programa quer instalar uma fonte" +msgstr[1] "Um programa quer instalar fontes" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 quer instalar um arquivo" +msgstr[1] "%2 quer instalar arquivos" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Pesquisar" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Falha ao pesquisar por fabricante" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplicativo que pode abrir este tipo de arquivo" +msgstr[1] "Aplicativos que podem abrir este tipo de arquivo" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "Nenhuma nova fonte pôde ser encontrada para este documento" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Falha ao procurar a fonte" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Este item não é suportado pela sua infraestrutura ou não é um arquivo." +msgstr[1] "" +"Estes itens não são suportados pela sua infraestrutura ou não são arquivos." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Não foi possível instalar" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Você quer instalar este arquivo?" +msgstr[1] "Você quer instalar estes arquivos?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Instalar?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "O arquivo não foi instalado" +msgstr[1] "Os arquivos não foram instalados" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "O arquivo foi instalado com sucesso" +msgstr[1] "Os arquivos foram instalados com sucesso" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Ocorreu um erro." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                    • %2
                                                    Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                    • %2
                                                    Do you want to " +"search for these now?" +msgstr[0] "" +"O seguinte plug-in é necessário:
                                                    • %2
                                                    Você quer pesquisar por " +"ele agora?" +msgstr[1] "" +"Os seguintes plug-ins são necessário:
                                                    • %2
                                                    Você quer " +"pesquisar por eles agora?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Um programa necessita de um plug-in adicional para decodificar este arquivo" +msgstr[1] "" +"Um programa necessita de plug-ins adicionais para decodificar este arquivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Um programa necessita de um plug-in adicional para codificar este arquivo" +msgstr[1] "" +"Um programa necessita de plug-ins adicionais para codificar este arquivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Um programa necessita de um plug-in adicional para esta operação" +msgstr[1] "Um programa necessita de plug-ins adicionais para esta operação" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 necessita de um plug-in adicional para decodificar este arquivo" +msgstr[1] "%2 necessita de plug-ins adicionais para decodificar este arquivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 necessita de um plug-in adicional para codificar este arquivo" +msgstr[1] "%2 necessita de plug-ins adicionais para codificar este arquivo" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 necessita de um plug-in adicional para esta operação" +msgstr[1] "%2 necessita de plug-ins adicionais para esta operação" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Você quer instalar este pacote agora?" +msgstr[1] "Você quer instalar estes pacotes agora?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" +"Não foi possível encontrar o plug-in em nenhuma fonte de software configurada" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Falha ao pesquisar por plug-in" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "O nome do arquivo não pôde ser encontrado em nenhuma fonte de software" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Transações" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Atualizar a lista de pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Exibir mensagens" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Ocultar este ícone" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Pacote: %1" -msgstr[1] "Pacotes: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Pacote: %2" +msgstr[1] "Pacotes: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Uma mensagem do gerenciador de pacotes" msgstr[1] "%1 mensagens do gerenciador de pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "A atualização do sistema foi concluída" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Reiniciar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Agora não" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Encerrar a sessão" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Mensagens do gerenciador de pacotes" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Mensagem" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Configurações do KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "De hora em hora" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Diariamente" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Semanalmente" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Mensalmente" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nunca" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Somente as atualizações de segurança" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Todas as atualizações" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Nenhuma" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Você não tem os privilégios necessários para executar esta ação." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Falha ao configurar a fonte dos dados" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "O seguinte arquivo é necessário:" -msgstr[1] "Os seguintes arquivos são necessários:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Deseja pesquisar por ele agora?" -msgstr[1] "Deseja pesquisar por eles agora?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Um programa quer instalar um arquivo" -msgstr[1] "Um programa quer instalar arquivos" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 quer instalar um arquivo" -msgstr[1] "%1 quer instalar arquivos" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Falha ao iniciar a transação de pesquisa de arquivo" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "O pacote %1 já fornece este arquivo" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "O seguinte pacote será instalado" -msgstr[1] "Os seguintes pacotes serão instalados" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "O arquivo não pôde ser encontrado em nenhum pacote" -msgstr[1] "Os arquivos não puderam ser encontrados em nenhum pacote" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Falha ao encontrar pacote" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Um programa quer remover um arquivo" msgstr[1] "Um programa quer remover arquivos" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 quer remover um arquivo" -msgstr[1] "%1 quer remover arquivos" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 quer remover um arquivo" +msgstr[1] "%2 quer remover arquivos" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "O seguinte arquivo será removido:" msgstr[1] "Os seguintes arquivos serão removidos:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" "Do you want to search for packages containing these files and remove them " "now?" msgstr[0] "" -"Deseja pesquisar por pacotes contendo este arquivo e removê-lo agora?" +"Você quer pesquisar por pacotes contendo este arquivo e removê-lo agora?" msgstr[1] "" -"Deseja pesquisar por pacotes contendo estes arquivos e removê-los agora?" +"Você quer pesquisar por pacotes contendo estes arquivos e removê-los agora?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Pesquisar" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "O seguinte pacote será removido" msgstr[1] "Os seguintes pacotes serão removidos" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "Não foi possível encontrar o arquivo em nenhum pacote instalado" msgstr[1] "Não foi possível encontrar os arquivos em nenhum pacote instalado" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "Não foi possível encontrar %1" +msgid "" +"An additional program is required to open this type of file:
                                                    • %1
                                                    • Do you want to search for a program to open this file type now?" +msgstr "" +"Um programa adicional é necessário para abrir este tipo de arquivo:
                                                      • %" +"1
                                                      Você quer pesquisar por um programa para abrir este tipo de " +"arquivo agora?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Um programa necessita de um novo tipo MIME" +msgstr[1] "Um programa necessita de novos tipos MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 necessita de um novo tipo MIME" +msgstr[1] "%2 necessita de novos tipo MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Pesquisar" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" +"Nenhum aplicativo novo pode ser encontrado para lidar com este tipo de " +"arquivo" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Falha na pesquisa pelo software" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                                      Do you want to install this catalog?

                                                      • %2
                                                      " +msgid_plural "" +"

                                                      Do you want to install these catalogs?

                                                      • %2
                                                      " +msgstr[0] "

                                                      Você quer instalar este catálogo?

                                                      • %2
                                                      " +msgstr[1] "

                                                      Você quer instalar estes catálogos?

                                                      • %2
                                                      " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instalar catálogo" +msgstr[1] "Instalar catálogos" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instalar" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Sua infraestrutura não suporta quaisquer dos métodos necessários para " +"instalar um catálogo" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Não suportado" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Falha ao abrir o catálogo %2" +msgstr[1] "Falha ao abrir os catálogos %2" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Falha ao abrir" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "Nenhum pacote foi encontrado para ser instalado" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Falha ao iniciar a transação de configuração" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Configurações do KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "De hora em hora" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Diariamente" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Semanalmente" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Mensalmente" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nunca" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Somente as atualizações de segurança" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Todas as atualizações" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Nenhuma" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Falha ao configurar a fonte dos dados" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2732,142 +3115,6 @@ msgid "Package file to install" msgstr "Arquivo de pacote a instalar" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Este item não é suportado pela sua infraestrutura ou não é um arquivo." -msgstr[1] "" -"Estes itens não são suportados pela sua infraestrutura ou não são arquivos." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Não foi possível instalar" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Deseja instalar este arquivo?" -msgstr[1] "Deseja instalar estes arquivos?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Instalar?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "O arquivo não foi instalado" -msgstr[1] "Os arquivos não foram instalados" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Falha ao instalar o arquivo" -msgstr[1] "Falha ao instalar os arquivos" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "O arquivo foi instalado com sucesso" -msgstr[1] "Os arquivos foram instalados com sucesso" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Ocorreu um erro." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "É necessário um pacote adicional:" -msgstr[1] "São necessários pacotes adicionais:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Deseja pesquisar e instalar este pacote agora?" -msgstr[1] "Deseja pesquisar e instalar estes pacotes agora?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Um programa quer instalar um pacote" -msgstr[1] "Um programa quer instalar pacotes" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 quer instalar um pacote" -msgstr[1] "%1 quer instalar pacotes" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalar" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Falha ao iniciar a transação de resolução" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "O pacote não foi encontrado em nenhuma fonte de software" -msgstr[1] "Os pacotes não foram encontrados em nenhuma fonte de software" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                      %1
                                                      Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Um programa adicional é necessário para abrir este tipo de arquivo:
                                                      %" -"1
                                                      Deseja pesquisar por um programa que abra este tipo de arquivo agora?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Um programa requer um novo tipo MIME" -msgstr[1] "Um programa requer novos tipos MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 requer um novo tipo MIME" -msgstr[1] "%1 requer novos tipo MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Pesquisar" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Falha ao pesquisar por fabricante" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplicativo que pode abrir este tipo de arquivo" -msgstr[1] "Aplicativos que podem abrir este tipo de arquivo" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" -"Nenhum aplicativo novo pode ser encontrado para lidar com este tipo de " -"arquivo" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Falha na pesquisa pelo software" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2878,19 +3125,19 @@ msgid "Your emails" msgstr "elchevive@opensuse.org, andrealvarenga@gmx.net" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Selecionar todas as atualizações" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Atualizar" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2928,388 +3175,390 @@ msgid "Required by" msgstr "Necessário por" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Adicionar e remover software" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Pesquisar pacotes" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtros" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Todos os pacotes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - transação" +msgid "Transaction" +msgstr "Transação" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ícone" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Baixando pacotes" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Uma biblioteca a fazer do foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "São necessárias alterações adicionais para concluir a tarefa" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Ações" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Nome do repositório:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL da assinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identificador do usuário da assinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificador da assinatura:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Você reconhece o usuário e confia na chave dele?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Você confia na fonte dos pacotes?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Leia a seguinte informação importante antes de continuar:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Configurações" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Configurações do KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Verificar por atualizações:" +msgid "Update settings" +msgstr "Configurações da atualização" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Instalar automaticamente:" +msgid "Check for updates:" +msgstr "Verificar por atualizações:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Ícone da área de notificação inteligente" +msgid "Automatically install:" +msgstr "Instalar automaticamente:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Notificar quando as atualizações estiverem disponíveis" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Notificar quando uma tarefa longa for concluída" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "Fonte dos pacotes" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" -msgstr "Exibir as origen&s de pacotes de depuração e desenvolvimento" +msgstr "Exibir as fonte&s de pacotes de depuração e desenvolvimento" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Sobre a infraestrutura" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Nome da infraestrutura:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "nome da infraestrutura aqui" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Autor da infraestrutura:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Descrição da infraestrutura" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "nome do autor da infraestrutura aqui" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "descrição da infraestrutura aqui" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "O pacote é visível" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Mais recente" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Interface gráfica" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Software livre" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Suportado" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Métodos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Obter atualizações" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Atualizar pacote" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Obter lista de repositório" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Atualizar cache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Instalar pacote" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Habilitar repositório" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Atualizar sistema" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Remover pacote" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Habilitar repositório" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Pesquisar nome" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Obter dependências" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "O que fornece" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Pesquisar detalhes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Obter requisitos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Obter pacotes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Pesquisar grupos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Obter detalhes da atualização" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Pesquisar arquivo" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Obter descrição" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Obter arquivos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resolver" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Instalar arquivo" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "Simular a instalação de arquivos" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "Simular a instalação de pacotes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "Simular a remoção de pacotes" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "Simular a atualização de pacotes" diff -Nru kpackagekit-0.5.4/po/ro/kpackagekit.po kpackagekit-0.6.0/po/ro/kpackagekit.po --- kpackagekit-0.5.4/po/ro/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/ro/kpackagekit.po 2010-01-30 09:03:41.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-09-20 20:04+0300\n" "Last-Translator: Sergiu Bivol \n" "Language-Team: Română \n" @@ -28,11 +28,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detalii" @@ -96,20 +96,20 @@ "Este recomandat să păstrați calculatorul conectat la alimentare pe parcursul " "procesului de actualizare." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Actualizarea distribuției s-a încheiat." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Procesul de actualizare a distribuției a ieșit cu codul %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Pornirea procesului de actualizare a distribuției a eșuat." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -117,7 +117,7 @@ "Procesul de actualizare a disctribuției a eșuat la puțin timp de la pornirea " "reușită." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Procesul de acualizare a distribuției a eșuat cu o eroare necunoscută." @@ -197,28 +197,24 @@ msgid "Time since last cache refresh: %1" msgstr "Durata de la ultima actualizare cache: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Denumire pachet" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Pagină de pornire" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licență" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grup" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Pagină de pornire" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Dimensiune" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Niciun fișier găsit." @@ -230,19 +226,19 @@ msgid "KDE interface for managing software" msgstr "Interfață KDE pentru gestiunea programelor" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Caută" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Toate pachetele" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Lista modificărilor" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" @@ -250,218 +246,231 @@ msgstr[1] "Grupuri:" msgstr[2] "Grupuri:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Renunță" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Caută după de&numire" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Găsește după denum&ire" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Găsește după &descriere" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Revizuiește modificările" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Colecții" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Numai colecții" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Exclude colecțiile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Instalate" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Numai instalate" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Numai disponibile" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Niciun filtru" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Dezvoltare" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Numai dezvoltare" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafic" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Numai grafic" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Numai textual" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Liber" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Numai programe libere" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Numai programe non-libere" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arhitecturi" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Numai arhitecturi native" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Numai arhitecturi non-native" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Sursă" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Numai cod-sursă" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Numai non-cod sursă" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Ascunde subpachete" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Arată numai un pachet, nu subpachete" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Numai cele mai noi pachete" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Arată numai cel mai nou pachet disponibil" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Vizualizare în grupuri" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Afișează pachetele în grupuri potrivit stării" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Următorul pachet va fi instalat:" msgstr[1] "Următoarele pachete vor fi instalate:" msgstr[2] "Următoarele pachete vor fi instalate:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Instalează acum" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Următorul pachet va fi eliminat:" msgstr[1] "Următoarele pachete vor fi eliminate:" msgstr[2] "Următoarele pachete vor fi eliminate:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Elimină acum" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Următorul pachet va fi eliminat și instalat:" msgstr[1] "Următoarele pachete vor fi eliminate și instalate:" msgstr[2] "Următoarele pachete vor fi eliminate și instalate:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Aplică acum" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Eșec la actualizarea listelor de pachete" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Platforma curentă nu susține eliminarea pachetelor." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Eroare KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Eșec la actualizarea listelor de pachete" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Platforma curentă nu susține instalarea pachetelor." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Eșec la eliminarea pachetului" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Eșec la instalarea pachetului" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Eșec la eliminarea pachetului" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Ascunde" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Vă permite să ascundeți fereastra, păstrînd sarcina tranzacției în rulare." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                                                      Installing unsigned packages can compromise your system, as it is " @@ -476,11 +485,11 @@ "este imposibil de verificat dacă programele provin dintr-o sursă de " "încredere. Sigur doriți să continuați instalarea?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Instalare programe nesemnate" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Este necesară o schimbare a mediului" @@ -500,7 +509,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Acord de licență necesar" @@ -513,13 +522,13 @@ msgid "Version" msgstr "Versiune" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Renunță" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Încheiat în %1." @@ -576,551 +585,670 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Este necesară semnătura programului" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Stare necunoscută" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Aștept pornirea serviciului" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Aștept alte sarcini" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Rulare sarcină" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Interogare" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Obținere informații" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Eliminare pachete" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Descărcare pachete" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Instalare pachete" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Reîmprospătare listă cu programe" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Actualizare pachete" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Curățare pachete" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Învechire pachete" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Rezolvare dependențe" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Verificare semnături" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Revenire" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Testare modificări" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Aplicare modificări" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Cerere date" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Terminat" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Renunțare" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Descărcare informații depozit" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Descărcare listă cu pachete" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Descărcare liste cu fișiere" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Descărcare liste cu modificări" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Descărcare grupuri" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Descărcare informații despre actualizare" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Reîmpachetare fișiere" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Încărcare cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Căutare aplicații instalate" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generare liste de pachete" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Se așteaptă blocajul gestionarului de pachete" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for authentication" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Se așteaptă autentificarea" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating the list of running applications" +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Se actualizează lista aplicațiilor ce rulează" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for applications currently in use" +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "Se verifică după aplicații în uz" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for libraries currently in use" +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Se verifică după biblioteci în uz" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Reîmpachetare fișiere" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Descărcat" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Actualizat" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Instalat" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Eliminat" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Curățat" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Învechit" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Tip de rol necunoscut" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Obținere dependențe" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Obținere detalii actualizare" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Obținere detalii" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Obținere cerințe" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Obținere actualizări" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Căutare detalii" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Căutare fișier" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Căutare grupuri" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Căutare după denumire pachet" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Eliminare" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Instalare" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Instalare fișier" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Reîmprospătare cache pachete" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Actualizare pachete" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Actualizare sistem" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Renunțare" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Revenire" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Obținere listă de depozite" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Activare depozit" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Stabilire date depozit" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Rezolvare" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Obținere listă de fișiere" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Obținere ce oferă" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Instalare semnătură" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Obținere liste de pachete" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Acceptare ALUF" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Descărcare pachete" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Obținere informații de actualizare a distribuției" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Obținere categorii" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Obținere tranzacții vechi" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Se simulează instalarea fișierelor" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Se simulează instalarea" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Se simulează eliminarea" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Se simulează actualizarea" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Tip de rol necunoscut" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Dependențe obținute" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Detalii actualizare obținute" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Detalii obținute" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Cerințe obținute" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Actualizări obținute" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Căutat detalii pachet" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Căutat fișier" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Căutat grupuri" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Căutat denumire pachet" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Eliminat pachete" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Instalat pachete" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Instalat fișiere locale" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Înnoit cache pachete" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Actualizat pachete" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Actualizat sistem" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Anulat" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Revenit" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Obținut listă de depozite" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Activat depozit" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Stabilit date depozit" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Rezolvat" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Obținut listă de fișiere" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Obținut ce oferă" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Instalat semnătură" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Obținut liste de pachete" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Acceptat ALUF" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Descărcat pachete" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Obținut actualizări distribuție" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Obținut categorii" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Obținut tranzacții vechi" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1128,273 +1256,279 @@ msgid "Simulated the install of files" msgstr "Eșec la instalarea fișierului" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Simulat instalarea" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Simulat eliminarea" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Simulat actualizarea" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Nicio conexiune de rețea disponibilă" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Nu este disponibil niciun cache al pachetelor" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Memorie insuficientă" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Eșec la crearea unui fir" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Nesusținut de această platformă" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "A intervenit o eroare internă a sistemului" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Nu este prezentă o relație de încredere de securitate" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Pachetul nu este instalat" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Pachetul nu a fost găsit" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Pachetul este instalat deja" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Descărcarea pachetului a eșuat" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Grupul nu a fost găsit" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Lista grupurilor nu era validă" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Rezoluția dependențelor a eșuat" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Filtrul de căutare nu era valid" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Identificatorul pachetului nu era format corect" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Eroare tranzacție" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Denumirea depozitului nu a fost găsită" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Nu s-a putut elimina un pachet de sistem protejat" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Sarcina a fost anulată" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Sarcina a fost anulată forțat" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Citirea fișierului de configurare a eșuat" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Sarcina nu poate fi anulată" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Pachetele sursă nu pot fi instalate" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Acordul de licență a eșuat" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Conflict de fișier local între pachete" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Pachetele nu sînt compatibile" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "Problemă la conectarea la o sursă de programe" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Eșec la inițializare" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Eșec la finalizare" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Nu pot obține blocarea" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Niciun pachet de actualizat" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Configurarea depozitului nu poate fi scrisă" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Instalarea locală a eșuat" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Semnătură GPG greșită" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Semnătură GPG lipsă" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Configurare depozit nevalidă" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Fișier-pachet nevalid" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Instalare pachet blocată" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Pachetul este corupt" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Toate pachetele sînt instalate deja" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Fișierul specificat nu a fost găsit" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Nu mai sînt oglinzi disponibile" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Nu sînt disponibile date de actualizare a distribuției" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Pachetul este incompatibil cu acest sistem" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Nu a mai rămas spațiu pe disc" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Autorizare eșuată" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Actualizarea nu a fost găsită" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot install from untrusted origin" +msgstr "Pachetul nu a putut fi găsit în nicio sursă software" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot update from untrusted origin" +msgstr "Pachetul nu a putut fi găsit în nicio sursă software" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Lista fișierelor nu poate fi obținută" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "An additional package is required:" #| msgid_plural "Additional packages are required:" msgid "Cannot get package requires" msgstr "Este necesar un pachet suplimentar:" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "Descărcarea pachetului a eșuat" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "Fișierul cu pachet de instalat" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "Fișierul cu pachet de instalat" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "Fișierul cu pachet de instalat" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "Fișierul cu pachet de instalat" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Eroare necunoscută" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1402,7 +1536,7 @@ "Nu este disponibilă nicio conexiune la rețea.\n" "Verificați configurările conexiunii și reîncercați" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1410,7 +1544,7 @@ "Lista de pachete trebuie reconstruită.\n" "Acest lucru trebuia să fi fost făcut automat de către platformă." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1420,11 +1554,11 @@ "memorie.\n" "Închideți unele programe sau reporniți calculatorul." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Nu s-a putut crea un fir pentru a servi cererea utilizatorului." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1432,7 +1566,7 @@ "Acțiunea nu este susținută de această platformă.\n" "Raportați o eroare, întrucît aceasta nu trebuia să se întîmple." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1440,35 +1574,35 @@ "A intervenit o problemă neprevăzută.\n" "Raportați această eroare împreună cu descrierea sa." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Pachetul care se încearcă a fi eliminat sau actualizat nu este instalat încă." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Pachetul în curs de modificare nu a fost găsit pe sistemul dumneavoastră sau " "într-o sursă software." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Pachetul care se încearcă a fi instalat este instalat deja." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1476,7 +1610,7 @@ "Descărcarea pachetului a eșuat.\n" "Verificați conexiunea la rețea." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1484,7 +1618,7 @@ "Tipul grupului nu a fost găsit.\n" "Verificați lista de grupuri și reîncercați." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1492,14 +1626,14 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Lista de grupuri nu a putut fi încărcată.\n" "Reîmprospătarea cache-ului poate să ajute, cu toate că de obicei aceasta " "este o eroare cu sursa software." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1507,11 +1641,11 @@ "O dependență a pachetului n a putut fi găsită.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Filtrul de căutare nu a fost format corect." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1520,7 +1654,7 @@ "de sistem.\n" "De obicei, aceasta indică o defecțiune internă ce trebuie raportată." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1528,27 +1662,27 @@ "În timpul derulării tranzacției a intervenit o eroare.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Sursa software distantă nu a fost găsită.\n" "Poate fi nevoie să activați un element în Surse software." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Eliminarea unui pachet de sistem protejat nu este permisă." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Sarcina a fost anulată cu succes și nu a fost modificat niciun pachet." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1556,17 +1690,17 @@ "Sarcina a fost anulată cu succes și nu a fost modificat niciun pachet.\n" "Platforma nu a ieșit curat." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Sarcina nu poate fi anulată în siguranță în acest moment." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1574,7 +1708,7 @@ "De obicei, pachetele-sursă nu se instalează în acest mod.\n" "Verificați extensia fișierului pe care încercați să-l instalați." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1582,73 +1716,73 @@ "Acordul de licență nu a fost acceptat.\n" "Utilizarea acestui program necesită acceptarea licenței." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Două pachete furnizează același fișier.\n" "De obicei, aceasta se datorează amestecării pachetelor din diferite surse " "software." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Există mai multe pachete care nu sînt intercompatibile.\n" "De obicei, aceasta se datorează amestecării pachetelor din diferite surse " "software." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software " #| "source.\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "În timpul conectării la sursa software a intervenit o problemă (posibil " "temporară).\n" "Verificați eroarea detaliată pentru informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." msgstr "" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." msgstr "" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." msgstr "" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Niciunul din pachetele alese nu a putut fi actualizat." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Configurația depozitului nu a putut fi modificată." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1656,11 +1790,11 @@ "Instalarea fișierului local a eșuat.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Semnătura pachetului nu a putut fi verificată." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1668,11 +1802,11 @@ "Semnătura pachetului lipsea și pachetul nu este de încredere.\n" "Acest pachet nu a fost semnat cu o cheie GPG la creare." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Configurația depozitelor era greșită și nu a putut fi citită." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1680,7 +1814,7 @@ "Pachetul pe care încercați să-l instalați nu este valid.\n" "Fișierul pachetului poate fi deteriorat, sau nu este un pachet corespunzător." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1688,17 +1822,17 @@ "Instalarea acestui pachet a fost împiedicată de configurația sistemului de " "pachete." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Pachetul ce a fost descărcat este corupt și trebuie descărcat din nou." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Toate pachetele alese pentru instalare sînt instalate deja în sistem." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1706,26 +1840,26 @@ "Fișierul specificat nu a putut fi găsit în sistem.\n" "Verificați dacă fișierul există și nu a fost șters." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "Pachetul care se încearcă a fi instalat nu este compatibil cu acest sistem." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1734,55 +1868,55 @@ "Pentru a îndeplini această operațiune, eliberați niște spațiu pe discul " "sistemului." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Pentru încheierea tranzacției este necesar un mediu suplimentar." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "Pachetul nu a putut fi găsit în nicio sursă software" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "Pachetul nu a putut fi găsit în nicio sursă software" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The file could not be found in any packages" #| msgid_plural "The files could not be found in any packages" msgid "The file list is not available for this package." msgstr "Fișierul nu a fost găsit în niciun pachet" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "Fișierul specificat nu a fost găsit" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -1794,7 +1928,7 @@ "O dependență a pachetului n a putut fi găsită.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1806,7 +1940,7 @@ "Instalarea fișierului local a eșuat.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1818,7 +1952,7 @@ "Instalarea fișierului local a eșuat.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1830,7 +1964,7 @@ "Instalarea fișierului local a eșuat.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1842,7 +1976,7 @@ "Instalarea fișierului local a eșuat.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1850,232 +1984,232 @@ "Eroare necunoscută, raportați o defecțiune.\n" "În raportul detaliat sînt disponibile informații suplimentare." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Accesibilitate" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Accesorii" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Educație" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Jocuri" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafică" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Birou" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Altele" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Dezvoltare" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistem" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Biroul GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Biroul KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Biroul XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Alte birouri" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Editare" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servere" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Fonturi" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Unelte de administrare" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Depășite" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Traducere" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualizare" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Securitate" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Gestiunea alimentării" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Comunicații" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Rețea" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Hărți" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Surse software" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Știință" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Documentație" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Electronică" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Colecții de pachete" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Vînzător" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Cele mai noi pachete" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Grup necunoscut" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Actualizare trivială" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Actualizare normală" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Actualizare importantă" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Actualizare de securitate" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Corecție de erori" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Actualizare de îmbunătățire" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Actualizare blocată" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Instalat" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Disponibil" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Actualizare necunosctută" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" @@ -2083,7 +2217,7 @@ msgstr[1] "%1 actualizări triviale" msgstr[2] "%1 de actualizări triviale" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2092,7 +2226,7 @@ msgstr[1] "%1 actualizări" msgstr[2] "%1 de actualizări" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" @@ -2100,7 +2234,7 @@ msgstr[1] "%1 actualizări importante" msgstr[2] "%1 de actualizări importante" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" @@ -2108,7 +2242,7 @@ msgstr[1] "%1 actualizări de securitate" msgstr[2] "%1 de actualizări de securitate" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" @@ -2116,7 +2250,7 @@ msgstr[1] "%1 corecții de erori" msgstr[2] "%1 de corecții de erori" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" @@ -2124,7 +2258,7 @@ msgstr[1] "%1 îmbunătățiri" msgstr[2] "%1 de îmbunătățiri" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" @@ -2132,7 +2266,7 @@ msgstr[1] "%1 actualizări blocate" msgstr[2] "%1 de actualizări blocate" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" @@ -2140,7 +2274,7 @@ msgstr[1] "%1 pachete instalate" msgstr[2] "%1 de pachete instalate" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" @@ -2148,7 +2282,7 @@ msgstr[1] "%1 pachete disponibile" msgstr[2] "%1 de pachete disponibile" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" @@ -2156,7 +2290,7 @@ msgstr[1] "%1 de actualizări necunoscute" msgstr[2] "%1 actualizări necunoscute" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" @@ -2164,7 +2298,7 @@ msgstr[1] "%1 actualizări triviale alese" msgstr[2] "%1 de actualizări triviale alese" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2173,7 +2307,7 @@ msgstr[1] "%1 actualizări alese" msgstr[2] "%1 de actualizări alese" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" @@ -2181,7 +2315,7 @@ msgstr[1] "%1 actualizări importante alese" msgstr[2] "%1 de actualizări importante alese" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" @@ -2189,7 +2323,7 @@ msgstr[1] "%1 actualizări de securitate alese" msgstr[2] "%1 de actualizări de securitate alese" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" @@ -2197,7 +2331,7 @@ msgstr[1] "%1 corecții de erori alese" msgstr[2] "%1 de corecții de erori alese" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" @@ -2205,7 +2339,7 @@ msgstr[1] "%1 îmbunătățiri alese" msgstr[2] "%1 de îmbunătățiri alese" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" @@ -2213,7 +2347,7 @@ msgstr[1] "%1 pachete instalate alese pentru a fi eliminate" msgstr[2] "%1 de pachete instalate alese pentru a fi eliminate" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" @@ -2221,7 +2355,7 @@ msgstr[1] "%1 pachete disponibile alese pentru a fi instalate" msgstr[2] "%1 de pachete disponibile alese pentru a fi instalate" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" @@ -2229,7 +2363,7 @@ msgstr[1] "%1 actualizări triviale, %2 alese" msgstr[2] "%1 de actualizări triviale, %2 alese" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2238,7 +2372,7 @@ msgstr[1] "%1 actualizări, %2 alese" msgstr[2] "%1 de actualizări, %2 alese" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" @@ -2246,7 +2380,7 @@ msgstr[1] "%1 actualizări importante, %2 alese" msgstr[2] "%1 de actualizări importante, %2 alese" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" @@ -2254,7 +2388,7 @@ msgstr[1] "%1 actualizări de securitate, %2 alese" msgstr[2] "%1 de actualizări de securitate, %2 alese" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" @@ -2262,7 +2396,7 @@ msgstr[1] "%1 corecții de erori, %2 alese" msgstr[2] "%1 de corecții de erori, %2 alese" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" @@ -2270,7 +2404,7 @@ msgstr[1] "%1 îmbunătățiri, %2 alese" msgstr[2] "%1 de îmbunătățiri, %2 alese" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" @@ -2278,7 +2412,7 @@ msgstr[1] "%1 actualizări blocate" msgstr[2] "%1 de actualizări blocate" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" @@ -2286,7 +2420,7 @@ msgstr[1] "%1 pachete instalate, %2 alese pentru a fi eliminate" msgstr[2] "%1 de pachete instalate, %2 alese pentru a fi eliminate" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" @@ -2294,7 +2428,7 @@ msgstr[1] "%1 pachete disponibile, %2 alese pentru a fi instalate" msgstr[2] "%1 de pachete disponibile, %2 alese pentru a fi instalate" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" @@ -2302,263 +2436,449 @@ msgstr[1] "%1 actualizări necunoscute" msgstr[2] "%1 de actualizări necunoscute" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Nu este necesară o repornire" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Va trebui să reporniți această aplicație" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Va trebui să vă reautentificați" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Va fi necesară o repornire" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log off and back on after this update" msgid "You will be required to log out and back in due to a security update." msgstr "După această actualizare va trebui să vă reautentificați" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "A restart will be required" msgid "A restart will be required due to a security update." msgstr "Va fi necesară o repornire" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Repornirea nu este necesară" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Este necesară o repornire" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Trebuie să vă reautentificați" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Trebuie să reporniți aplicația" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You need to log out and log back in" msgid "You need to log out and log back in to remain secure." msgstr "Trebuie să vă reautentificați" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "A restart is required" msgid "A restart is required to remain secure." msgstr "Este necesară o repornire" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabil" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Instabil" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testare" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Introduceți CD-ul cu eticheta „%1” și apăsați Continuă." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Introduceți DVD-ul cu eticheta „%1” și apăsați Continuă." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Introduceți discul cu eticheta „%1” și apăsați Continuă." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Introduceți mediul cu eticheta „%1” și apăsați Continuă." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "O oglindă este probabil deteriorată" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Conexiunea a fost refuzată" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parametrul nu era valid" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Prioritatea nu era validă" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Avertizare platformă" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Avertizare demon" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Cache-ul listei de pachete este reconstruit" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "A fost instalat un pachet fără încredere" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Există un pachet mai nou" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Pachetul nu a putut fi găsit" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Fișierele de configurare au fost modificate" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Pachetul este instalat deja" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "Descărcarea pachetului a eșuat" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Nu aveți privilegiile necesare pentru îndeplinirea acestei acțiuni." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "Nu s-a putut elimina un pachet de sistem protejat" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "Semnătura pachetului nu a putut fi verificată." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The priority was invalid" msgid "The query is not valid." msgstr "Prioritatea nu era validă" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "Fișierul nu a fost instalat" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Could not find package" msgid "Could not talk to packagekitd." msgstr "Pachetul nu a putut fi găsit" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "Eroare necunoscută" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignoră" -#: SmartIcon/KpkUpdateIcon.cpp:172 -#, kde-format -msgid "You have %1" -msgstr "Aveți %1" - -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "
                                                      And another update" -msgid_plural "
                                                      And %1 more updates" -msgstr[0] "
                                                      Și încă o actualizare" -msgstr[1] "
                                                      Și încă %1 actualizări" -msgstr[2] "
                                                      Și încă %1 de actualizări" +msgid "" +"The following file is required:
                                                      • %2
                                                      Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                      • %2
                                                      Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "Revizuiește și actualizează" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Un program dorește să instaleze un fișier" +msgstr[1] "Un program dorește să instaleze fișiere" +msgstr[2] "Un program dorește să instaleze fișiere" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Nu acum" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 dorește să instaleze un fișier" +msgstr[1] "%1 dorește să instaleze fișiere" +msgstr[2] "%1 dorește să instaleze fișiere" -#: SmartIcon/KpkUpdateIcon.cpp:191 -msgid "Do not ask again" -msgstr "Nu mai întreba" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Instalează" -#: SmartIcon/KpkUpdateIcon.cpp:235 -msgid "Updates are being automatically installed." -msgstr "Actualizările se instalează automat." +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Pornirea tranzacției de căutare a fișierelor a eșuat" -#: SmartIcon/KpkUpdateIcon.cpp:262 -msgid "Security updates are being automatically installed." -msgstr "Actualizările de securitate sînt instalate automat." +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" -#: SmartIcon/KpkUpdateIcon.cpp:289 -msgid "System update was successful." -msgstr "Actualizarea sistemului a reușit." +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Pachetul %1 furnizează deja acest fișier" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Eșec la instalarea fișierului" +msgstr[1] "Eșec la instalarea fișierelor" +msgstr[2] "Eșec la instalarea fișierelor" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Următorul pachet va fi instalat" +msgstr[1] "Următoarele pachete vor fi instalate" +msgstr[2] "Următoarele pachete vor fi instalate" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Fișierul nu a fost găsit în niciun pachet" +msgstr[1] "Fișierele nu au fost găsite în niciun pachet" +msgstr[2] "Fișierele nu au fost găsite în niciun pachet" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Eșec la găsirea pachetului" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Aveți %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                                      And another update" +msgid_plural "
                                                      And %1 more updates" +msgstr[0] "
                                                      Și încă o actualizare" +msgstr[1] "
                                                      Și încă %1 actualizări" +msgstr[2] "
                                                      Și încă %1 de actualizări" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Revizuiește și actualizează" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" +msgstr "Nu mai întreba" + +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." +msgstr "Actualizările se instalează automat." + +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "Actualizările de securitate sînt instalate automat." + +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." +msgstr "Actualizarea sistemului a reușit." + +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Actualizarea programului a eșuat." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Următorul fișier este necesar:" +msgstr[1] "Următoarele fișiere sînt necesare:" +msgstr[2] "Următoarele fișiere sînt necesare:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Doriți să-l căutați acum?" +msgstr[1] "Doriți să le căutați acum?" +msgstr[2] "Doriți să le căutați acum?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 dorește să instaleze un fișier" +msgstr[1] "%1 dorește să instaleze fișiere" +msgstr[2] "%1 dorește să instaleze fișiere" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Începe actualizarea acum" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Actualizarea distribuției s-a sfîrșit. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Pornirea tranzacției de rezolvare a eșuat" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Obținut tranzacții vechi" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Eroare necunoscută" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                                                      • %2
                                                      Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                      • %2
                                                      Do you want to search " +"for and install these packages now?" +msgstr[0] "Doriți să căutați și să instalați acest pachet acum?" +msgstr[1] "Doriți să căutați și să instalați aceste pachete acum?" +msgstr[2] "Doriți să căutați și să instalați aceste pachete acum?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Un program dorește să instaleze un pachet" +msgstr[1] "Un program dorește să instaleze pachete" +msgstr[2] "Un program dorește să instaleze pachete" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 dorește să instaleze un pachet" +msgstr[1] "%1 dorește să instaleze pachete" +msgstr[2] "%1 dorește să instaleze pachete" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Instalează" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Pachetul este instalat deja" +msgstr[1] "Pachetul este instalat deja" +msgstr[2] "Pachetul este instalat deja" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Eșec la instalarea pachetului" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Pachetul nu a putut fi găsit în nicio sursă software" +msgstr[1] "Pachetele nu au putut fi găsite în nicio sursă software" +msgstr[2] "Pachetele nu au putut fi găsite în nicio sursă software" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "%1 nu poate fi găsit" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2583,31 +2903,268 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt și alte chestii" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
                                                      %1
                                                      Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Este necesar un program suplimentar pentru deschiderea acestui tip de " +"fișier:
                                                      %1
                                                      Doriți să căutați acum un program pentru deschiderea " +"acestui tip de fișier?" +msgstr[1] "" +"Este necesar un program suplimentar pentru deschiderea acestui tip de " +"fișier:
                                                      %1
                                                      Doriți să căutați acum un program pentru deschiderea " +"acestui tip de fișier?" +msgstr[2] "" +"Este necesar un program suplimentar pentru deschiderea acestui tip de " +"fișier:
                                                      %1
                                                      Doriți să căutați acum un program pentru deschiderea " +"acestui tip de fișier?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Un program dorește să instaleze un fișier" +msgstr[1] "Un program dorește să instaleze fișiere" +msgstr[2] "Un program dorește să instaleze fișiere" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 dorește să instaleze un fișier" +msgstr[1] "%1 dorește să instaleze fișiere" +msgstr[2] "%1 dorește să instaleze fișiere" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Caută" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to search for provides" +msgstr "Eșec la inițializare" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplicația care poate deschide acest tip de fișier" +msgstr[1] "Aplicațiile care pot deschide acest tip de fișier" +msgstr[2] "Aplicațiile care pot deschide acest tip de fișier" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Nu pot fi găsite aplicații noi care să manipuleze acest tip de fișier" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Eșec la găsirea programelor" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "" +#| "The action is not supported by this backend.\n" +#| "Please report a bug as this should not have happened." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Acțiunea nu este susținută de această platformă.\n" +"Raportați o eroare, întrucît aceasta nu trebuia să se întîmple." +msgstr[1] "" +"Acțiunea nu este susținută de această platformă.\n" +"Raportați o eroare, întrucît aceasta nu trebuia să se întîmple." +msgstr[2] "" +"Acțiunea nu este susținută de această platformă.\n" +"Raportați o eroare, întrucît aceasta nu trebuia să se întîmple." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Imposibil de instalat" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Instalează" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Doriți să instalați acest fișier?" +msgstr[1] "Doriți să instalați aceste fișiere?" +msgstr[2] "Doriți să instalați aceste fișiere?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Instalați?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Fișierul nu a fost instalat" +msgstr[1] "Fișierele nu au fost instalate" +msgstr[2] "Fișierele nu au fost instalate" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Fișierul a fost instalat cu succes" +msgstr[1] "Fișierele au fost instalate cu succes" +msgstr[2] "Fișierele au fost instalate cu succes" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "A intervenit o eroare." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                      • %2
                                                      Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                      • %2
                                                      Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Un program cere un nou tip MIME" +msgstr[1] "Un program cere tipuri MIME noi" +msgstr[2] "Un program cere tipuri MIME noi" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Un program cere un nou tip MIME" +msgstr[1] "Un program cere tipuri MIME noi" +msgstr[2] "Un program cere tipuri MIME noi" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Un program cere un nou tip MIME" +msgstr[1] "Un program cere tipuri MIME noi" +msgstr[2] "Un program cere tipuri MIME noi" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Doriți să căutați și să instalați acest pachet acum?" +msgstr[1] "Doriți să căutați și să instalați aceste pachete acum?" +msgstr[2] "Doriți să căutați și să instalați aceste pachete acum?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Pachetul nu a putut fi găsit în nicio sursă software" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to initialize" +msgid "Failed to search for plugin" +msgstr "Eșec la inițializare" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Pachetul nu a putut fi găsit în nicio sursă software" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Tranzacții" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Actualizează lista cu pachete" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Arată mesaje" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Ascunde această pictogramă" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "Pachet: %1" msgstr[1] "Pachete: %1" msgstr[2] "Pachete: %1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" @@ -2615,177 +3172,69 @@ msgstr[1] "%1 mesaje de la gestionarul de pachete" msgstr[2] "%1 de mesaje de la gestionarul de pachete" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Actualizarea sistemului s-a încheiat" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Repornește" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Nu acum" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Ieșire" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Mesajele gestionarului de pachete" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Mesaj" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Configurări KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "La fiecare oră" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Zilnic" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Săptămînal" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Lunar" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Niciodată" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Numai de securitate" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Toate actualizările" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Niciuna" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Nu aveți privilegiile necesare pentru îndeplinirea acestei acțiuni." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Eșec la stabilirea datelor de origine" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Următorul fișier este necesar:" -msgstr[1] "Următoarele fișiere sînt necesare:" -msgstr[2] "Următoarele fișiere sînt necesare:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Doriți să-l căutați acum?" -msgstr[1] "Doriți să le căutați acum?" -msgstr[2] "Doriți să le căutați acum?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Un program dorește să instaleze un fișier" -msgstr[1] "Un program dorește să instaleze fișiere" -msgstr[2] "Un program dorește să instaleze fișiere" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 dorește să instaleze un fișier" -msgstr[1] "%1 dorește să instaleze fișiere" -msgstr[2] "%1 dorește să instaleze fișiere" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalează" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Pornirea tranzacției de căutare a fișierelor a eșuat" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Pachetul %1 furnizează deja acest fișier" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Următorul pachet va fi instalat" -msgstr[1] "Următoarele pachete vor fi instalate" -msgstr[2] "Următoarele pachete vor fi instalate" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Fișierul nu a fost găsit în niciun pachet" -msgstr[1] "Fișierele nu au fost găsite în niciun pachet" -msgstr[2] "Fișierele nu au fost găsite în niciun pachet" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Eșec la găsirea pachetului" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Un program dorește să elimine un fișier" msgstr[1] "Un program dorește să elimine fișiere" msgstr[2] "Un program dorește să elimine fișiere" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" msgstr[0] "%1 dorește să elimine un fișier" msgstr[1] "%1 dorește să elimine fișiere" msgstr[2] "%1 dorește să elimine fișiere" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Următorul fișier este pe cale de a fi eliminat:" msgstr[1] "Următoarele fișiere sînt pe cale de a fi eliminate:" msgstr[2] "Următoarele fișiere sînt pe cale de a fi eliminate:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2798,214 +3247,220 @@ msgstr[2] "" "Doriți să căutați pachete ce conțin acest fișier și să le eliminați acum?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Caută" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Următorul pachet va fi eliminat" msgstr[1] "Următoarele pachete vor fi eliminate" msgstr[2] "Următoarele pachete vor fi eliminate" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "Fișierul nu a fost găsit în niciun pachet instalat" msgstr[1] "Fișierele nu au fost găsite în niciun pachet instalat" msgstr[2] "Fișierele nu au fost găsite în niciun pachet instalat" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "%1 nu poate fi găsit" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
                                                      %1
                                                      Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                                      • %1
                                                      • Do you want to search for a program to open this file type now?" +msgstr "" +"Este necesar un program suplimentar pentru deschiderea acestui tip de " +"fișier:
                                                        %1
                                                        Doriți să căutați acum un program pentru deschiderea " +"acestui tip de fișier?" -#: KPackageKit/main.cpp:36 -msgid "KPackageKit is a tool to manage software" -msgstr "KPackageKit este o unealtă pentru gestiunea programelor" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Un program cere un nou tip MIME" +msgstr[1] "Un program cere tipuri MIME noi" +msgstr[2] "Un program cere tipuri MIME noi" -#: KPackageKit/main.cpp:46 -msgid "Show updates" -msgstr "Arată actualizările" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 cere un nou tip MIME" +msgstr[1] "%1 cere tipuri MIME noi" +msgstr[2] "%1 cere tipuri MIME noi" -#: KPackageKit/main.cpp:47 -msgid "Show settings" -msgstr "Arată configurările" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Caută" -#: KPackageKit/main.cpp:48 -msgid "Show backend details" -msgstr "Arată detalii despre platformă" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Nu pot fi găsite aplicații noi care să manipuleze acest tip de fișier" -#: KPackageKit/main.cpp:49 -msgid "Mime type installer" -msgstr "Instalator de tipuri MIME" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Eșec la găsirea programelor" -#: KPackageKit/main.cpp:50 -msgid "Package name installer" -msgstr "Instalator de denumiri de pachete" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                                        Do you want to install this catalog?

                                                        • %2
                                                        " +msgid_plural "" +"

                                                        Do you want to install these catalogs?

                                                        • %2
                                                        " +msgstr[0] "Doriți să instalați acest fișier?" +msgstr[1] "Doriți să instalați aceste fișiere?" +msgstr[2] "Doriți să instalați aceste fișiere?" -#: KPackageKit/main.cpp:51 -msgid "Single file installer" -msgstr "Instalator de fișiere singulare" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Instalează acum" +msgstr[1] "Instalează acum" +msgstr[2] "Instalează acum" -#: KPackageKit/main.cpp:52 -msgid "Single package remover" -msgstr "eliminator de pachete singulare" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Instalează" -#: KPackageKit/main.cpp:53 -msgid "Package file to install" -msgstr "Fișierul cu pachet de instalat" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Platforma curentă nu susține instalarea pachetelor." -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Nesusținut de această platformă" -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Imposibil de instalat" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Fișierul cu pachet de instalat" +msgstr[1] "Fișierul cu pachet de instalat" +msgstr[2] "Fișierul cu pachet de instalat" -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instalează" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Eșec la finalizare" -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Doriți să instalați acest fișier?" -msgstr[1] "Doriți să instalați aceste fișiere?" -msgstr[2] "Doriți să instalați aceste fișiere?" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Pachetele sursă nu pot fi instalate" -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Instalați?" +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Pornirea tranzacției de rezolvare a eșuat" -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Fișierul nu a fost instalat" -msgstr[1] "Fișierele nu au fost instalate" -msgstr[2] "Fișierele nu au fost instalate" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Configurări KPackageKit" -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Eșec la instalarea fișierului" -msgstr[1] "Eșec la instalarea fișierelor" -msgstr[2] "Eșec la instalarea fișierelor" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "La fiecare oră" -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Fișierul a fost instalat cu succes" -msgstr[1] "Fișierele au fost instalate cu succes" -msgstr[2] "Fișierele au fost instalate cu succes" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Zilnic" -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "A intervenit o eroare." +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Săptămînal" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Lunar" -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Este necesar un pachet suplimentar:" -msgstr[1] "Sînt necesare pachete suplimentare:" -msgstr[2] "Sînt necesare pachete suplimentare:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Doriți să căutați și să instalați acest pachet acum?" -msgstr[1] "Doriți să căutați și să instalați aceste pachete acum?" -msgstr[2] "Doriți să căutați și să instalați aceste pachete acum?" +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Niciodată" -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Un program dorește să instaleze un pachet" -msgstr[1] "Un program dorește să instaleze pachete" -msgstr[2] "Un program dorește să instaleze pachete" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Numai de securitate" -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 dorește să instaleze un pachet" -msgstr[1] "%1 dorește să instaleze pachete" -msgstr[2] "%1 dorește să instaleze pachete" +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "Toate actualizările" -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalează" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Niciuna" -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Pornirea tranzacției de rezolvare a eșuat" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Eșec la stabilirea datelor de origine" -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Pachetul nu a putut fi găsit în nicio sursă software" -msgstr[1] "Pachetele nu au putut fi găsite în nicio sursă software" -msgstr[2] "Pachetele nu au putut fi găsite în nicio sursă software" +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "KPackageKit este o unealtă pentru gestiunea programelor" -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                        %1
                                                        Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Este necesar un program suplimentar pentru deschiderea acestui tip de " -"fișier:
                                                        %1
                                                        Doriți să căutați acum un program pentru deschiderea " -"acestui tip de fișier?" +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "Arată actualizările" -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Un program cere un nou tip MIME" -msgstr[1] "Un program cere tipuri MIME noi" -msgstr[2] "Un program cere tipuri MIME noi" +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "Arată configurările" -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 cere un nou tip MIME" -msgstr[1] "%1 cere tipuri MIME noi" -msgstr[2] "%1 cere tipuri MIME noi" +#: KPackageKit/main.cpp:48 +msgid "Show backend details" +msgstr "Arată detalii despre platformă" -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Caută" +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "Instalator de tipuri MIME" -#: KPackageKit/KpkInstallMimeType.cpp:78 -#, fuzzy -#| msgid "Failed to initialize" -msgid "Failed to search for provides" -msgstr "Eșec la inițializare" +#: KPackageKit/main.cpp:50 +msgid "Package name installer" +msgstr "Instalator de denumiri de pachete" -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplicația care poate deschide acest tip de fișier" -msgstr[1] "Aplicațiile care pot deschide acest tip de fișier" -msgstr[2] "Aplicațiile care pot deschide acest tip de fișier" +#: KPackageKit/main.cpp:51 +msgid "Single file installer" +msgstr "Instalator de fișiere singulare" -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Nu pot fi găsite aplicații noi care să manipuleze acest tip de fișier" +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "eliminator de pachete singulare" -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Eșec la găsirea programelor" +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Fișierul cu pachet de instalat" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" @@ -3017,19 +3472,19 @@ msgid "Your emails" msgstr "sergiu@ase.md" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Alege toate actualizările" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Reîmprospătează" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -3067,59 +3522,71 @@ msgid "Required by" msgstr "Cerut de" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Adaugă și elimină programe" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Caută pachete" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtre" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Toate pachetele" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Tranzacție" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "Tranzacții" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "Acțiune" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Descărcare pachete" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "O bibliotecă de făcut foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 #, fuzzy #| msgid "Additional media is required to complete the transaction." msgid "Additional changes are required to complete the task" @@ -3127,377 +3594,435 @@ #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "Acțiune" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Denumire depozit:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL semnătură:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identificator semnătură:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Recunoașteți utilizatorul și aveți încredere în această cheie?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Aveți încredere în originea acestor pachete?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Citiți următoarea informație importantă înainte de a continua:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Configurări" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Configurări KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Verifică pentru actualizări:" +#, fuzzy +#| msgid "Updating" +msgid "Update settings" +msgstr "Actualizare" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Instalează automat:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Verifică pentru actualizări:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Pictogramă inteligentă pentru tavă" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Instalează automat:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Notifică cînd sînt disponibile actualizări" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Notifică la finalizarea sarcinilor îndelungate" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "Originea pachetelor" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "&Arată originile pachetelor de depanare și dezvoltare" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Despre platformă" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Denumire platformă:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "aici vine denumirea platformei" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Autor platformă:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Description" +msgid "Backend description:" +msgstr "Descriere" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "aici vine autorul platformei" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "aici vine denumirea platformei" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 #, fuzzy #| msgid "Package install blocked" msgid "Package is visible" msgstr "Instalare pachet blocată" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 #, fuzzy #| msgid "Only free software" msgid "Free software" msgstr "Numai programe libere" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Metode" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Obține actualizări" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Actualizează pachete" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Obține lista depozitelor" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Reîmprospătează cache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Instalează pachet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Activează depozit" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Actualizează sistem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Elimină pachet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 #, fuzzy #| msgid "Repository name:" msgid "RepositorySetEnable" msgstr "Denumire depozit:" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 #, fuzzy #| msgctxt "Search for a package and remove" #| msgid "Search" msgid "SearchName" msgstr "Caută" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 #, fuzzy #| msgid "Depends on" msgid "GetDepends" msgstr "Depinde de" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "CeOferă" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "CăutareDetalii" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got requires" msgid "GetRequires" msgstr "Cerințe obținute" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 #, fuzzy #| msgid "All Packages" msgid "GetPackages" msgstr "Toate pachetele" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Searched groups" msgid "SearchGroup" msgstr "Căutat grupuri" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got update detail" msgid "GetUpdateDetail" msgstr "Detalii actualizare obținute" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 #, fuzzy #| msgid "Search killed" msgid "SearchFile" msgstr "Căutare omorîtă" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 #, fuzzy #| msgid "Description" msgid "GetDescription" msgstr "Descriere" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 #, fuzzy #| msgid "Details" msgid "GetFiles" msgstr "Detalii" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Resolved" msgid "Resolve" msgstr "Rezolvat" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 #, fuzzy #| msgid "Installed" msgid "InstallFIle" msgstr "Instalate" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "Installed" msgid "SimulateInstallFiles" msgstr "Instalate" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "InstallPackage" msgid "SimulateInstallPackages" msgstr "Instalează pachet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "RemovePackage" msgid "SimulateRemovePackages" msgstr "Elimină pachet" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "UpdatePackage" msgid "SimulateUpdatePackages" msgstr "Actualizează pachete" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Obținut tranzacții vechi" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Este necesar un pachet suplimentar:" +#~ msgstr[1] "Sînt necesare pachete suplimentare:" +#~ msgstr[2] "Sînt necesare pachete suplimentare:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Doriți să căutați și să instalați acest pachet acum?" +#~ msgstr[1] "Doriți să căutați și să instalați aceste pachete acum?" +#~ msgstr[2] "Doriți să căutați și să instalați aceste pachete acum?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                                        %1
                                                        Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Este necesar un program suplimentar pentru deschiderea acestui tip de " +#~ "fișier:
                                                        %1
                                                        Doriți să căutați acum un program pentru " +#~ "deschiderea acestui tip de fișier?" + +#~ msgid "All packages" +#~ msgstr "Toate pachetele" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Nu aveți privilegiile necesare pentru îndeplinirea acestei acțiuni." + +#~ msgid "Package Name" +#~ msgstr "Denumire pachet" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Configurări KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Pictogramă inteligentă pentru tavă" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Notifică la finalizarea sarcinilor îndelungate" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Tranzacție" + +#~ msgid "A library to do foo" +#~ msgstr "O bibliotecă de făcut foo" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Următoarele pachete vor fi instalate ca dependențe" @@ -3510,9 +4035,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Următoarele pachete de asemenea trebuiesc eliminate/instalate:" -#~ msgid "Failed to update package lists" -#~ msgstr "Eșec la actualizarea listelor de pachete" - #~ msgid "Failed to refresh package lists" #~ msgstr "Eșec la înnoirea listelor de pachete" @@ -3584,9 +4106,6 @@ #~ msgid "Downloading" #~ msgstr "Se descarcă" -#~ msgid "Updating" -#~ msgstr "Actualizare" - #~ msgid "Cleaning Up" #~ msgstr "Curățare" @@ -3651,11 +4170,6 @@ #~ msgid "Information" #~ msgstr "Informație" -#, fuzzy -#~| msgid "Description" -#~ msgid "Find Description" -#~ msgstr "Descriere" - #~ msgid "Search canceled" #~ msgstr "Căutare anulată" diff -Nru kpackagekit-0.5.4/po/ru/CMakeLists.txt kpackagekit-0.6.0/po/ru/CMakeLists.txt --- kpackagekit-0.5.4/po/ru/CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/po/ru/CMakeLists.txt 2010-01-30 09:03:46.000000000 +0000 @@ -0,0 +1,2 @@ +file(GLOB _po_files *.po) +GETTEXT_PROCESS_PO_FILES( ru ALL INSTALL_DESTINATION ${LOCALE_INSTALL_DIR} ${_po_files} ) diff -Nru kpackagekit-0.5.4/po/ru/kpackagekit.po kpackagekit-0.6.0/po/ru/kpackagekit.po --- kpackagekit-0.5.4/po/ru/kpackagekit.po 1970-01-01 01:00:00.000000000 +0100 +++ kpackagekit-0.6.0/po/ru/kpackagekit.po 2010-01-30 09:03:46.000000000 +0000 @@ -0,0 +1,3842 @@ +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. +# +# Artem Sereda , 2009. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: http://bugs.kde.org\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-11-03 01:21+0200\n" +"Last-Translator: Artem Sereda \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 1.0\n" + +#: Updater/KpkSimpleTransactionModel.cpp:46 +msgid "Date" +msgstr "Дата" + +#: Updater/KpkSimpleTransactionModel.cpp:47 +#: libkpackagekit/KpkPackageModel.cpp:144 +msgid "Action" +msgstr "Действие" + +#. i18n: file: Updater/KpkUpdateDetails.ui:20 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 +#. i18n: ectx: property (title), widget (QGroupBox, detailGroup) +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 +msgid "Details" +msgstr "Сведения" + +#: Updater/KpkSimpleTransactionModel.cpp:49 +msgctxt "Machine user who issued the transaction" +msgid "Username" +msgstr "Пользователь" + +#: Updater/KpkSimpleTransactionModel.cpp:50 +msgid "Application" +msgstr "Приложение" + +#: Updater/KcmKpkUpdate.cpp:37 +msgid "Software update" +msgstr "Обновление программ" + +#: Updater/KcmKpkUpdate.cpp:39 +msgid "KDE interface for updating software" +msgstr "" + +#: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 +#: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 +msgid "(C) 2008-2009 Daniel Nicoletti" +msgstr "© Daniel Nicoletti, 2008-2009" + +#: Updater/KpkDistroUpgrade.cpp:45 SmartIcon/KpkDistroUpgrade.cpp:62 +msgid "Distribution upgrade available" +msgstr "Доступно обновление дистрибутива" + +#: Updater/KpkDistroUpgrade.cpp:55 Updater/KpkDistroUpgrade.cpp:56 +#, kde-format +msgid "Upgrade to %1" +msgstr "Обновить до %1" + +#: Updater/KpkDistroUpgrade.cpp:57 +#, kde-format +msgid "Click to upgrade to %1" +msgstr "Нажмите, чтобы обновить до %1" + +#: Updater/KpkDistroUpgrade.cpp:71 +msgid "" +"You are about to upgrade your distribution to the latest version. This is " +"usually a very lengthy process and takes a lot longer than simply upgrading " +"your packages." +msgstr "" +"Вы собираетесь обновить ваш дистрибутив до последней версии. Это, как " +"правило, длительный процесс, намного дольше, чем простое обновление пакетов." + +#: Updater/KpkDistroUpgrade.cpp:76 +msgid "It is recommended to plug in your computer before proceeding." +msgstr "Рекомендуется подключить компьютер к сети перед продолжением." + +#: Updater/KpkDistroUpgrade.cpp:78 +msgid "" +"It is recommended that you keep your computer plugged in while the upgrade " +"is being performed." +msgstr "" +"Рекомендуется оставить компьютер подключённым к сети до окончания процесса " +"обновления." + +#: Updater/KpkDistroUpgrade.cpp:105 +msgid "Distribution upgrade complete." +msgstr "Обновление дистрибутива завершено." + +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 +#, kde-format +msgid "Distribution upgrade process exited with code %1." +msgstr "Процесс обновления дистрибутива завершился с кодом %1." + +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 +msgid "The distribution upgrade process failed to start." +msgstr "Сбой запуска процесса обновления дистрибутива." + +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 +msgid "" +"The distribution upgrade process crashed some time after starting " +"successfully." +msgstr "" +"Произошёл сбой процесса обновления дистрибутива через некоторое время после " +"его успешного начала." + +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 +msgid "The distribution upgrade process failed with an unknown error." +msgstr "" +"Процесс обновления дистрибутива завершился аварийно через некоторое время " +"после его успешного начала." + +#: Updater/KpkUpdateDetails.cpp:61 +msgid "Type" +msgstr "Тип" + +#: Updater/KpkUpdateDetails.cpp:67 +msgctxt "State of the upgrade (ie testing, unstable..)" +msgid "State" +msgstr "Состояние" + +#: Updater/KpkUpdateDetails.cpp:74 +msgid "Issued" +msgstr "Выпущен" + +#: Updater/KpkUpdateDetails.cpp:81 +msgid "Updated" +msgstr "Обновлён" + +#: Updater/KpkUpdateDetails.cpp:87 +msgid "New version" +msgstr "Новая версия" + +#: Updater/KpkUpdateDetails.cpp:95 +msgid "Updates" +msgstr "Обновляет" + +#: Updater/KpkUpdateDetails.cpp:104 +msgid "Obsoletes" +msgstr "Заменяет" + +#: Updater/KpkUpdateDetails.cpp:110 +msgid "Repository" +msgstr "Репозиторий" + +#. i18n: file: AddRm/KpkPackageDetails.ui:50 +#. i18n: ectx: property (text), widget (QToolButton, descriptionTB) +#: Updater/KpkUpdateDetails.cpp:116 rc.cpp:26 +msgid "Description" +msgstr "Описание" + +#: Updater/KpkUpdateDetails.cpp:123 +msgid "Changes" +msgstr "Изменения" + +#: Updater/KpkUpdateDetails.cpp:131 +msgid "Vendor" +msgstr "Производитель" + +#: Updater/KpkUpdateDetails.cpp:137 +msgid "Bugzilla" +msgstr "Bugzilla" + +#: Updater/KpkUpdateDetails.cpp:143 +msgid "CVE" +msgstr "CVE" + +#: Updater/KpkUpdateDetails.cpp:149 +msgid "Notice" +msgstr "Примечание" + +#: Updater/KpkUpdateDetails.cpp:185 +msgid "No update description was found." +msgstr "Описание обновления недоступно." + +#: Updater/KpkHistory.cpp:47 +msgid "Rollback" +msgstr "Откатить" + +#: Updater/KpkHistory.cpp:52 +msgid "Refresh transactions list" +msgstr "Обновить списки транзакций" + +#: Updater/KpkHistory.cpp:100 +#, kde-format +msgid "Time since last cache refresh: %1" +msgstr "Время с последнего обновления кэша: %1" + +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Домашняя страница" + +#: AddRm/KpkPackageDetails.cpp:134 +msgid "License" +msgstr "Лицензия" + +#: AddRm/KpkPackageDetails.cpp:139 +msgctxt "Group of the package" +msgid "Group" +msgstr "Группа" + +#: AddRm/KpkPackageDetails.cpp:145 +msgid "Size" +msgstr "Размер" + +#: AddRm/KpkPackageDetails.cpp:198 +msgid "No files were found." +msgstr "Файлы не найдены." + +#: AddRm/KcmKpkAddRm.cpp:37 +msgid "Add and remove software" +msgstr "Установка и удаление программ" + +#: AddRm/KcmKpkAddRm.cpp:39 +msgid "KDE interface for managing software" +msgstr "" + +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 +msgid "Find" +msgstr "Поиск" + +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" + +#: AddRm/KpkAddRm.cpp:125 +msgid "List of changes" +msgstr "Список изменений" + +#: AddRm/KpkAddRm.cpp:134 +msgctxt "Groups of packages" +msgid "Group:" +msgid_plural "Groups:" +msgstr[0] "Группа:" +msgstr[1] "Группы:" +msgstr[2] "Группы:" + +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 +msgid "&Cancel" +msgstr "О&тменить" + +#. i18n: file: AddRm/KpkAddRm.ui:150 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 +msgid "Find by &name" +msgstr "Поиск по &имени" + +#. i18n: file: AddRm/KpkAddRm.ui:160 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 +msgid "Find by f&ile name" +msgstr "Поиск имени &файла" + +#. i18n: file: AddRm/KpkAddRm.ui:155 +#. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 +msgid "Find by &description" +msgstr "Поиск по &описанию" + +#: AddRm/KpkAddRm.cpp:420 +msgid "Review Changes" +msgstr "Просмотреть изменения" + +#: AddRm/KpkAddRm.cpp:457 +msgid "Collections" +msgstr "Коллекции" + +#: AddRm/KpkAddRm.cpp:462 +msgid "Only collections" +msgstr "Только коллекции" + +#: AddRm/KpkAddRm.cpp:469 +msgid "Exclude collections" +msgstr "Исключить коллекции" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 +#. i18n: ectx: property (text), widget (QCheckBox, installedCB) +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 +msgid "Installed" +msgstr "Установленные" + +#: AddRm/KpkAddRm.cpp:484 +msgid "Only installed" +msgstr "Только установленные" + +#: AddRm/KpkAddRm.cpp:493 +msgid "Only available" +msgstr "Только доступные" + +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 +msgid "No filter" +msgstr "Без фильтра" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 +#. i18n: ectx: property (text), widget (QCheckBox, developmentCB) +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 +msgid "Development" +msgstr "Средства разработки" + +#: AddRm/KpkAddRm.cpp:516 +msgid "Only development" +msgstr "Только пакеты разработки" + +#: AddRm/KpkAddRm.cpp:525 +msgid "Only end user files" +msgstr "Только пользовательские файлы" + +#: AddRm/KpkAddRm.cpp:542 +msgid "Graphical" +msgstr "Графические программы" + +#: AddRm/KpkAddRm.cpp:548 +msgid "Only graphical" +msgstr "Только графические" + +#: AddRm/KpkAddRm.cpp:557 +msgid "Only text" +msgstr "Только текстовые" + +#: AddRm/KpkAddRm.cpp:574 +msgctxt "Filter for free packages" +msgid "Free" +msgstr "Свободные программы" + +#: AddRm/KpkAddRm.cpp:580 +msgid "Only free software" +msgstr "Только свободные программы" + +#: AddRm/KpkAddRm.cpp:589 +msgid "Only non-free software" +msgstr "Только несвободные программы" + +#: AddRm/KpkAddRm.cpp:606 +msgid "Architectures" +msgstr "Архитектуры" + +#: AddRm/KpkAddRm.cpp:612 +msgid "Only native architectures" +msgstr "Только родные архитектуры" + +#: AddRm/KpkAddRm.cpp:621 +msgid "Only non-native architectures" +msgstr "Только неродные архитектуры" + +#: AddRm/KpkAddRm.cpp:638 +msgctxt "Filter for source packages" +msgid "Source" +msgstr "Источник" + +#: AddRm/KpkAddRm.cpp:644 +msgid "Only sourcecode" +msgstr "Только исходные тексты" + +#: AddRm/KpkAddRm.cpp:653 +msgid "Only non-sourcecode" +msgstr "Только бинарные" + +#: AddRm/KpkAddRm.cpp:670 +msgid "Hide subpackages" +msgstr "Скрыть субпакеты" + +#: AddRm/KpkAddRm.cpp:672 +msgid "Only show one package, not subpackages" +msgstr "Показывать только один пакет, без субпакетов" + +#: AddRm/KpkAddRm.cpp:680 +msgid "Only newest packages" +msgstr "Только новейшие пакеты" + +#: AddRm/KpkAddRm.cpp:683 +msgid "Only show the newest available package" +msgstr "Показывать только новейшие доступные пакеты" + +#: AddRm/KpkAddRm.cpp:692 +msgid "View in groups" +msgstr "Просмотр в группах" + +#: AddRm/KpkAddRm.cpp:695 +msgid "Display packages in groups according to status" +msgstr "Отображать пакеты в группах в соответствии с состоянием" + +#: libkpackagekit/KpkReviewChanges.cpp:75 +msgid "The following package will be installed:" +msgid_plural "The following packages will be installed:" +msgstr[0] "Следующий пакет будет установлен:" +msgstr[1] "Следующие пакеты будут установлены:" +msgstr[2] "Следующие пакеты будут установлены:" + +#: libkpackagekit/KpkReviewChanges.cpp:77 +msgid "Install Now" +msgstr "Установить сейчас" + +#: libkpackagekit/KpkReviewChanges.cpp:79 +msgid "The following package will be removed:" +msgid_plural "The following packages will be removed:" +msgstr[0] "Следующий пакет будет удалён:" +msgstr[1] "Следующие пакеты будут удалены:" +msgstr[2] "Следующие пакеты будут удалены:" + +#: libkpackagekit/KpkReviewChanges.cpp:81 +msgid "Remove Now" +msgstr "Удалить сейчас" + +#: libkpackagekit/KpkReviewChanges.cpp:83 +msgid "The following package will be removed and installed:" +msgid_plural "The following packages will be removed and installed:" +msgstr[0] "Следующий пакет будет удалён и установлен:" +msgstr[1] "Следующие пакеты будут удалены и установлены:" +msgstr[2] "Следующие пакеты будут удалены и установлены:" + +#: libkpackagekit/KpkReviewChanges.cpp:85 +msgid "Apply Now" +msgstr "Применить сейчас" + +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to remove package" +msgid "Failed to simulate package removal" +msgstr "Не удаётся удалить пакет" + +#: libkpackagekit/KpkReviewChanges.cpp:187 +msgid "The current backend does not support removing packages." +msgstr "Текущий модуль не поддерживает удаление пакетов." + +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 +msgid "KPackageKit Error" +msgstr "Ошибка KPackageKit" + +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to simulate package install" +msgstr "Не удалось установить пакет" + +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." +msgstr "Текущий модуль не поддерживает установку пакетов." + +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 +msgid "Failed to install package" +msgstr "Не удалось установить пакет" + +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Не удаётся удалить пакет" + +#: libkpackagekit/KpkTransaction.cpp:71 +msgid "Hide" +msgstr "Скрыть" + +#: libkpackagekit/KpkTransaction.cpp:72 +msgid "" +"Allows you to hide the window whilst keeping the transaction task running." +msgstr "" +"Позволяет скрыть это окно, в то время как задание продолжает выполняться." + +#: libkpackagekit/KpkTransaction.cpp:374 +msgid "" +"You are about to install unsigned packages can compromise your system, as it " +"is impossible to verify if the software came from a trusted source.\n" +" Are you sure you want to continue installation?" +msgstr "" + +#: libkpackagekit/KpkTransaction.cpp:377 +msgid "Installing unsigned software" +msgstr "Установка неподписанных пакетов" + +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 +msgid "A media change is required" +msgstr "Требуется смена носителя" + +#: libkpackagekit/KpkProgressBar.cpp:38 +#, kde-format +msgid "%1 remaining" +msgstr "%1 осталось" + +#: libkpackagekit/KpkPackageModel.cpp:142 +#: libkpackagekit/KpkSimulateModel.cpp:122 +msgid "Package" +msgstr "Пакет" + +#: libkpackagekit/KpkLicenseAgreement.cpp:34 +msgid "Accept Agreement" +msgstr "Принять Соглашение" + +#. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 +msgid "License Agreement Required" +msgstr "Требуется лицензионное соглашение" + +#: libkpackagekit/KpkLicenseAgreement.cpp:36 +#, kde-format +msgid "License required for %1 by %2" +msgstr "Для %1 требуется лицензия от %2" + +#: libkpackagekit/KpkSimulateModel.cpp:124 +msgid "Version" +msgstr "Версия" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 +#. i18n: ectx: property (text), widget (QCheckBox, cancelCB) +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 +msgid "Cancel" +msgstr "Отменить" + +#: libkpackagekit/KpkTransactionBar.cpp:129 +#, kde-format +msgid "Finished in %1." +msgstr "Завершено в %1." + +#: libkpackagekit/KpkRequirements.cpp:219 +msgid "Additional changes" +msgstr "Дополнительные изменения" + +#: libkpackagekit/KpkRequirements.cpp:221 +msgid "Continue" +msgstr "Продолжить" + +#: libkpackagekit/KpkRequirements.cpp:252 +#, kde-format +msgid "1 package to remove" +msgid_plural "%1 packages to remove" +msgstr[0] "" +msgstr[1] "Пакеты для удаления" +msgstr[2] "Пакеты для удаления" + +#: libkpackagekit/KpkRequirements.cpp:261 +#, kde-format +msgid "1 package to downgrade" +msgid_plural "%1 packages to downgrade" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkRequirements.cpp:272 +#, kde-format +msgid "1 package to reinstall" +msgid_plural "%1 packages to reinstall" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkRequirements.cpp:283 +#, fuzzy, kde-format +msgid "1 package to install" +msgid_plural "%1 packages to install" +msgstr[0] "Устанавливаемые пакеты" +msgstr[1] "Устанавливаемые пакеты" +msgstr[2] "Устанавливаемые пакеты" + +#: libkpackagekit/KpkRequirements.cpp:294 +#, kde-format +msgid "1 package to update" +msgid_plural "%1 packages to update" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:25 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 +msgid "Software signature is required" +msgstr "Программа должна быть подписана" + +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" +msgid "Unknown state" +msgstr "Неизвестное состояние" + +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" +msgid "Waiting for service to start" +msgstr "Ожидание запуска службы" + +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" +msgid "Waiting for other tasks" +msgstr "Ожидание выполнения других заданий" + +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" +msgid "Running task" +msgstr "Выполняется задание" + +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" +msgid "Querying" +msgstr "Выполняется запрос" + +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" +msgid "Getting information" +msgstr "Получение информации" + +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" +msgid "Removing packages" +msgstr "Удаление пакетов" + +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" +msgid "Downloading packages" +msgstr "Загрузка пакетов" + +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" +msgid "Installing packages" +msgstr "Устанавливаются пакеты" + +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" +msgid "Refreshing software list" +msgstr "Обновление списка программ" + +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" +msgid "Updating packages" +msgstr "Обновление пакетов" + +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" +msgid "Cleaning up packages" +msgstr "Очистка пакетов" + +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" +msgid "Obsoleting packages" +msgstr "Заменяются пакеты" + +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" +msgid "Resolving dependencies" +msgstr "Разрешение зависимостей" + +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" +msgid "Checking signatures" +msgstr "Проверка подписей" + +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" +msgid "Rolling back" +msgstr "Откат" + +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" +msgid "Testing changes" +msgstr "Проверка изменений" + +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" +msgid "Committing changes" +msgstr "Сохранение изменений" + +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" +msgid "Requesting data" +msgstr "Запрос данных" + +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" +msgid "Finished" +msgstr "Готово" + +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" +msgid "Cancelling" +msgstr "Отмена" + +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" +msgid "Downloading repository information" +msgstr "Получение сведений репозитория" + +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" +msgid "Downloading list of packages" +msgstr "Загружается список пакетов" + +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" +msgid "Downloading file lists" +msgstr "Загружается список файлов" + +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" +msgid "Downloading lists of changes" +msgstr "Загружается список изменений" + +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" +msgid "Downloading groups" +msgstr "Загружаются группы" + +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" +msgid "Downloading update information" +msgstr "Загружается информация об обновлениях" + +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" +msgid "Repackaging files" +msgstr "Перепаковка файлов" + +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" +msgid "Loading cache" +msgstr "Загрузка кэша" + +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" +msgid "Scanning installed applications" +msgstr "Сканирование установленных приложений" + +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" +msgid "Generating package lists" +msgstr "Генерация списков пакетов" + +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" +msgid "Waiting for package manager lock" +msgstr "Ожидание блокировки менеджера пакетов" + +#: libkpackagekit/KpkStrings.cpp:128 +#, fuzzy +msgctxt "waiting for user to type in a password" +msgid "Waiting for authentication" +msgstr "Ожидается завершение аутентификации" + +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" +msgid "Updating the list of running applications" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" +msgid "Checking for applications currently in use" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" +msgid "Checking for libraries currently in use" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Перепаковка файлов" + +#: libkpackagekit/KpkStrings.cpp:150 +msgctxt "The action of the package, in past tense" +msgid "Downloaded" +msgstr "Загружен" + +#: libkpackagekit/KpkStrings.cpp:152 +msgctxt "The action of the package, in past tense" +msgid "Updated" +msgstr "Обновлён" + +#: libkpackagekit/KpkStrings.cpp:154 +msgctxt "The action of the package, in past tense" +msgid "Installed" +msgstr "Установлен" + +#: libkpackagekit/KpkStrings.cpp:156 +msgctxt "The action of the package, in past tense" +msgid "Removed" +msgstr "Удалён" + +#: libkpackagekit/KpkStrings.cpp:158 +msgctxt "The action of the package, in past tense" +msgid "Cleaned Up" +msgstr "Очищен" + +#: libkpackagekit/KpkStrings.cpp:160 +msgctxt "The action of the package, in past tense" +msgid "Obsoleted" +msgstr "Заменён" + +#: libkpackagekit/KpkStrings.cpp:171 +msgctxt "The role of the transaction, in present tense" +msgid "Unknown role type" +msgstr "Неизвестный ролевой тип" + +#: libkpackagekit/KpkStrings.cpp:173 +msgctxt "The role of the transaction, in present tense" +msgid "Getting dependencies" +msgstr "Получение зависимостей" + +#: libkpackagekit/KpkStrings.cpp:175 +msgctxt "The role of the transaction, in present tense" +msgid "Getting update detail" +msgstr "Получение сведений об обновлениях" + +#: libkpackagekit/KpkStrings.cpp:177 +msgctxt "The role of the transaction, in present tense" +msgid "Getting details" +msgstr "Получение сведений" + +#: libkpackagekit/KpkStrings.cpp:179 +msgctxt "The role of the transaction, in present tense" +msgid "Getting requires" +msgstr "Получение требований" + +#: libkpackagekit/KpkStrings.cpp:181 +msgctxt "The role of the transaction, in present tense" +msgid "Getting updates" +msgstr "Получение обновлений" + +#: libkpackagekit/KpkStrings.cpp:183 +msgctxt "The role of the transaction, in present tense" +msgid "Searching details" +msgstr "Поиск сведений" + +#: libkpackagekit/KpkStrings.cpp:185 +msgctxt "The role of the transaction, in present tense" +msgid "Searching for file" +msgstr "Поиск файла" + +#: libkpackagekit/KpkStrings.cpp:187 +msgctxt "The role of the transaction, in present tense" +msgid "Searching groups" +msgstr "Поиск групп" + +#: libkpackagekit/KpkStrings.cpp:189 +msgctxt "The role of the transaction, in present tense" +msgid "Searching by package name" +msgstr "Поиск по имени пакета" + +#: libkpackagekit/KpkStrings.cpp:191 +msgctxt "The role of the transaction, in present tense" +msgid "Removing" +msgstr "Удаление" + +#: libkpackagekit/KpkStrings.cpp:193 +msgctxt "The role of the transaction, in present tense" +msgid "Installing" +msgstr "Установка" + +#: libkpackagekit/KpkStrings.cpp:195 +msgctxt "The role of the transaction, in present tense" +msgid "Installing file" +msgstr "Установка файла" + +#: libkpackagekit/KpkStrings.cpp:197 +msgctxt "The role of the transaction, in present tense" +msgid "Refreshing package cache" +msgstr "Обновление кэша пакетов" + +#: libkpackagekit/KpkStrings.cpp:199 +msgctxt "The role of the transaction, in present tense" +msgid "Updating packages" +msgstr "Обновление пакетов" + +#: libkpackagekit/KpkStrings.cpp:201 +msgctxt "The role of the transaction, in present tense" +msgid "Updating system" +msgstr "Обновление системы" + +#: libkpackagekit/KpkStrings.cpp:203 +msgctxt "The role of the transaction, in present tense" +msgid "Canceling" +msgstr "Отмена" + +#: libkpackagekit/KpkStrings.cpp:205 +msgctxt "The role of the transaction, in present tense" +msgid "Rolling back" +msgstr "Откат" + +#: libkpackagekit/KpkStrings.cpp:207 +msgctxt "The role of the transaction, in present tense" +msgid "Getting list of repositories" +msgstr "Получение списка репозиториев" + +#: libkpackagekit/KpkStrings.cpp:209 +msgctxt "The role of the transaction, in present tense" +msgid "Enabling repository" +msgstr "Включение репозитория" + +#: libkpackagekit/KpkStrings.cpp:211 +msgctxt "The role of the transaction, in present tense" +msgid "Setting repository data" +msgstr "Восстановление данных репозитория" + +#: libkpackagekit/KpkStrings.cpp:213 +msgctxt "The role of the transaction, in present tense" +msgid "Resolving" +msgstr "Разрешение зависимостей" + +#: libkpackagekit/KpkStrings.cpp:215 +msgctxt "The role of the transaction, in present tense" +msgid "Getting file list" +msgstr "Получение списка файлов" + +#: libkpackagekit/KpkStrings.cpp:217 +msgctxt "The role of the transaction, in present tense" +msgid "Getting what provides" +msgstr "Получение предоставлений" + +#: libkpackagekit/KpkStrings.cpp:219 +msgctxt "The role of the transaction, in present tense" +msgid "Installing signature" +msgstr "Установка подписи" + +#: libkpackagekit/KpkStrings.cpp:221 +msgctxt "The role of the transaction, in present tense" +msgid "Getting package lists" +msgstr "Получение списков пакетов" + +#: libkpackagekit/KpkStrings.cpp:223 +msgctxt "The role of the transaction, in present tense" +msgid "Accepting EULA" +msgstr "Принятие лицензионного соглашения" + +#: libkpackagekit/KpkStrings.cpp:225 +msgctxt "The role of the transaction, in present tense" +msgid "Downloading packages" +msgstr "Загрузка пакетов" + +#: libkpackagekit/KpkStrings.cpp:227 +msgctxt "The role of the transaction, in present tense" +msgid "Getting distribution upgrade information" +msgstr "Получение информации об обновлении дистрибутива" + +#: libkpackagekit/KpkStrings.cpp:229 +msgctxt "The role of the transaction, in present tense" +msgid "Getting categories" +msgstr "Получение категорий" + +#: libkpackagekit/KpkStrings.cpp:231 +msgctxt "The role of the transaction, in present tense" +msgid "Getting old transactions" +msgstr "Получение старых транзакций" + +#: libkpackagekit/KpkStrings.cpp:233 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install of files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:235 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the install" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:237 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the remove" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:239 +msgctxt "The role of the transaction, in present tense" +msgid "Simulating the update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:249 +msgctxt "The role of the transaction, in past tense" +msgid "Unknown role type" +msgstr "Неизвестный ролевой тип" + +#: libkpackagekit/KpkStrings.cpp:251 +msgctxt "The role of the transaction, in past tense" +msgid "Got dependencies" +msgstr "Зависимости получены" + +#: libkpackagekit/KpkStrings.cpp:253 +msgctxt "The role of the transaction, in past tense" +msgid "Got update detail" +msgstr "Сведения об обновлении получены" + +#: libkpackagekit/KpkStrings.cpp:255 +msgctxt "The role of the transaction, in past tense" +msgid "Got details" +msgstr "Сведения получены" + +#: libkpackagekit/KpkStrings.cpp:257 +msgctxt "The role of the transaction, in past tense" +msgid "Got requires" +msgstr "Зависимости получены" + +#: libkpackagekit/KpkStrings.cpp:259 +msgctxt "The role of the transaction, in past tense" +msgid "Got updates" +msgstr "Обновления получены" + +#: libkpackagekit/KpkStrings.cpp:261 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for package details" +msgstr "Описание пакета найдено" + +#: libkpackagekit/KpkStrings.cpp:263 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for file" +msgstr "Поиск файла выполнен" + +#: libkpackagekit/KpkStrings.cpp:265 +msgctxt "The role of the transaction, in past tense" +msgid "Searched groups" +msgstr "Поиск групп выполнен" + +#: libkpackagekit/KpkStrings.cpp:267 +msgctxt "The role of the transaction, in past tense" +msgid "Searched for package name" +msgstr "Поиск имени пакета выполнен" + +#: libkpackagekit/KpkStrings.cpp:269 +msgctxt "The role of the transaction, in past tense" +msgid "Removed packages" +msgstr "Пакеты удалены" + +#: libkpackagekit/KpkStrings.cpp:271 +msgctxt "The role of the transaction, in past tense" +msgid "Installed packages" +msgstr "Пакеты установлены" + +#: libkpackagekit/KpkStrings.cpp:273 +msgctxt "The role of the transaction, in past tense" +msgid "Installed local files" +msgstr "Локальные файлы установлены" + +#: libkpackagekit/KpkStrings.cpp:275 +msgctxt "The role of the transaction, in past tense" +msgid "Refreshed package cache" +msgstr "Кэш пакетов обновлён" + +#: libkpackagekit/KpkStrings.cpp:277 +msgctxt "The role of the transaction, in past tense" +msgid "Updated packages" +msgstr "Пакеты обновлены" + +#: libkpackagekit/KpkStrings.cpp:279 +msgctxt "The role of the transaction, in past tense" +msgid "Updated system" +msgstr "Система обновлена" + +#: libkpackagekit/KpkStrings.cpp:281 +msgctxt "The role of the transaction, in past tense" +msgid "Canceled" +msgstr "Отменено" + +#: libkpackagekit/KpkStrings.cpp:283 +msgctxt "The role of the transaction, in past tense" +msgid "Rolled back" +msgstr "Выполнен откат" + +#: libkpackagekit/KpkStrings.cpp:285 +msgctxt "The role of the transaction, in past tense" +msgid "Got list of repositories" +msgstr "Получен список репозиториев" + +#: libkpackagekit/KpkStrings.cpp:287 +msgctxt "The role of the transaction, in past tense" +msgid "Enabled repository" +msgstr "Репозиторий подключён" + +#: libkpackagekit/KpkStrings.cpp:289 +msgctxt "The role of the transaction, in past tense" +msgid "Set repository data" +msgstr "Данные репозитория установлены" + +#: libkpackagekit/KpkStrings.cpp:291 +msgctxt "The role of the transaction, in past tense" +msgid "Resolved" +msgstr "Зависимости разрешены" + +#: libkpackagekit/KpkStrings.cpp:293 +msgctxt "The role of the transaction, in past tense" +msgid "Got file list" +msgstr "Получен список файлов" + +#: libkpackagekit/KpkStrings.cpp:295 +msgctxt "The role of the transaction, in past tense" +msgid "Got what provides" +msgstr "Предоставления получены" + +#: libkpackagekit/KpkStrings.cpp:297 +msgctxt "The role of the transaction, in past tense" +msgid "Installed signature" +msgstr "Установлена подпись" + +#: libkpackagekit/KpkStrings.cpp:299 +msgctxt "The role of the transaction, in past tense" +msgid "Got package lists" +msgstr "Получен список пакетов" + +#: libkpackagekit/KpkStrings.cpp:301 +msgctxt "The role of the transaction, in past tense" +msgid "Accepted EULA" +msgstr "Лицензионное соглашение принято" + +#: libkpackagekit/KpkStrings.cpp:303 +msgctxt "The role of the transaction, in past tense" +msgid "Downloaded packages" +msgstr "Пакеты загружены" + +#: libkpackagekit/KpkStrings.cpp:305 +msgctxt "The role of the transaction, in past tense" +msgid "Got distribution upgrades" +msgstr "Обновления дистрибутива получены" + +#: libkpackagekit/KpkStrings.cpp:307 +msgctxt "The role of the transaction, in past tense" +msgid "Got categories" +msgstr "Категории получены" + +#: libkpackagekit/KpkStrings.cpp:309 +msgctxt "The role of the transaction, in past tense" +msgid "Got old transactions" +msgstr "Старые транзакции получены" + +#: libkpackagekit/KpkStrings.cpp:311 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install of files" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:313 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the install" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:315 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the remove" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:317 +msgctxt "The role of the transaction, in past tense" +msgid "Simulated the update" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:327 +msgid "No network connection available" +msgstr "Нет сетевого соединения" + +#: libkpackagekit/KpkStrings.cpp:329 +msgid "No package cache is available" +msgstr "Кэш пакетов недоступен" + +#: libkpackagekit/KpkStrings.cpp:331 +msgid "Out of memory" +msgstr "Недостаточно памяти" + +#: libkpackagekit/KpkStrings.cpp:333 +msgid "Failed to create a thread" +msgstr "Сбой создания потока" + +#: libkpackagekit/KpkStrings.cpp:335 +msgid "Not supported by this backend" +msgstr "Не поддерживается этим модулем" + +#: libkpackagekit/KpkStrings.cpp:337 +msgid "An internal system error has occurred" +msgstr "Произошла внутренняя ошибка системы" + +#: libkpackagekit/KpkStrings.cpp:339 +msgid "A security trust relationship is not present" +msgstr "Доверительные отношения отсутствуют" + +#: libkpackagekit/KpkStrings.cpp:341 +msgid "The package is not installed" +msgstr "Пакет не установлен" + +#: libkpackagekit/KpkStrings.cpp:343 +msgid "The package was not found" +msgstr "Пакет не найден" + +#: libkpackagekit/KpkStrings.cpp:345 +msgid "The package is already installed" +msgstr "Пакет уже установлен" + +#: libkpackagekit/KpkStrings.cpp:347 +msgid "The package download failed" +msgstr "Не удалось загрузить пакет" + +#: libkpackagekit/KpkStrings.cpp:349 +msgid "The group was not found" +msgstr "Группа не найдена" + +#: libkpackagekit/KpkStrings.cpp:351 +msgid "The group list was invalid" +msgstr "Неверный список групп" + +#: libkpackagekit/KpkStrings.cpp:353 +msgid "Dependency resolution failed" +msgstr "Не удалась разрешить зависимости" + +#: libkpackagekit/KpkStrings.cpp:355 +msgid "Search filter was invalid" +msgstr "Неверный фильтр поиска" + +#: libkpackagekit/KpkStrings.cpp:357 +msgid "The package identifier was not well formed" +msgstr "Идентификатор пакета сформирован неверно" + +#: libkpackagekit/KpkStrings.cpp:359 +msgid "Transaction error" +msgstr "Ошибка транзакции" + +#: libkpackagekit/KpkStrings.cpp:361 +msgid "Repository name was not found" +msgstr "Имя репозитория не найдено" + +#: libkpackagekit/KpkStrings.cpp:363 +msgid "Could not remove a protected system package" +msgstr "Невозможно удалить защищённый системный пакет" + +#: libkpackagekit/KpkStrings.cpp:365 +msgid "The task was canceled" +msgstr "Задание было отменено" + +#: libkpackagekit/KpkStrings.cpp:367 +msgid "The task was forcibly canceled" +msgstr "Задание было принудительно отменено" + +#: libkpackagekit/KpkStrings.cpp:369 +msgid "Reading the config file failed" +msgstr "Сбой чтения файла конфигурации" + +#: libkpackagekit/KpkStrings.cpp:371 +msgid "The task cannot be cancelled" +msgstr "Задание не может быть отменено" + +#: libkpackagekit/KpkStrings.cpp:373 +msgid "Source packages cannot be installed" +msgstr "Пакеты с исходными текстами не могут быть установлены" + +#: libkpackagekit/KpkStrings.cpp:375 +msgid "The license agreement failed" +msgstr "Сбой принятия лицензионного соглашения" + +#: libkpackagekit/KpkStrings.cpp:377 +msgid "Local file conflict between packages" +msgstr "Локальный конфликт между пакетами" + +#: libkpackagekit/KpkStrings.cpp:379 +msgid "Packages are not compatible" +msgstr "Пакеты не совместимы" + +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:383 +msgid "Failed to initialize" +msgstr "Сбой инициализации" + +#: libkpackagekit/KpkStrings.cpp:385 +msgid "Failed to finalize" +msgstr "Сбой завершения" + +#: libkpackagekit/KpkStrings.cpp:387 +msgid "Cannot get lock" +msgstr "Не удаётся получить блокировку" + +#: libkpackagekit/KpkStrings.cpp:389 +msgid "No packages to update" +msgstr "Нет пакетов для обновления" + +#: libkpackagekit/KpkStrings.cpp:391 +msgid "Cannot write repository configuration" +msgstr "Не удаётся записать конфигурацию репозитория" + +#: libkpackagekit/KpkStrings.cpp:393 +msgid "Local install failed" +msgstr "Сбой локальной установки" + +#: libkpackagekit/KpkStrings.cpp:395 +msgid "Bad GPG signature" +msgstr "Неверная подпись GPG" + +#: libkpackagekit/KpkStrings.cpp:397 +msgid "Missing GPG signature" +msgstr "Отсутствует подпись GPG" + +#: libkpackagekit/KpkStrings.cpp:399 +msgid "Repository configuration invalid" +msgstr "Неверная конфигурация репозиториев" + +#: libkpackagekit/KpkStrings.cpp:401 +msgid "Invalid package file" +msgstr "Неверный файл пакета" + +#: libkpackagekit/KpkStrings.cpp:403 +msgid "Package install blocked" +msgstr "Установка пакета заблокирована" + +#: libkpackagekit/KpkStrings.cpp:405 +msgid "Package is corrupt" +msgstr "Пакет повреждён" + +#: libkpackagekit/KpkStrings.cpp:407 +msgid "All packages are already installed" +msgstr "Все пакеты уже установлены" + +#: libkpackagekit/KpkStrings.cpp:409 +msgid "The specified file could not be found" +msgstr "Указанный файл не может быть найден" + +#: libkpackagekit/KpkStrings.cpp:411 +msgid "No more mirrors are available" +msgstr "Нет больше доступных зеркал" + +#: libkpackagekit/KpkStrings.cpp:413 +msgid "No distribution upgrade data is available" +msgstr "Данные обновления дистрибутива недоступны" + +#: libkpackagekit/KpkStrings.cpp:415 +msgid "Package is incompatible with this system" +msgstr "Пакет несовместим с этой системой" + +#: libkpackagekit/KpkStrings.cpp:417 +msgid "No space is left on the disk" +msgstr "На диске нет свободного места" + +#: libkpackagekit/KpkStrings.cpp:421 +#, fuzzy +msgid "Authorization failed" +msgstr "Ошибка доступа." + +#: libkpackagekit/KpkStrings.cpp:423 +msgid "Update not found" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:429 +msgid "Cannot get the file list" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:431 +msgid "Cannot get package requires" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:435 +msgid "The download failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:437 +msgid "Package failed to configure" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:439 +msgid "Package failed to build" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:441 +msgid "Package failed to install" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:443 +msgid "Package failed to be removed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:445 +msgid "Unknown error" +msgstr "Неизвестная ошибка" + +#: libkpackagekit/KpkStrings.cpp:455 +msgid "" +"There is no network connection available.\n" +"Please check your connection settings and try again" +msgstr "" +"Нет сетевого соединения.\n" +"Проверьте сетевое соединение и попробуйте ещё раз" + +#: libkpackagekit/KpkStrings.cpp:458 +msgid "" +"The package list needs to be rebuilt.\n" +"This should have been done by the backend automatically." +msgstr "" +"Необходимо перестроить список пакетов.\n" +"Модуль должен выполнить эту процедуру автоматически." + +#: libkpackagekit/KpkStrings.cpp:461 +msgid "" +"The service that is responsible for handling user requests is out of " +"memory.\n" +"Please close some programs or restart your computer." +msgstr "" +"Недостаточно памяти для работы службы, отвечающей за обработку запросов " +"пользователей.\n" +"Необходимо закрыть некоторые программы или перезагрузить компьютер." + +#: libkpackagekit/KpkStrings.cpp:464 +msgid "A thread could not be created to service the user request." +msgstr "Для обработки этого запроса пользователя должен быть создан поток." + +#: libkpackagekit/KpkStrings.cpp:466 +msgid "" +"The action is not supported by this backend.\n" +"Please report a bug as this should not have happened." +msgstr "" +"Действие не поддерживается этим модулем.\n" +"Сообщите об ошибке в систему учёта ошибок вашего дистрибутива." + +#: libkpackagekit/KpkStrings.cpp:469 +msgid "" +"A problem that we were not expecting has occurred.\n" +"Please report this bug with the error description." +msgstr "" +"Возникла неожиданная проблема.\n" +"Сообщите об этой ошибке в систему учёта ошибок вашего дистрибутива." + +#: libkpackagekit/KpkStrings.cpp:472 +msgid "" +"A security trust relationship could not be made with the software origin.\n" +"Please check your software signature settings." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:475 +msgid "" +"The package that is trying to be removed or updated is not already installed." +msgstr "Пакет, который вы пытаетесь установить или обновить, уже установлен." + +#: libkpackagekit/KpkStrings.cpp:477 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "" +"The package that is being modified was not found on your system or in any " +"software origin." +msgstr "Не удаётся найти пакет ни в одном из источников программ" + +#: libkpackagekit/KpkStrings.cpp:479 +msgid "The package that is trying to be installed is already installed." +msgstr "Пакет, который вы пытаетесь установить, уже установлен." + +#: libkpackagekit/KpkStrings.cpp:481 +msgid "" +"The package download failed.\n" +"Please check your network connectivity." +msgstr "" +"Сбой загрузки пакета.\n" +"Проверьте подключение к сети." + +#: libkpackagekit/KpkStrings.cpp:484 +msgid "" +"The group type was not found.\n" +"Please check your group list and try again." +msgstr "" +"Тип группы не был найден.\n" +"Проверьте список групп и попробуйте ещё раз." + +#: libkpackagekit/KpkStrings.cpp:487 +msgid "" +"The group list could not be loaded.\n" +"Refreshing your cache may help, although this is normally a software origin " +"error." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:491 +msgid "" +"A package dependency could not be found.\n" +"More information is available in the detailed report." +msgstr "" +"Не удаётся найти зависимость пакета.\n" +"Дополнительная информация доступна в детальном отчёте." + +#: libkpackagekit/KpkStrings.cpp:494 +msgid "The search filter was not correctly formed." +msgstr "Фильтр поиска сформирован некорректно." + +#: libkpackagekit/KpkStrings.cpp:496 +msgid "" +"The package identifier was not well formed when sent to the system daemon.\n" +"This normally indicates an internal bug and should be reported." +msgstr "" +"Идентификатор пакета сформирован неверно при отправке на сервер.\n" +"Это ошибка, о которой необходимо сообщить разработчикам." + +#: libkpackagekit/KpkStrings.cpp:499 +msgid "" +"An error occurred while running the transaction.\n" +"More information is available in the detailed report." +msgstr "" +"Произошла неуказанная ошибка.\n" +"Дополнительная информация доступна в подробном отчёте." + +#: libkpackagekit/KpkStrings.cpp:502 +msgid "" +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:505 +msgid "Removing a protected system package is not allowed." +msgstr "Удаление защищённых системных пакетов не разрешается." + +#: libkpackagekit/KpkStrings.cpp:507 +msgid "The task was canceled successfully and no packages were changed." +msgstr "Задание было прервано, никаких изменений не было сделано." + +#: libkpackagekit/KpkStrings.cpp:509 +msgid "" +"The task was canceled successfully and no packages were changed.\n" +"The backend did not exit cleanly." +msgstr "" +"Задание было прервано, никаких изменений не было сделано.\n" +"Работа модуля завершилась с ошибкой." + +#: libkpackagekit/KpkStrings.cpp:512 +msgid "" +"The native package configuration file could not be opened.\n" +"Please make sure your system's configuration is valid." +msgstr "" +"The native package configuration file could not be opened.\n" +"Please make sure your system's configuration is valid." + +#: libkpackagekit/KpkStrings.cpp:515 +msgid "The task is not safe to be cancelled at this time." +msgstr "Небезопасно отменять это задание в текущий момент." + +#: libkpackagekit/KpkStrings.cpp:517 +msgid "" +"Source packages are not normally installed this way.\n" +"Check the extension of the file you are trying to install." +msgstr "" +"Пакеты с исходными текстами, как правило, устанавливаются другим способом.\n" +"Проверьте расширение файла, который вы пытаетесь установить." + +#: libkpackagekit/KpkStrings.cpp:520 +msgid "" +"The license agreement was not agreed to.\n" +"To use this software you have to accept the license." +msgstr "" +"Не было принято лицензионное соглашение.\n" +"Для использования этой программы вы должны принять лицензию." + +#: libkpackagekit/KpkStrings.cpp:523 +msgid "" +"Two packages provide the same file.\n" +"This is usually due to mixing packages for different software origins." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:526 +msgid "" +"Multiple packages exist that are not compatible with each other.\n" +"This is usually due to mixing packages from different software origins." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:529 +msgid "" +"There was a (possibly temporary) problem connecting to a software origins.\n" +"Please check the detailed error for further details." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:532 +msgid "" +"Failed to initialize packaging backend.\n" +"This may occur if other packaging tools are being used simultaneously." +msgstr "" +"Не удаётся инициализировать модуль управления пакетами.\n" +"Возможно, одновременно используется другое средство управления пакетами." + +#: libkpackagekit/KpkStrings.cpp:535 +msgid "" +"Failed to close down the backend instance.\n" +"This error can normally be ignored." +msgstr "" +"Failed to close down the backend instance.\n" +"This error can normally be ignored." + +#: libkpackagekit/KpkStrings.cpp:538 +msgid "" +"Cannot get the exclusive lock on the packaging backend.\n" +"Please close any other legacy packaging tools that may be open." +msgstr "" +"Не удалось получить исключительную блокировку модуля.\n" +"Закройте все остальные утилиты управления пакетами." + +#: libkpackagekit/KpkStrings.cpp:541 +msgid "None of the selected packages could be updated." +msgstr "Ни один из выбранных пакетов не может быть обновлён." + +#: libkpackagekit/KpkStrings.cpp:543 +msgid "The repository configuration could not be modified." +msgstr "Конфигурация репозитория не может быть изменена." + +#: libkpackagekit/KpkStrings.cpp:545 +msgid "" +"Installing the local file failed.\n" +"More information is available in the detailed report." +msgstr "" +"Сбой установки локального файла.\n" +"Дополнительная информация доступна в проблемном отчёте." + +#: libkpackagekit/KpkStrings.cpp:548 +msgid "The package signature could not be verified." +msgstr "Не удаётся проверить подпись пакета." + +#: libkpackagekit/KpkStrings.cpp:550 +msgid "" +"The package signature was missing and this package is untrusted.\n" +"This package was not signed with a GPG key when created." +msgstr "" +"Подпись пакета отсутствует, пакет ненадёжный.\n" +"Этот пакет при создании не был подписан ключом GPG." + +#: libkpackagekit/KpkStrings.cpp:553 +msgid "Repository configuration was invalid and could not be read." +msgstr "Настройка репозитория неверна, он не может быть прочитан." + +#: libkpackagekit/KpkStrings.cpp:555 +msgid "" +"The package you are attempting to install is not valid.\n" +"The package file could be corrupt, or not a proper package." +msgstr "" +"Пакет, который вы пытаетесь установить, недействителен.\n" +"Файл пакета может быть повреждён, или вообще не является пакетом." + +#: libkpackagekit/KpkStrings.cpp:558 +msgid "" +"Installation of this package was prevented by your packaging system's " +"configuration." +msgstr "Установка этого пакета не допускается конфигурацией вашей системы." + +#: libkpackagekit/KpkStrings.cpp:560 +msgid "" +"The package that was downloaded is corrupt and needs to be downloaded again." +msgstr "Загруженный пакет повреждён, необходимо загрузить его ещё раз." + +#: libkpackagekit/KpkStrings.cpp:562 +msgid "" +"All of the packages selected for install are already installed on the system." +msgstr "Все пакеты, выделенные для установки, уже установлены в системе." + +#: libkpackagekit/KpkStrings.cpp:564 +msgid "" +"The specified file could not be found on the system.\n" +"Check that the file still exists and has not been deleted." +msgstr "" +"Не удаётся найти указанный файл в системе.\n" +"Убедитесь, что файл всё ещё существует и не был удалён." + +#: libkpackagekit/KpkStrings.cpp:567 +msgid "" +"Required data could not be found on any of the configured software origins.\n" +"There were no more download mirrors that could be tried." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:570 +msgid "" +"Required upgrade data could not be found in any of the configured software " +"origins.\n" +"The list of distribution upgrades will be unavailable." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:573 +msgid "" +"The package that is trying to be installed is incompatible with this system." +msgstr "Пакет, который вы пытаетесь установить, несовместим с этой системой." + +#: libkpackagekit/KpkStrings.cpp:575 +msgid "" +"There is insufficient space on the device.\n" +"Free some space on the system disk to perform this operation." +msgstr "" +"На устройстве недостаточно места.\n" +"Освободите место на диске для выполнения этой операции." + +#: libkpackagekit/KpkStrings.cpp:578 +msgid "Additional media is required to complete the transaction." +msgstr "" +"Для воспроизведения содержимого этого файла требуется дополнительный кодек." + +#: libkpackagekit/KpkStrings.cpp:580 +msgid "" +"You have failed to provide correct authentication.\n" +"Please check any passwords or account settings." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:583 +msgid "" +"The specified update could not be found.\n" +"It could have already been installed or no longer available on the remote " +"server." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:586 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The package could not be installed from untrusted origin." +msgstr "Не удаётся найти пакет ни в одном из источников программ" + +#: libkpackagekit/KpkStrings.cpp:588 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The package could not be updated from untrusted origin." +msgstr "Не удаётся найти пакет ни в одном из источников программ" + +#: libkpackagekit/KpkStrings.cpp:590 +msgid "The file list is not available for this package." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:592 +msgid "The information about what requires this package could not be obtained." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:594 +#, fuzzy +#| msgid "The specified file could not be found" +msgid "The specified software origin could not be disabled." +msgstr "Указанный файл не может быть найден" + +#: libkpackagekit/KpkStrings.cpp:596 +msgid "" +"The download could not be done automatically and should be done manually.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:599 +msgid "" +"One of the selected packages failed to configure correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:602 +msgid "" +"One of the selected packages failed to build correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:605 +msgid "" +"One of the selected packages failed to install correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:608 +msgid "" +"One of the selected packages failed to be removed correctly.\n" +"More information is available in the detailed report." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:611 +msgid "" +"Unknown error, please report a bug.\n" +"More information is available in the detailed report." +msgstr "" +"Произошла неуказанная ошибка, сообщите о ней, пожалуйста.\n" +"Дополнительная информация доступна в подробном отчёте." + +#: libkpackagekit/KpkStrings.cpp:622 +msgctxt "The group type" +msgid "Accessibility" +msgstr "Специальные возможности" + +#: libkpackagekit/KpkStrings.cpp:624 +msgctxt "The group type" +msgid "Accessories" +msgstr "Стандартные" + +#: libkpackagekit/KpkStrings.cpp:626 +msgctxt "The group type" +msgid "Education" +msgstr "Образование" + +#: libkpackagekit/KpkStrings.cpp:628 +msgctxt "The group type" +msgid "Games" +msgstr "Игры" + +#: libkpackagekit/KpkStrings.cpp:630 +msgctxt "The group type" +msgid "Graphics" +msgstr "Графика" + +#: libkpackagekit/KpkStrings.cpp:632 +msgctxt "The group type" +msgid "Internet" +msgstr "Интернет" + +#: libkpackagekit/KpkStrings.cpp:634 +msgctxt "The group type" +msgid "Office" +msgstr "Офис" + +#: libkpackagekit/KpkStrings.cpp:636 +msgctxt "The group type" +msgid "Other" +msgstr "Другое" + +#: libkpackagekit/KpkStrings.cpp:638 +msgctxt "The group type" +msgid "Development" +msgstr "Разработка" + +#: libkpackagekit/KpkStrings.cpp:640 +msgctxt "The group type" +msgid "Multimedia" +msgstr "Мультимедиа" + +#: libkpackagekit/KpkStrings.cpp:642 +msgctxt "The group type" +msgid "System" +msgstr "Система" + +#: libkpackagekit/KpkStrings.cpp:644 +msgctxt "The group type" +msgid "GNOME desktop" +msgstr "Рабочая среда GNOME" + +#: libkpackagekit/KpkStrings.cpp:646 +msgctxt "The group type" +msgid "KDE desktop" +msgstr "Рабочая среда KDE" + +#: libkpackagekit/KpkStrings.cpp:648 +msgctxt "The group type" +msgid "XFCE desktop" +msgstr "Рабочая среда XFCE" + +#: libkpackagekit/KpkStrings.cpp:650 +msgctxt "The group type" +msgid "Other desktops" +msgstr "Другие рабочие среды" + +#: libkpackagekit/KpkStrings.cpp:652 +msgctxt "The group type" +msgid "Publishing" +msgstr "Публикация" + +#: libkpackagekit/KpkStrings.cpp:654 +msgctxt "The group type" +msgid "Servers" +msgstr "Серверы" + +#: libkpackagekit/KpkStrings.cpp:656 +msgctxt "The group type" +msgid "Fonts" +msgstr "Шрифты" + +#: libkpackagekit/KpkStrings.cpp:658 +msgctxt "The group type" +msgid "Admin tools" +msgstr "Средства администрирования" + +#: libkpackagekit/KpkStrings.cpp:660 +msgctxt "The group type" +msgid "Legacy" +msgstr "Устаревшие" + +#: libkpackagekit/KpkStrings.cpp:662 +msgctxt "The group type" +msgid "Localization" +msgstr "Локализация" + +#: libkpackagekit/KpkStrings.cpp:664 +msgctxt "The group type" +msgid "Virtualization" +msgstr "Виртуализация" + +#: libkpackagekit/KpkStrings.cpp:666 +msgctxt "The group type" +msgid "Security" +msgstr "Безопасность" + +#: libkpackagekit/KpkStrings.cpp:668 +msgctxt "The group type" +msgid "Power management" +msgstr "Управление питанием" + +#: libkpackagekit/KpkStrings.cpp:670 +msgctxt "The group type" +msgid "Communication" +msgstr "Связь" + +#: libkpackagekit/KpkStrings.cpp:672 +msgctxt "The group type" +msgid "Network" +msgstr "Сеть" + +#: libkpackagekit/KpkStrings.cpp:674 +msgctxt "The group type" +msgid "Maps" +msgstr "Карты" + +#: libkpackagekit/KpkStrings.cpp:676 +msgctxt "The group type" +msgid "Software sources" +msgstr "Источники программ" + +#: libkpackagekit/KpkStrings.cpp:678 +msgctxt "The group type" +msgid "Science" +msgstr "Наука" + +#: libkpackagekit/KpkStrings.cpp:680 +msgctxt "The group type" +msgid "Documentation" +msgstr "Документация" + +#: libkpackagekit/KpkStrings.cpp:682 +msgctxt "The group type" +msgid "Electronics" +msgstr "Электроника" + +#: libkpackagekit/KpkStrings.cpp:684 +msgctxt "The group type" +msgid "Package collections" +msgstr "Коллекции пакетов" + +#: libkpackagekit/KpkStrings.cpp:686 +msgctxt "The group type" +msgid "Vendor" +msgstr "Производитель" + +#: libkpackagekit/KpkStrings.cpp:688 +msgctxt "The group type" +msgid "Newest packages" +msgstr "Новейшие пакеты" + +#: libkpackagekit/KpkStrings.cpp:690 +msgctxt "The group type" +msgid "Unknown group" +msgstr "Неизвестная группа" + +#: libkpackagekit/KpkStrings.cpp:700 +msgctxt "The type of update" +msgid "Trivial update" +msgstr "Простое обновление" + +#: libkpackagekit/KpkStrings.cpp:702 +msgctxt "The type of update" +msgid "Normal update" +msgstr "Обычное обновление" + +#: libkpackagekit/KpkStrings.cpp:704 +msgctxt "The type of update" +msgid "Important update" +msgstr "Важное обновление" + +#: libkpackagekit/KpkStrings.cpp:706 +msgctxt "The type of update" +msgid "Security update" +msgstr "Обновление безопасности" + +#: libkpackagekit/KpkStrings.cpp:708 +msgctxt "The type of update" +msgid "Bug fix update" +msgstr "Исправление ошибки" + +#: libkpackagekit/KpkStrings.cpp:710 +msgctxt "The type of update" +msgid "Enhancement update" +msgstr "Улучшение" + +#: libkpackagekit/KpkStrings.cpp:712 +msgctxt "The type of update" +msgid "Blocked update" +msgstr "Заблокированное обновление" + +#: libkpackagekit/KpkStrings.cpp:715 +msgctxt "The type of update" +msgid "Installed" +msgstr "Установлено" + +#: libkpackagekit/KpkStrings.cpp:718 +msgctxt "The type of update" +msgid "Available" +msgstr "Доступно" + +#: libkpackagekit/KpkStrings.cpp:720 +msgctxt "The type of update" +msgid "Unknown update" +msgstr "Неизвестное состояние" + +#: libkpackagekit/KpkStrings.cpp:731 +#, kde-format +msgid "1 trivial update" +msgid_plural "%1 trivial updates" +msgstr[0] "%1 обычное обновление" +msgstr[1] "%1 обычных обновления" +msgstr[2] "%1 обычных обновлений" + +#: libkpackagekit/KpkStrings.cpp:733 +#, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "1 update" +msgid_plural "%1 updates" +msgstr[0] "%1 обновление" +msgstr[1] "%1 обновления" +msgstr[2] "%1 обновлений" + +#: libkpackagekit/KpkStrings.cpp:735 +#, kde-format +msgid "1 important update" +msgid_plural "%1 important updates" +msgstr[0] "%1 важное обновление" +msgstr[1] "%1 важных обновления" +msgstr[2] "%1 важных обновлений" + +#: libkpackagekit/KpkStrings.cpp:737 +#, kde-format +msgid "1 security update" +msgid_plural "%1 security updates" +msgstr[0] "%1 обновление безопасности" +msgstr[1] "%1 обновления безопасности" +msgstr[2] "%1 обновлений безопасности" + +#: libkpackagekit/KpkStrings.cpp:739 +#, kde-format +msgid "1 bug fix update" +msgid_plural "%1 bug fix updates" +msgstr[0] "%1 исправление ошибки" +msgstr[1] "%1 исправления ошибок" +msgstr[2] "%1 исправлений ошибок" + +#: libkpackagekit/KpkStrings.cpp:741 +#, kde-format +msgid "1 enhancement update" +msgid_plural "%1 enhancement updates" +msgstr[0] "%1 улучшение" +msgstr[1] "%1 улучшения" +msgstr[2] "%1 улучшений" + +#: libkpackagekit/KpkStrings.cpp:743 +#, kde-format +msgid "1 blocked update" +msgid_plural "%1 blocked updates" +msgstr[0] "%1 заблокированное обновление" +msgstr[1] "%1 заблокированных обновления" +msgstr[2] "%1 заблокированных обновлений" + +#: libkpackagekit/KpkStrings.cpp:745 +#, kde-format +msgid "1 installed package" +msgid_plural "%1 installed packages" +msgstr[0] "%1 установленный пакет" +msgstr[1] "%1 установленных пакета" +msgstr[2] "%1 установленных пакетов" + +#: libkpackagekit/KpkStrings.cpp:747 +#, kde-format +msgid "1 available package" +msgid_plural "%1 available packages" +msgstr[0] "%1 доступный пакет" +msgstr[1] "%1 доступных пакета" +msgstr[2] "%1 доступных пакетов" + +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 +#, kde-format +msgid "1 unknown update" +msgid_plural "%1 unknown updates" +msgstr[0] "%1 неизвестное обновление" +msgstr[1] "%1 неизвестных обновления" +msgstr[2] "%1 неизвестных обновлений" + +#: libkpackagekit/KpkStrings.cpp:759 +#, kde-format +msgid "1 trivial update selected" +msgid_plural "%1 trivial updates selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:762 +#, fuzzy, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "1 update selected" +msgid_plural "%1 updates selected" +msgstr[0] "<< Обновить выбранные" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:765 +#, kde-format +msgid "1 important update selected" +msgid_plural "%1 important updates selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:767 +#, kde-format +msgid "1 security update selected" +msgid_plural "%1 security updates selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:769 +#, kde-format +msgid "1 bug fix update selected" +msgid_plural "%1 bug fix updates selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:771 +#, kde-format +msgid "1 enhancement update selected" +msgid_plural "%1 enhancement updates selected" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:773 +#, kde-format +msgid "1 installed package selected to be removed" +msgid_plural "%1 installed packages selected to be removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:776 +#, kde-format +msgid "1 available package selected to be installed" +msgid_plural "%1 available packages selected to be installed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:787 +#, fuzzy, kde-format +msgid "%1 trivial update" +msgid_plural "%1 trivial updates, %2 selected" +msgstr[0] "Простое обновление" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:790 +#, fuzzy, kde-format +msgctxt "Type of update, in the case it's just an update" +msgid "%1 update" +msgid_plural "%1 updates, %2 selected" +msgstr[0] "Обновить" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:792 +#, fuzzy, kde-format +msgid "%1 important update" +msgid_plural "%1 important updates, %2 selected" +msgstr[0] "Важное обновление" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:794 +#, fuzzy, kde-format +msgid "%1 security update" +msgid_plural "%1 security updates, %2 selected" +msgstr[0] "Обновление безопасности" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:796 +#, fuzzy, kde-format +msgid "%1 bug fix update" +msgid_plural "%1 bug fix updates, %2 selected" +msgstr[0] "Исправление ошибки" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:798 +#, fuzzy, kde-format +msgid "%1 enhancement update" +msgid_plural "%1 enhancement updates, %2 selected" +msgstr[0] "Улучшение" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:801 +#, fuzzy, kde-format +msgid "%1 blocked update" +msgid_plural "%1 blocked updates" +msgstr[0] "Заблокированное обновление" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:803 +#, kde-format +msgid "%1 installed package" +msgid_plural "%1 installed packages, %2 selected to be removed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:805 +#, kde-format +msgid "%1 available package" +msgid_plural "%1 available packages, %2 selected to be installed" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:808 +#, kde-format +msgid "%1 unknown update" +msgid_plural "%1 unknown updates" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: libkpackagekit/KpkStrings.cpp:817 +#, fuzzy +msgid "No restart is necessary" +msgstr "Перезапуск не обязателен" + +#: libkpackagekit/KpkStrings.cpp:819 +#, fuzzy +msgid "You will be required to restart this application" +msgstr "Вам необходимо будет перезапустить это приложение" + +#: libkpackagekit/KpkStrings.cpp:821 +#, fuzzy +msgid "You will be required to log out and back in" +msgstr "" +"Вам необходимо будет выйти из системы и зарегистрироваться в системе снова" + +#: libkpackagekit/KpkStrings.cpp:823 +#, fuzzy +msgid "A restart will be required" +msgstr "Потребуется перезапуск системы" + +#: libkpackagekit/KpkStrings.cpp:825 +msgid "You will be required to log out and back in due to a security update." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:827 +msgid "A restart will be required due to a security update." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:840 +msgid "No restart is required" +msgstr "Перезапуск системы не требуется" + +#: libkpackagekit/KpkStrings.cpp:842 +#, fuzzy +msgid "A restart is required" +msgstr "Требуется перезапуск" + +#: libkpackagekit/KpkStrings.cpp:844 +msgid "You need to log out and log back in" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:846 +msgid "You need to restart the application" +msgstr "Вам необходимо перезапустить приложение" + +#: libkpackagekit/KpkStrings.cpp:848 +msgid "You need to log out and log back in to remain secure." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:850 +msgid "A restart is required to remain secure." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:863 +msgid "Stable" +msgstr "Стабильное" + +#: libkpackagekit/KpkStrings.cpp:865 +msgid "Unstable" +msgstr "Нестабильное" + +#: libkpackagekit/KpkStrings.cpp:867 +msgid "Testing" +msgstr "Тестирование" + +#: libkpackagekit/KpkStrings.cpp:880 +#, kde-format +msgid "Please insert the CD labeled '%1', and press continue." +msgstr "Вставьте CD с меткой \"%1\" и нажмите \"Продолжить\"." + +#: libkpackagekit/KpkStrings.cpp:882 +#, kde-format +msgid "Please insert the DVD labeled '%1', and press continue." +msgstr "Вставьте DVD с меткой \"%1\" и нажмите \"Продолжить\"." + +#: libkpackagekit/KpkStrings.cpp:884 +#, kde-format +msgid "Please insert the disc labeled '%1', and press continue." +msgstr "Вставьте диск с меткой \"%1\" и нажмите \"Продолжить\"." + +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 +#, kde-format +msgid "Please insert the medium labeled '%1', and press continue." +msgstr "Вставьте носитель с меткой \"%1\" и нажмите \"Продолжить\"." + +#: libkpackagekit/KpkStrings.cpp:896 +msgid "A mirror is possibly broken" +msgstr "Возможно, зеркало неполное" + +#: libkpackagekit/KpkStrings.cpp:898 +msgid "The connection was refused" +msgstr "Соединение было отклонено" + +#: libkpackagekit/KpkStrings.cpp:900 +msgid "The parameter was invalid" +msgstr "Неверный параметр" + +#: libkpackagekit/KpkStrings.cpp:902 +msgid "The priority was invalid" +msgstr "Неверный приоритет" + +#: libkpackagekit/KpkStrings.cpp:904 +msgid "Backend warning" +msgstr "Предупреждение модуля" + +#: libkpackagekit/KpkStrings.cpp:906 +msgid "Daemon warning" +msgstr "Предупреждение демона" + +#: libkpackagekit/KpkStrings.cpp:908 +msgid "The package list cache is being rebuilt" +msgstr "Идёт перестройка кэша списка пакетов" + +#: libkpackagekit/KpkStrings.cpp:910 +msgid "An untrusted package was installed" +msgstr "Был установлен неподписанный пакет" + +#: libkpackagekit/KpkStrings.cpp:912 +msgid "A newer package exists" +msgstr "Существует более новый пакет" + +#: libkpackagekit/KpkStrings.cpp:914 +msgid "Could not find package" +msgstr "Не удаётся найти пакет" + +#: libkpackagekit/KpkStrings.cpp:916 +msgid "Configuration files were changed" +msgstr "Файлы конфигурации были изменены" + +#: libkpackagekit/KpkStrings.cpp:918 +msgid "Package is already installed" +msgstr "Пакет уже установлен" + +#: libkpackagekit/KpkStrings.cpp:920 +msgid "Automatic cleanup is being ignored" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:922 +msgid "Software source download failed" +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "У вас недостаточно прав для выполнения этого действия." + +#: libkpackagekit/KpkStrings.cpp:937 +msgid "Could not get a transaction id from packagekitd." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:939 +msgid "Cannot connect to this transaction id." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:941 +msgid "This action is unknown." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:943 +#, fuzzy +msgid "The packagekitd service could not be started." +msgstr "Не удаётся запустить службу packagekitd." + +#: libkpackagekit/KpkStrings.cpp:945 +#, fuzzy +msgid "The query is not valid." +msgstr "Неверный запрос." + +#: libkpackagekit/KpkStrings.cpp:947 +#, fuzzy +msgid "The file is not valid." +msgstr "Файл не совместим или повреждён." + +#: libkpackagekit/KpkStrings.cpp:949 +msgid "This function is not yet supported." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:951 +msgid "Could not talk to packagekitd." +msgstr "" + +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 +msgid "An unknown error happened." +msgstr "" + +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#, fuzzy +msgid "Ignore" +msgstr "Игнорировать" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                        • %2
                                                        Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                        • %2
                                                        Do you want to search " +"for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Программа хочет установить файл" +msgstr[1] "Программа хочет установить файлы" +msgstr[2] "Программа хочет установить файлы" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 хочет установить файл" +msgstr[1] "%1 хочет установить файлы" +msgstr[2] "%1 хочет установить файлы" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Установить" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Сбой запуска транзакции поиска файлов" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Пакет %1 уже предоставляет этот файл" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Не удалось установить файл" +msgstr[1] "Не удалось установить файлы" +msgstr[2] "Не удалось установить файлы" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Следующий пакет был установлен" +msgstr[1] "Следующие пакеты были установлены" +msgstr[2] "Следующие пакеты были установлены" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Не удалось найти файл ни в одном из пакетов" +msgstr[1] "Не удалось найти файлы ни в одном из пакетов" +msgstr[2] "Не удалось найти файлы ни в одном из пакетов" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Не удаётся найти пакет" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "Имеется %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                                        And another update" +msgid_plural "
                                                        And %1 more updates" +msgstr[0] "
                                                        и ещё %1 обновление" +msgstr[1] "
                                                        и ещё %1 обновления" +msgstr[2] "
                                                        и ещё %1 обновлений" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Просмотр и обновление" + +#: SmartIcon/KpkUpdateIcon.cpp:217 +msgid "Do not ask again" +msgstr "Не спрашивать больше" + +#: SmartIcon/KpkUpdateIcon.cpp:263 +msgid "Updates are being automatically installed." +msgstr "Идёт автоматическая установка обновлений." + +#: SmartIcon/KpkUpdateIcon.cpp:292 +msgid "Security updates are being automatically installed." +msgstr "Идёт автоматическая установка обновлений безопасности." + +#: SmartIcon/KpkUpdateIcon.cpp:319 +msgid "System update was successful." +msgstr "Обновление системы прошло успешно." + +#: SmartIcon/KpkUpdateIcon.cpp:328 +msgid "The software update failed." +msgstr "Сбой обновления программ" + +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Требуется следующий файл:" +msgstr[1] "Требуются следующие файлы:" +msgstr[2] "Требуются следующие файлы:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Произвести поиск сейчас?" +msgstr[1] "Произвести поиск сейчас?" +msgstr[2] "Произвести поиск сейчас?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 хочет установить файл" +msgstr[1] "%1 хочет установить файлы" +msgstr[2] "%1 хочет установить файлы" + +#: SmartIcon/KpkDistroUpgrade.cpp:68 +msgid "Start upgrade now" +msgstr "Начать обновление сейчас" + +#: SmartIcon/KpkDistroUpgrade.cpp:113 +msgid "Distribution upgrade finished. " +msgstr "Обновление дистрибутива завершено. " + +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Сбой запуска разрешения зависимостей" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Старые транзакции получены" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "Неизвестная ошибка" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                                                        • %2
                                                        Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                        • %2
                                                        Do you want to search " +"for and install these packages now?" +msgstr[0] "Выполнить поиск и установку этого пакета?" +msgstr[1] "Выполнить поиск и установку этих пакетов?" +msgstr[2] "Выполнить поиск и установку этих пакетов?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Программа хочет установить пакет" +msgstr[1] "Программа хочет установить пакеты" +msgstr[2] "Программа хочет установить пакеты" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 хочет установить пакет" +msgstr[1] "%1 хочет установить пакеты" +msgstr[2] "%1 хочет установить пакеты" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Установить" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Пакет уже установлен" +msgstr[1] "Пакет уже установлен" +msgstr[2] "Пакет уже установлен" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Не удалось установить пакет" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Не удаётся найти пакет ни в одном из источников программ" +msgstr[1] "Не удаётся найти пакеты ни в одном из источников программ" +msgstr[2] "Не удаётся найти пакеты ни в одном из источников программ" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Не удаётся найти %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "Значок панели KPackageKit" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "libpackagekit-qt and other stuff" +msgstr "libpackagekit-qt и др." + +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
                                                        %1
                                                        Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Для открытия файлов типа
                                                        %1
                                                        требуется дополнительная программа. " +"Выполнить поиск программы для открытия файлов этого типа?" +msgstr[1] "" +"Для открытия файлов типа
                                                        %1
                                                        требуется дополнительная программа. " +"Выполнить поиск программы для открытия файлов этого типа?" +msgstr[2] "" +"Для открытия файлов типа
                                                        %1
                                                        требуется дополнительная программа. " +"Выполнить поиск программы для открытия файлов этого типа?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Программа хочет установить файл" +msgstr[1] "Программа хочет установить файлы" +msgstr[2] "Программа хочет установить файлы" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 хочет установить файл" +msgstr[1] "%1 хочет установить файлы" +msgstr[2] "%1 хочет установить файлы" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Поиск" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Сбой поиска предоставляемых" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Приложение, которое может открывать файлы этого типа" +msgstr[1] "Приложения, которые могут открывать файлы этого типа" +msgstr[2] "Приложения, которые могут открывать файлы этого типа" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "Нет новых приложений, которые могли бы работать с этим типом файла" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Не удаётся найти программы" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Этот элемент не поддерживается модулем, или не является файлом." +msgstr[1] "Эти элементы не поддерживаются модулем, или не являются файлами." +msgstr[2] "Эти элементы не поддерживаются модулем, или не являются файлами." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Невозможно установить" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Установить" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Установить этот файл?" +msgstr[1] "Установить эти файлы?" +msgstr[2] "Установить эти файлы?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Установить?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Файл не был установлен" +msgstr[1] "Файлы не были установлены" +msgstr[2] "Файлы не были установлены" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Файл был успешно установлен" +msgstr[1] "Файлы были успешно установлены" +msgstr[2] "Файл были успешно установлены" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Произошла ошибка." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                        • %2
                                                        Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                        • %2
                                                        Do you want to " +"search for these now?" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Программа требует новый тип mime" +msgstr[1] "Программа требует новые типы mime" +msgstr[2] "Программа требует новые типы mime" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Программа требует новый тип mime" +msgstr[1] "Программа требует новые типы mime" +msgstr[2] "Программа требует новые типы mime" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Программа требует новый тип mime" +msgstr[1] "Программа требует новые типы mime" +msgstr[2] "Программа требует новые типы mime" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Выполнить поиск и установку этого пакета?" +msgstr[1] "Выполнить поиск и установку этих пакетов?" +msgstr[2] "Выполнить поиск и установку этих пакетов?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Не удаётся найти пакет ни в одном из источников программ" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "Сбой поиска предоставляемых" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Не удаётся найти пакет ни в одном из источников программ" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Транзакции" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 +msgid "Refresh package list" +msgstr "Обновить список пакетов" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 +msgid "Show messages" +msgstr "Показать сообщения" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 +msgid "Hide this icon" +msgstr "Скрыть этот значок" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Пакет..." +msgstr[1] "%2: %1 пакета" +msgstr[2] "%2: %1 пакетов" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 +#, kde-format +msgid "One message from the package manager" +msgid_plural "%1 messages from the package manager" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 +#, fuzzy +msgid "The system update has completed" +msgstr "Обновление системы завершено" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 +#, fuzzy +msgctxt "Restart the computer" +msgid "Restart" +msgstr "Перезапустить" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Не сейчас" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 +#, fuzzy +msgid "Logout" +msgstr "Выйти" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 +#, kde-format +msgid "%1% - %2" +msgstr "%1% - %2" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 +#, kde-format +msgid "%1" +msgstr "%1" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 +msgid "Package Manager Messages" +msgstr "Сообщение менеджера пакетов" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 +msgid "Message" +msgstr "Сообщение" + +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Программа хочет установить файл" +msgstr[1] "Программа хочет установить файлы" +msgstr[2] "Программа хочет установить файлы" + +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%1 хочет удалить файл" +msgstr[1] "%1 хочет удалить файлы" +msgstr[2] "%1 хочет удалить файлы" + +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "Следующий файл будет удалён:" +msgstr[1] "Следующие файлы будут удалены:" +msgstr[2] "Следующие файлы будут удалены:" + +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "Найти и удалить пакет, содержащий этот файл?" +msgstr[1] "Найти и удалить пакеты, содержащие эти файлы?" +msgstr[2] "Найти и удалить пакеты, содержащие эти файл?" + +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Поиск" + +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Следующий пакет будет удалён" +msgstr[1] "Следующие пакеты будут удалены" +msgstr[2] "Следующие пакеты будут удалены" + +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "Не удалось найти файл ни в одном из установленных пакетов" +msgstr[1] "Не удалось найти файлы ни в одном из установленных пакетов" +msgstr[2] "Не удалось найти файлы ни в одном из установленных пакетов" + +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
                                                        %1
                                                        Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                                        • %1
                                                        • Do you want to search for a program to open this file type now?" +msgstr "" +"Для открытия файлов типа
                                                          %1
                                                          требуется дополнительная программа. " +"Выполнить поиск программы для открытия файлов этого типа?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Программа требует новый тип mime" +msgstr[1] "Программа требует новые типы mime" +msgstr[2] "Программа требует новые типы mime" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 требует новый тип mime" +msgstr[1] "%1 требует новые типы mime" +msgstr[2] "%1 требует новые типы mime" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Поиск" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Нет новых приложений, которые могли бы работать с этим типом файла" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Не удаётся найти программы" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                                          Do you want to install this catalog?

                                                          • %2
                                                          " +msgid_plural "" +"

                                                          Do you want to install these catalogs?

                                                          • %2
                                                          " +msgstr[0] "Установить этот файл?" +msgstr[1] "Установить эти файлы?" +msgstr[2] "Установить эти файлы?" + +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Установить сейчас" +msgstr[1] "Установить сейчас" +msgstr[2] "Установить сейчас" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Установить" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Текущий модуль не поддерживает установку пакетов." + +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Not supported by this backend" +msgid "Not supported" +msgstr "Не поддерживается этим модулем" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Сбой завершения" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Пакеты с исходными текстами не могут быть установлены" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Сбой запуска разрешения зависимостей" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Ежечасно" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Ежедневно" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Еженедельно" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Ежемесячно" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Никогда" + +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "Только обновления безопасности" + +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "Все обновления" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Ничего" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Failed to set origin data" + +#: KPackageKit/main.cpp:36 +msgid "KPackageKit is a tool to manage software" +msgstr "" + +#: KPackageKit/main.cpp:46 +msgid "Show updates" +msgstr "Показать обновления" + +#: KPackageKit/main.cpp:47 +msgid "Show settings" +msgstr "Показать параметры" + +#: KPackageKit/main.cpp:48 +msgid "Show backend details" +msgstr "" + +#: KPackageKit/main.cpp:49 +msgid "Mime type installer" +msgstr "Установка типов mime" + +#: KPackageKit/main.cpp:50 +msgid "Package name installer" +msgstr "Установка пакета по имени" + +#: KPackageKit/main.cpp:51 +msgid "Single file installer" +msgstr "Установка одного файла" + +#: KPackageKit/main.cpp:52 +msgid "Single package remover" +msgstr "Удаление одного пакета" + +#: KPackageKit/main.cpp:53 +msgid "Package file to install" +msgstr "Устанавливаемый файл пакета" + +#: rc.cpp:1 +msgctxt "NAME OF TRANSLATORS" +msgid "Your names" +msgstr "Леонид Кантер" + +#: rc.cpp:2 +msgctxt "EMAIL OF TRANSLATORS" +msgid "Your emails" +msgstr "leon@asplinux.ru" + +#. i18n: file: Updater/KpkUpdate.ui:74 +#. i18n: ectx: property (text), widget (KPushButton, selectAllPB) +#: rc.cpp:5 +msgid "Select all updates" +msgstr "" + +#. i18n: file: Updater/KpkUpdate.ui:81 +#. i18n: ectx: property (text), widget (KPushButton, refreshPB) +#: rc.cpp:8 +msgid "Refresh" +msgstr "Обновить" + +#. i18n: file: Updater/KpkUpdate.ui:88 +#. i18n: ectx: property (text), widget (KPushButton, historyPB) +#. i18n: file: Updater/KpkHistory.ui:13 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) +#: rc.cpp:11 rc.cpp:14 +msgid "History" +msgstr "Журнал" + +#. i18n: file: Updater/KpkHistory.ui:22 +#. i18n: ectx: property (clickMessage), widget (KLineEdit, searchLineKLE) +#: rc.cpp:17 +msgid "Type filter" +msgstr "Фильтр типов" + +#. i18n: file: Updater/KpkHistory.ui:54 +#. i18n: ectx: property (text), widget (QLabel, timeCacheLabel) +#: rc.cpp:20 +msgid "Time since last cache refresh: 5 hours" +msgstr "Время с последнего обновления кэша: 5 часов" + +#. i18n: file: AddRm/KpkPackageDetails.ui:69 +#. i18n: ectx: property (text), widget (QToolButton, fileListTB) +#: rc.cpp:29 +msgid "File List" +msgstr "Список файлов" + +#. i18n: file: AddRm/KpkPackageDetails.ui:85 +#. i18n: ectx: property (text), widget (QToolButton, dependsOnTB) +#: rc.cpp:32 +msgid "Depends on" +msgstr "Зависит от" + +#. i18n: file: AddRm/KpkPackageDetails.ui:101 +#. i18n: ectx: property (text), widget (QToolButton, requiredByTB) +#: rc.cpp:35 +msgid "Required by" +msgstr "Требуется пакетами" + +#. i18n: file: AddRm/KpkAddRm.ui:20 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) +#: rc.cpp:38 +msgid "Add and Remove Software" +msgstr "Установка и удаление программ" + +#. i18n: file: AddRm/KpkAddRm.ui:34 +#. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) +#: rc.cpp:41 +msgid "Search packages" +msgstr "Поиск пакетов" + +#. i18n: file: AddRm/KpkAddRm.ui:68 +#. i18n: ectx: property (text), widget (QToolButton, filtersTB) +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#: rc.cpp:44 rc.cpp:155 +msgid "Filters" +msgstr "Фильтры" + +#. i18n: file: AddRm/KpkAddRm.ui:91 +#. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) +#: rc.cpp:47 +msgid "All Packages" +msgstr "Все пакеты" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) +#: rc.cpp:59 +msgid "Transaction" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:62 +msgid "icon" +msgstr "" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 +msgid "Downloading Packages" +msgstr "Загрузка пакетов" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 +#. i18n: ectx: property (text), widget (QLabel, packageL) +#: rc.cpp:74 +msgid "libfoo" +msgstr "libfoo" + +#. i18n: file: libkpackagekit/KpkRequirements.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:77 +msgid "Additional changes are required to complete the task" +msgstr "" + +#. i18n: file: libkpackagekit/KpkRequirements.ui:57 +#. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) +#: rc.cpp:80 +#, fuzzy +msgid "Actions" +msgstr "Действия" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:39 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:89 +msgid "Repository name:" +msgstr "Имя репозитория:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:65 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:92 +msgid "Signature URL:" +msgstr "URL подписи:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:91 +#. i18n: ectx: property (text), widget (QLabel, label_4) +#: rc.cpp:95 +msgid "Signature user identifier:" +msgstr "Идентификатор пользователя подписи:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:117 +#. i18n: ectx: property (text), widget (QLabel, label_5) +#: rc.cpp:98 +msgid "Signature identifier:" +msgstr "Идентификатор подписи:" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:144 +#. i18n: ectx: property (text), widget (QLabel, label_10) +#: rc.cpp:101 +msgid "Do you recognise the user and trust this key?" +msgstr "Вы узнаете пользователя и доверяете этому ключу?" + +#. i18n: file: libkpackagekit/KpkRepoSig.ui:161 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:104 +msgid "Do you trust the origin of packages?" +msgstr "Доверяете ли вы источнику происхождения пакетов?" + +#. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:110 +msgid "Please read the following important information before continuing:" +msgstr "" +"Прочитайте, пожалуйста, перед тем, как продолжить, следующую важную " +"информацию:" + +#. i18n: file: Settings/KpkSettings.ui:14 +#. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) +#: rc.cpp:113 +msgid "Settings" +msgstr "Параметры" + +#. i18n: file: Settings/KpkSettings.ui:29 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: rc.cpp:116 +#, fuzzy +#| msgid "Show settings" +msgid "Update settings" +msgstr "Показать параметры" + +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) +#: rc.cpp:119 +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "Проверять наличие обновлений:" + +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) +#: rc.cpp:122 +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "Автоматически устанавливать:" + +#. i18n: file: Settings/KpkSettings.ui:72 +#. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) +#: rc.cpp:125 +msgid "Notify when updates are available" +msgstr "Уведомлять при наличии обновлений" + +#. i18n: file: Settings/KpkSettings.ui:94 +#. i18n: ectx: property (title), widget (QGroupBox, originGB) +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" +msgstr "Происхождение пакетов" + +#. i18n: file: Settings/KpkSettings.ui:106 +#. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) +#: rc.cpp:131 +msgid "&Show origins of debug and development packages" +msgstr "&Отображать источники пакетов для отладки и разработки программ" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:26 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox) +#: rc.cpp:134 +#, fuzzy +msgid "About Backend" +msgstr "О модуле формата..." + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:32 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:137 +#, fuzzy +msgid "Backend name:" +msgstr "Имя модуля:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:39 +#. i18n: ectx: property (text), widget (QLabel, nameL) +#: rc.cpp:140 +msgid "backend name here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:46 +#. i18n: ectx: property (text), widget (QLabel, label_2) +#: rc.cpp:143 +#, fuzzy +msgid "Backend author:" +msgstr "Автор модуля:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "Поиск по &описанию" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 +#. i18n: ectx: property (text), widget (QLabel, authorL) +#: rc.cpp:149 +msgid "backend author name here" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "Find by &description" +msgid "backend description here" +msgstr "Поиск по &описанию" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 +#. i18n: ectx: property (text), widget (QCheckBox, visibleCB) +#: rc.cpp:164 +msgid "Package is visible" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 +#. i18n: ectx: property (text), widget (QCheckBox, newestCB) +#: rc.cpp:167 +#, fuzzy +msgid "Newest" +msgstr "Самый новый" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 +#. i18n: ectx: property (text), widget (QCheckBox, guiCB) +#: rc.cpp:170 +#, fuzzy +msgid "GUI" +msgstr "GUI" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 +#. i18n: ectx: property (text), widget (QCheckBox, freeCB) +#: rc.cpp:173 +msgid "Free software" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 +#. i18n: ectx: property (text), widget (QCheckBox, supportedCB) +#: rc.cpp:176 +msgid "Supported" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 +#. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) +#: rc.cpp:179 +#, fuzzy +msgid "Methods" +msgstr "Методы" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 +#. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) +#: rc.cpp:182 +msgid "GetUpdates" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 +#. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) +#: rc.cpp:185 +msgid "UpdatePackage" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 +#. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) +#: rc.cpp:188 +msgid "GetRepositoryList" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 +#. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) +#: rc.cpp:191 +msgid "RefreshCache" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 +#. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) +#: rc.cpp:194 +msgid "InstallPackage" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 +#. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) +#: rc.cpp:197 +msgid "RepositoryEnable" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 +#. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) +#: rc.cpp:200 +msgid "UpdateSystem" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 +#. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) +#: rc.cpp:203 +msgid "RemovePackage" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 +#. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) +#: rc.cpp:206 +msgid "RepositorySetEnable" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 +#. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) +#: rc.cpp:209 +msgid "SearchName" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 +#. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) +#: rc.cpp:212 +msgid "GetDepends" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 +#. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) +#: rc.cpp:215 +msgid "WhatProvides" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 +#. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) +#: rc.cpp:218 +msgid "SearchDetails" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 +#. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) +#: rc.cpp:221 +msgid "GetRequires" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 +#. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) +#: rc.cpp:224 +msgid "GetPackages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 +#. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) +#: rc.cpp:227 +msgid "SearchGroup" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 +#. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) +#: rc.cpp:230 +msgid "GetUpdateDetail" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 +#. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) +#: rc.cpp:233 +msgid "SearchFile" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 +#. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) +#: rc.cpp:236 +msgid "GetDescription" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 +#. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) +#: rc.cpp:242 +msgid "GetFiles" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 +#. i18n: ectx: property (text), widget (QCheckBox, resolveCB) +#: rc.cpp:245 +#, fuzzy +msgid "Resolve" +msgstr "&Разрешение конфликтов..." + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 +#. i18n: ectx: property (text), widget (QCheckBox, installFileCB) +#: rc.cpp:248 +msgid "InstallFIle" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) +#: rc.cpp:251 +msgid "SimulateInstallFiles" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 +#. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) +#: rc.cpp:254 +msgid "SimulateInstallPackages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 +#. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) +#: rc.cpp:257 +msgid "SimulateRemovePackages" +msgstr "" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 +#. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) +#: rc.cpp:260 +msgid "SimulateUpdatePackages" +msgstr "" + +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Старые транзакции получены" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "Этот элемент не поддерживается модулем, или не является файлом." +#~ msgstr[1] "Эти элементы не поддерживаются модулем, или не являются файлами." +#~ msgstr[2] "Эти элементы не поддерживаются модулем, или не являются файлами." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Требуется дополнительный пакет:" +#~ msgstr[1] "Требуются дополнительный пакеты:" +#~ msgstr[2] "Требуются дополнительные пакеты:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Выполнить поиск и установку этого пакета?" +#~ msgstr[1] "Выполнить поиск и установку этих пакетов?" +#~ msgstr[2] "Выполнить поиск и установку этих пакетов?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                                          %1
                                                          Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Для открытия файлов типа
                                                          %1
                                                          требуется дополнительная " +#~ "программа. Выполнить поиск программы для открытия файлов этого типа?" + +#~ msgid "All packages" +#~ msgstr "Все пакеты" + +#, fuzzy +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "У вас недостаточно прав для выполнения этого действия." + +#~ msgid "Package Name" +#~ msgstr "Название пакета" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Параметры KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Умный значок панели" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Уведомлять о завершении длинных заданий" diff -Nru kpackagekit-0.5.4/po/sk/kpackagekit.po kpackagekit-0.6.0/po/sk/kpackagekit.po --- kpackagekit-0.5.4/po/sk/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/sk/kpackagekit.po 2010-01-30 09:04:02.000000000 +0000 @@ -1,12 +1,13 @@ # translation of kpackagekit.po to Slovak -# Michal Sulek , 2009. +# Michal Sulek , 2009, 2010. +# Richard Fric , 2010. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-09-20 16:09+0200\n" -"Last-Translator: Michal Sulek \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2010-01-28 22:06+0100\n" +"Last-Translator: Richard Fric \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,11 +26,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Detaily" @@ -92,26 +93,26 @@ "Odporúča sa nechať počítač pripojený k napájaciemu adaptéru, kým sa " "aktualizácia nedokončí." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Aktualizácia distribúcie dokončená." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Proces aktualizácie distribúcie skončil s kódom %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Proces aktualizácie distribúcie sa nepodarilo spustiť." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "Proces aktualizácie distribúcie spadol po nejakom čase od spustenia." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Proces aktualizácie distribúcie zlyhal s neznámou chybou." @@ -191,28 +192,24 @@ msgid "Time since last cache refresh: %1" msgstr "Čas od poslednej obnovy vyrovnávacej pamäte: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Názov balíčka" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Domovská stránka" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licencia" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Skupina" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Domovská stránka" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Veľkosť" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Neboli nájdené žiadne súbory." @@ -224,19 +221,19 @@ msgid "KDE interface for managing software" msgstr "KDE rozhranie pre spravovanie softvéru" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Nájsť" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Všetky balíčky" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Textové hľadanie" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Zoznam zmien" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" @@ -244,236 +241,240 @@ msgstr[1] "Skupiny:" msgstr[2] "Skupiny:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Zrušiť" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Nájsť podľa &názvu" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Nájsť podľa názvu &súboru" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Nájsť podľa &popisu" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Prehľad zmien" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Kolekcie" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Iba kolekcie" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Vylúčiť kolekcie" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Nainštalované" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Iba nainštalované" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Iba dostupné" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Žiadny filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Vývojové" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Iba vývojové" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Iba užívateľské súbory" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafické" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Iba grafické" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Iba textové" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Slobodné" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Iba slobodný softvér" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Iba neslobodný softvér" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Architektúry" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Iba natívne architektúry" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Iba nenatívne architektúry" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Zdrojové" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Iba so zdrojovým kódom" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Iba bez zdrojového kódu" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Skryť podbalíčky" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Zobraziť iba jeden balíček, nie podbalíčky" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Iba najnovšie balíčky" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Zobraziť iba najnovší dostupný balíček" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Zobraziť v skupinách" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Zobraziť balíčky v skupinách podľa stavu" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Nasledujúci balíček bude nainštalovaný:" msgstr[1] "Nasledujúce balíčky budú nainštalované:" msgstr[2] "Nasledujúce balíčky budú nainštalované:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Inštalovať teraz" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Nasledujúci balíček bude odstránený:" msgstr[1] "Nasledujúce balíčky budú odstránené:" msgstr[2] "Nasledujúce balíčky budú odstránené:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Odstrániť teraz" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Nasledujúci balíček bude odstránený a nainštalovaný:" msgstr[1] "Nasledujúce balíčky budú odstránené a nainštalované:" msgstr[2] "Nasledujúce balíčky budú odstránené a nainštalované:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Použiť teraz" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Nepodarilo sa simulovať odstránenie balíčka" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Aktuálny backend nepodporuje odstraňovanie balíčkov." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Chyba KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Nepodarilo sa simulovať inštalácia balíčka" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Aktuálny backend nepodporuje inštalovanie balíčkov." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Nepodarilo sa odstrániť balíček" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Nepodarilo sa nainštalovať balíček" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Nepodarilo sa odstrániť balíček" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Skryť" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Umožňuje skryť okno bez prerušenia behu úlohy." -#: libkpackagekit/KpkTransaction.cpp:330 -#, fuzzy -#| msgid "" -#| "
                                                          Installing unsigned packages can compromise your system, as it is " -#| "impossible to verify if the software came from a trusted source. Are you " -#| "sure you want to continue installation?" +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -"
                                                          Inštalovanie nepodpísaných balíčkov môže ohroziť bezpečnosť vášho " -"systému, pretože je nemožné overiť, či softvér pochádza z dôveryhodného " -"zdroja. Naozaj chcete pokračovať v inštalácii?" +"Inštalovanie nepodpísaných balíčkov môže ohroziť bezpečnosť vášho systému, " +"pretože je nemožné overiť, či softvér pochádza z dôveryhodného zdroja.\n" +" Naozaj chcete pokračovať v inštalácii?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Inštaluje sa nepodpísaný softvér" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Je vyžadovaná zmena média" @@ -493,7 +494,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Vyžadovaná licenčná zmluva" @@ -506,13 +507,13 @@ msgid "Version" msgstr "Verzia" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Zrušiť" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Dokončené za %1." @@ -567,807 +568,815 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Je vyžadovaný podpis softvéru" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Neznámy stav" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Čaká sa na spustenie služby" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Čaká sa na ďalšie úlohy" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Prebieha úloha" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Zisťuje sa" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Získavajú sa informácie" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Odstraňujú sa balíčky" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Sťahujú sa balíčky" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Inštalujú sa balíčky" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Obnovuje sa zoznam softvéru" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Aktualizujú sa balíčky" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Čistia sa balíčky" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Odstraňujú sa zastarané balíčky" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Riešia sa závislosti" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Kontrolujú sa podpisy" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Vracajú sa zmeny" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Testujú sa zmeny" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Potvrdzujú sa zmeny" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Vyžadovanie dát" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Dokončené" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Ruší sa" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Sťahujú sa informácie o repozitároch" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Sťahuje sa zoznam balíčkov" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Sťahuje sa zoznam súborov" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Sťahujú sa zoznamy zmien" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Sťahujú sa skupiny" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Sťahujú sa informácie o aktualizáciách" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Znovu sa balia súbory" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Načítava sa vyrovnávacia pamäť" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Prehľadávajú sa nainštalované aplikácie" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Generuje sa zoznam balíčkov" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Čaká sa na zámok správcu balíčkov" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Čaká sa na overenie" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Aktualizuje sa zoznam spustených aplikácií" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "Kontrolujú sa aktuálne používané aplikácie" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Kontrolujú sa aktuálne používané knižnice" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Kopírujú sa súbory" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Stiahnutý" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Aktualizovaný" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Nainštalovaný" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Odstránený" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Vyčistený" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Zastaraný" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Neznámy typ role" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Získavajú sa závislosti" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Získavajú sa detaily o aktualizácii" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Získavajú sa detaily" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Získavajú sa požiadavky" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Získavajú sa aktualizácie" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Hľadajú sa detaily" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Hľadá sa súbor" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Hľadajú sa skupiny" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Hľadá sa podľa názvu súboru" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Odstraňuje sa" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Inštaluje sa" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Inštaluje sa súbor" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Obnovuje sa vyrovnávacia pamäť balíčkov" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Aktualizujú sa balíčky" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Aktualizuje sa systém" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Ruší sa" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Vracajú sa zmeny" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Získava sa zoznam repozitárov" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Povoľuje sa repozitár" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Nastavujú sa dáta repozitára" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Rieši sa" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Získava sa zoznam súborov" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Získava sa čo poskytuje" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Inštaluje sa podpis" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Získava sa zoznam balíčkov" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Prijíma sa EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Sťahujú sa balíčky" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Získavajú sa informácie o aktualizácii distribúcie" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Získavajú sa kategórie" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Získavajú sa staré transakcie" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Simulujú sa inštalačné súbory" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Simuluje sa inštalácia" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Simuluje sa odstránenie" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Simuluje sa aktualizácia" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Neznámy typ role" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Získané závislosti" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Získané detaily o aktualizácii" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Získané detaily" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Získané požiadavky" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Získané aktualizácie" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Nájdené detaily o balíčku" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Nájdený súbor" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Nájdené skupiny" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Nájdený názov balíčka" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Odstránené balíčky" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Nainštalované balíčky" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Nainštalované lokálne súbory" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Obnovená vyrovnávacia pamäť balíčkov" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Aktualizované balíčky" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Aktualizovaný systém" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Zrušené" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Zmeny vrátené" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Získaný zoznam repozitárov" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Povolený repozitár" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Nastavené dáta repozitára" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Vyriešené" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Získaný zoznam súborov" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Získané čo poskytuje" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Nainštalovaný podpis" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Získaný zoznam balíčkov" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Prijatá EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Stiahnuté balíčky" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Získané aktualizácie distribúcie" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Získané kategórie" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Získané staré transakcie" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Simulované inštalačné súbory" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Simulovaná inštalácia" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Simulované odstránenie" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Simulovaná aktualizácia" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Nie je dostupné sieťové pripojenie" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Nie je dostupná vyrovnávacia pamäť balíčkov" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Nedostatok pamäte" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Nepodarilo sa vytvoriť vlákno" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Nie je podporované týmto backendom" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Nastala vnútorná systémová chyba" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Bezpečnostný vzťah dôvery nie je k dispozícii" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Balíček nie je nainštalovaný" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Balíček nebol nájdený" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Balíček je už nainštalovaný" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Stiahnutie balíčka zlyhalo" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Skupina nebola nájdená" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Zoznam skupín bol neplatný" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Riešenie závislostí zlyhalo" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Filter hľadania bol neplatný" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Identifikátor balíčka nie je v správnom formáte" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Chyba transakcie" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Názov repozitára nebol nájdený" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Nepodarilo sa odstrániť chránený systémový balíček " -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Úloha bola zrušená" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Úloha bola násilne zrušená" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Čítanie konfiguračného súboru zlyhalo" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Úloha nemôže byť zrušená" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Zdrojové balíčky nemôžu byť nainštalované" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Licenčná zmluva zlyhala" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Konflikt lokálneho súboru medzi balíčkami" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Balíčky nie sú kompatibilné" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "Problém pri pripájaní k zdroju softvéru" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Inicializácia zlyhala" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Dokončenie zlyhalo" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Nie je možné získať zámok" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Žiadne balíčky na aktualizáciu" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Nie je možné zapísať konfiguráciu repozitára" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokálna inštalácia zlyhala" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Zlý GPG podpis" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Chýbajúci GPG podpis" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Konfigurácia repozitára je neplatná" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Neplatný súbor balíčka" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Inštalácia balíčka zablokovaná" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Balíček je poškodený" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Všetky balíčky sú už nainštalované" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Zadaný súbor sa nepodarilo nájsť" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Nie sú dostupné ďalšie zrkadlá" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Nie sú dostupné dáta k aktualizácii distribúcie" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Balíček je nekompatibilný s týmto systémom" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Na disku nie je dostatok miesta" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Overenie zlyhalo" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Aktualizácia nenájdená" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "Nie je možné inštalovať z nedôveryhodného zdroja" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "Nie je možné aktualizovať z nedôveryhodného zdroja" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Nie je možné získať zoznam súborov" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Nie je možné získať požiadavky balíčka" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "Nie je možné zakázať zdroj" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Sťahovanie zlyhalo" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Konfigurácia balíčka zlyhala" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Zostavenie balíčka zlyhalo" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Inštalácia balíčka zlyhala" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Odstránenie balíčka zlyhalo" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Neznáma chyba" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1375,7 +1384,7 @@ "Nie je dostupné sieťové pripojenie.\n" "Prosím skontrolujte nastavenie pripojenia a skúste to znovu" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1383,7 +1392,7 @@ "Je potrebné znovu zostaviť zoznam balíčkov.\n" "To by mal spraviť automaticky backend." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1393,11 +1402,11 @@ "nedostatok pamäte.\n" "Prosím ukončite niektoré programy alebo reštartujte svoj počítač." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "Vlákno pre obsluhu užívateľských požiadaviek sa nepodarilo vytvoriť." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1405,7 +1414,7 @@ "Akcia nie je týmto backendom podporovaná.\n" "Prosím pošlite správu o chybe, pretože toto sa nemalo stať." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1413,34 +1422,34 @@ "Nastal neočakávaný problém.\n" "Prosím pošlite správu o chybe s popisom chyby." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Nepodarilo sa vytvoriť bezpečnostný vzťah dôvery so zdrojom softvéru.\n" "Prosím skontrolujte svoje nastavenie softvérových podpisov." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Balíček, ktorý má byť odstránený alebo aktualizovaný, už nie je " "nainštalovaný." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Balíček, ktorý má byť zmenený, nebol nájdený vo vašom systéme ani v žiadnom " "zdroji softvéru." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Balíček, ktorý má byť nainštalovaný, je už nainštalovaný." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1448,7 +1457,7 @@ "Stiahnutie balíčka zlyhalo.\n" "Prosím skontrolujte svoje sieťové pripojenie." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1456,17 +1465,17 @@ "Typ skupiny nebol nájdený.\n" "Prosím skontrolujte svoj zoznam skupín a skúste to znovu." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Zoznam skupín sa nepodarilo načítať.\n" "Obnovenie vyrovnávacej pamäte môže pomôcť, hoci je toto obvykle chyba zdroja " "softvéru." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1474,11 +1483,11 @@ "Závislosť balíčka sa nepodarilo nájsť.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Filter hľadania nebol zadaný správne." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1487,7 +1496,7 @@ "démonu.\n" "Toto obvykle naznačuje internú chybu a mala by byť nahlásená." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1495,23 +1504,23 @@ "Nastala chyba počas behu transakcie.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Názov vzdialeného zdroja softvéru nebol nájdený.\n" "Možno bude treba povoliť túto položku v Zdrojoch softvéru." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Odstraňovanie chráneného systémového balíčka nie je povolené." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Úloha bola úspešne zrušená a žiadny balíček nebol zmenený." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1519,7 +1528,7 @@ "Úloha bola úspešne zrušená a žiadny balíček nebol zmenený.\n" "Backend nebol korektne ukončený." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1527,11 +1536,11 @@ "Natívny konfiguračný súbor sa nepodarilo otvoriť.\n" "Prosím skontrolujte, či je systémové nastavenie v poriadku." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "V tejto chvíli nie je bezpečné zrušiť úlohu." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1539,7 +1548,7 @@ "Zdrojové balíčky sa obvykle neinštalujú týmto spôsobom.\n" "Skontrolujte príponu súboru, ktorý sa pokúšate nainštalovať." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1547,31 +1556,31 @@ "Nebola potvrdená licenčná zmluva.\n" "Ak chcete používať tento softvéru musíte prijať licenciu." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Dva balíčky poskytujú rovnaký súbor.\n" "Toto je obvykle kvôli miešaniu balíčkov z rôznych zdrojov softvéru." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Existuje viacero balíčkov, ktoré nie sú navzájom kompatibilné.\n" "Toto je obvykle kvôli miešaniu balíčkov z rôznych zdrojov softvéru." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Nastal (pravdepodobne dočasný) problém s pripojením k zdroju softvéru.\n" "Pre viac detailov, prosím skontrolujte detailné chybové hlásenie." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1579,7 +1588,7 @@ "Nepodarilo sa inicializovať balíčkovací backend.\n" "Toto môže nastať, ak sú súčasne používané rôzne balíčkovacie nástroje." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1587,7 +1596,7 @@ "Nepodarilo sa zatvoriť inštanciu backendu.\n" "Táto chyba môže byť obvykle ignorovaná." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1596,15 +1605,15 @@ "Prosím ukončite všetky ostatné balíčkovacie nástroje, ktoré môžu byť " "otvorené." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Žiadny z vybraných balíčkov sa nepodarilo aktualizovať." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Nastavenie repozitára sa nepodarilo zmeniť." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1612,11 +1621,11 @@ "Inštalácia lokálneho súboru zlyhala.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Podpis balíčka sa nepodarilo overiť." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1624,11 +1633,11 @@ "Chýba podpis balíčka, a preto je tento balíček nedôveryhodný.\n" "Tento balíček nebol pri vytváraní podpísaný GPG kľúčom." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Nastavenie repozitára je neplatné a nemôže byť načítané." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1636,26 +1645,25 @@ "Balíček, ktorý sa pokúšate nainštalovať, je neplatný.\n" "Súbor balíčku môže byť poškodený, alebo nie je balíčkom." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" -"Inštalácii tohto balíčka bolo zabránené kvôli nastaveniu vášho " -"balíčkovacieho systému." +"Nastavenie vášho balíčkovacieho systému zabránilo inštalácii tohto balíčka." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" "Balíček, ktorý bol stiahnutý, je poškodený a je potrebné ho stiahnuť znovu." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Všetky balíčky vybrané na inštaláciu sú už v systéme nainštalované." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1663,32 +1671,32 @@ "Zadaný súbor sa nepodarilo nájsť v systéme.\n" "Skontrolujte, či súbor stále existuje a nebol odstránený." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Požadované dáta sa nepodarilo nájsť v žiadnom z nastavených zdrojov " "softvéru.\n" "Nie je dostupné žiadne ďalšie zrkadlo, ktoré by sa dalo vyskúšať." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Požadované dáta sa nepodarilo nájsť v žiadnom z nastavených zdrojov " "softvéru.\n" "Zoznam aktualizácií pre distribúciu nebude dostupný." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "Balíček, ktorý má byť nainštalovaný, nie je kompatibilný s týmto systémom." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1696,11 +1704,11 @@ "Na zariadení nie je dostatok miesta.\n" "Uvoľnite miesto na systémovom disku na vykonanie tejto operácie." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Na dokončenie tejto transakcie je vyžadované ďalšie médium." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1708,7 +1716,7 @@ "Nepodarilo sa overiť vašu totožnosť.\n" "Prosím skontrolujte heslá alebo nastavenie konta." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1717,27 +1725,27 @@ "Zadanú aktualizáciu sa nepodarilo nájsť.\n" "Môže byť už nainštalovaná alebo nedostupná na vzdialenom servery." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "Nepodarilo sa nainštalovať balíček z nedôveryhodného zdroja." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "Nepodarilo sa aktualizovať balíček z nedôveryhodného zdroja." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "Pre tento balíček nie je dostupný zoznam súborov." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "Nepodarilo sa získať informácie o požiadavkách tohto balíčka." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "Nepodarilo sa zakázať zadaný zdroj softvéru." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1746,7 +1754,7 @@ "manuálne.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1754,7 +1762,7 @@ "Jeden z vybraných balíčkov sa nepodarilo správne nastaviť.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1762,7 +1770,7 @@ "Jeden z vybraných balíčkov sa nepodarilo správne zostaviť.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1770,7 +1778,7 @@ "Jeden z vybraných balíčkov sa nepodarilo správne nainštalovať.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1778,7 +1786,7 @@ "Jeden z vybraných balíčkov sa nepodarilo správne odstrániť.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1786,232 +1794,232 @@ "Neznáma chyba, prosím pošlite správu o chybe.\n" "Viac informácií je dostupných v detailnej správe." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Prístupnosť" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Príslušenstvo" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Vzdelanie" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Hry" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafika" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kancelária" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Ostatné" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Vývoj" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimédiá" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Systém" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "Prostredie GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "Prostredie KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "Prostredie XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Ostatné prostredia" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publikovanie" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servery" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Písma" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Administrácia" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Staršie aplikácie" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Lokalizácia" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualizácia" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Bezpečnosť" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Správa napájania" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Komunikácia" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Sieť" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Mapy" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Zdroje softvéru" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Veda" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentácia" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronika" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Kolekcie balíčkov" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Dodávateľ" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Najnovšie balíčky" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Neznáma skupina" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Obyčajná aktualizácia" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normálna aktualizácia" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Dôležitá aktualizácia" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Bezpečnostná aktualizácia" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Opravná aktualizácia" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Vylepšujúca aktualizácia" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blokovaná aktualizácia" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Nainštalované" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Dostupné" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Neznáma aktualizácia" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" @@ -2019,7 +2027,7 @@ msgstr[1] "%1 obyčajné aktualizácie" msgstr[2] "%1 obyčajných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2028,7 +2036,7 @@ msgstr[1] "%1 aktualizácie" msgstr[2] "%1 aktualizácií" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" @@ -2036,7 +2044,7 @@ msgstr[1] "%1 dôležité aktualizácie" msgstr[2] "%1 dôležitých aktualizácií" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" @@ -2044,7 +2052,7 @@ msgstr[1] "%1 bezpečnostné aktualizácie" msgstr[2] "%1 bezpečnostných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" @@ -2052,7 +2060,7 @@ msgstr[1] "%1 opravné aktualizácie" msgstr[2] "%1 opravných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" @@ -2060,7 +2068,7 @@ msgstr[1] "%1 vylepšujúce aktualizácie" msgstr[2] "%1 vylepšujúcich aktualizácií" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" @@ -2068,7 +2076,7 @@ msgstr[1] "%1 blokované aktualizácie" msgstr[2] "%1 blokovaných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" @@ -2076,7 +2084,7 @@ msgstr[1] "%1 nainštalované balíčky" msgstr[2] "%1 nainštalovaných balíčkov" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" @@ -2084,7 +2092,7 @@ msgstr[1] "%1 dostupné balíčky" msgstr[2] "%1 dostupných balíčkov" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" @@ -2092,7 +2100,7 @@ msgstr[1] "%1 neznáme aktualizácie" msgstr[2] "%1 neznámych aktualizácií" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" @@ -2100,7 +2108,7 @@ msgstr[1] "vybrané %1 obyčajné aktualizácie" msgstr[2] "vybraných %1 obyčajných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2109,7 +2117,7 @@ msgstr[1] "vybrané %1 aktualizácie" msgstr[2] "vybraných %1 aktualizácií" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" @@ -2117,7 +2125,7 @@ msgstr[1] "vybrané %1 dôležité aktualizácie" msgstr[2] "vybraných %1 dôležitých aktualizácií" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" @@ -2125,7 +2133,7 @@ msgstr[1] "vybrané %1 bezpečnostné aktualizácie" msgstr[2] "vybraných %1 bezpečnostných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" @@ -2133,7 +2141,7 @@ msgstr[1] "vybrané %1 opravné aktualizácie" msgstr[2] "vybraných %1 opravných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" @@ -2141,7 +2149,7 @@ msgstr[1] "vybrané %1 vylepšujúce aktualizácie" msgstr[2] "vybraných %1 vylepšujúcich aktualizácií" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" @@ -2149,7 +2157,7 @@ msgstr[1] "vybrané %1 nainštalované balíčky na odstránenie" msgstr[2] "vybraných %1 nainštalovaných balíčkov na odstránenie" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" @@ -2157,7 +2165,7 @@ msgstr[1] "vybrané %1 dostupné balíčky na inštaláciu" msgstr[2] "vybraných %1 dostupných balíčkov na inštaláciu" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" @@ -2165,7 +2173,7 @@ msgstr[1] "%1 obyčajné aktualizácie, vybrané: %2" msgstr[2] "%1 obyčajných aktualizácií, vybrané: %2" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2174,7 +2182,7 @@ msgstr[1] "%1 aktualizácie, vybrané: %2" msgstr[2] "%1 aktualizácií, vybrané: %2" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" @@ -2182,7 +2190,7 @@ msgstr[1] "%1 dôležité aktualizácie, vybrané: %2" msgstr[2] "%1 dôležitých aktualizácií, vybrané: %2" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" @@ -2190,7 +2198,7 @@ msgstr[1] "%1 bezpečnostné aktualizácie, vybrané: %2" msgstr[2] "%1 bezpečnostných aktualizácií, vybrané: %2" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" @@ -2198,7 +2206,7 @@ msgstr[1] "%1 opravné aktualizácie, vybrané: %2" msgstr[2] "%1 opravných aktualizácií, vybrané: %2" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" @@ -2206,7 +2214,7 @@ msgstr[1] "%1 vylepšujúce aktualizácie, vybrané: %2" msgstr[2] "%1 vylepšujúcich aktualizácií, vybrané: %2" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" @@ -2214,7 +2222,7 @@ msgstr[1] "%1 blokované aktualizácie" msgstr[2] "%1 blokovaných aktualizácií" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" @@ -2222,7 +2230,7 @@ msgstr[1] "%1 nainštalované balíčky, vybrané na odstránenie: %2" msgstr[2] "%1 nainštalovaných balíčkov, vybrané na odstránenie: %2" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" @@ -2230,7 +2238,7 @@ msgstr[1] "%1 dostupné balíčky, vybrané na inštaláciu: %2" msgstr[2] "%1 dostupných balíčkov, vybrané na inštaláciu: %2" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" @@ -2238,195 +2246,282 @@ msgstr[1] "%1 neznáme aktualizácie" msgstr[2] "%1 neznámych aktualizácií" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Nie je potrebný reštart" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Bude potrebné reštartovať túto aplikáciu" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Bude potrebné odhlásiť sa a znovu prihlásiť" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Bude vyžadovaný reštart" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "Bude potrebné odhlásiť sa a znovu prihlásiť kvôli bezpečnostnej aktualizácii." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "Bude vyžadovaný reštart kvôli bezpečnostnej aktualizácii." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Nie je vyžadovaný reštart" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Je vyžadovaný reštart" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Je potrebné sa odhlásiť a znovu prihlásiť" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Je potrebné reštartovať aplikáciu" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "Je potrebné sa odhlásiť a znovu prihlásiť kvôli bezpečnosti." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "Je vyžadovaný reštart kvôli bezpečnosti." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabilné" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Nestabilné" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Testovacie" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Prosím vložte CD označené '%1', a kliknite pokračovať." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Prosím vložte DVD označené '%1', a kliknite pokračovať." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Prosím vložte disk označený '%1', a kliknite pokračovať." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Prosím vložte médium označené '%1', a kliknite pokračovať." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Zrkadlo je pravdepodobne poškodené" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Spojenie bolo odmietnuté" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Neplatný parameter" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Neplatná priorita" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Varovanie backendu" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Varovanie démona" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Zostavuje sa vyrovnávacia pamäť zoznamu balíčkov" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Bol nainštalovaný nedôveryhodný balíček" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Existuje novší balíček" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Nepodarilo sa nájsť balíček" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Konfiguračné súbory boli zmenené" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Balíček je už nainštalovaný" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "Automatické čistenie bude ignorované" -#: libkpackagekit/KpkStrings.cpp:883 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "Stiahnutie balíčka zlyhalo" +msgstr "Stiahnutie zdroja softvéru zlyhalo" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Nemáte dostatočné práva na vykonanie tejto akcie." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "Nepodarilo sa získať transakčné id z packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Nedá sa pripojiť k tomuto transakčnému id." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Neznáma akcia." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Nepodarilo sa spustiť službu packagekitd." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "Dotaz je neplatný." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "Súbor je neplatný." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Táto funkcia ešte nie je podporovaná." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Nepodarilo sa komunikovať s packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Nastala neznáma chyba." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorovať" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                          • %2
                                                          Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                          • %2
                                                          Do you want to search " +"for these now?" +msgstr[0] "" +"Je požadovaný nasledujúci súbor:
                                                          • %2
                                                          Chcete ho teraz hľadať?" +msgstr[1] "" +"Sú požadované nasledujúce súbory:
                                                          • %2
                                                          Chcete ich teraz " +"hľadať?" +msgstr[2] "" +"Sú požadované nasledujúce súbory:
                                                          • %2
                                                          Chcete ich teraz " +"hľadať?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Program chce nainštalovať súbor" +msgstr[1] "Program chce nainštalovať súbory" +msgstr[2] "Program chce nainštalovať súbory" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 chce nainštalovať súbor" +msgstr[1] "%2 chce nainštalovať súbory" +msgstr[2] "%2 chce nainštalovať súbory" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Inštalovať" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Nepodarilo sa spustiť transakciu hľadania súboru" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Balíček %1 už poskytuje tento súbor" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Inštalácia súboru zlyhala" +msgstr[1] "Inštalácia súborov zlyhala" +msgstr[2] "Inštalácia súborov zlyhala" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Nasledujúci balíček bude nainštalovaný" +msgstr[1] "Nasledujúce balíčky budú nainštalované" +msgstr[2] "Nasledujúce balíčky budú nainštalované" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Súbor sa nepodarilo nájsť v žiadnych balíčkoch" +msgstr[1] "Súbory sa nepodarilo nájsť v žiadnych balíčkoch" +msgstr[2] "Súbory sa nepodarilo nájsť v žiadnych balíčkoch" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Nepodarilo sa nájsť balíček" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Máte %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                                          And another update" msgid_plural "
                                                          And %1 more updates" @@ -2434,94 +2529,382 @@ msgstr[1] "
                                                          A ďalšie %1 aktualizácie" msgstr[2] "
                                                          A ďalších %1 aktualizácií" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Aktualizovať" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Teraz nie" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Znovu sa už nepýtať" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Aktualizácie sú automaticky inštalované." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Bezpečnostné aktualizácie sú automaticky inštalované." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Aktualizácia systému bola úspešná." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Aktualizácia softvéru zlyhala." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Je vyžadovaný nasledujúci súbor:" +msgstr[1] "Sú vyžadované nasledujúce súbory:" +msgstr[2] "Sú vyžadované nasledujúce súbory:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Chcete ho hľadať teraz?" +msgstr[1] "Chcete ich hľadať teraz?" +msgstr[2] "Chcete ich hľadať teraz?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 chce nainštalovať súbor" +msgstr[1] "%1 chce nainštalovať súbory" +msgstr[2] "%1 chce nainštalovať súbory" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Spustiť aktualizáciu" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Aktualizácia distribúcie dokončená. " -#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 -msgid "KPackageKit" -msgstr "KPackageKit" - -#: SmartIcon/main.cpp:36 -msgid "KPackageKit Tray Icon" -msgstr "KPackageKit ikona systémovej lišty" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Nepodarilo sa spustiť transakciu riešenia" -#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 -msgid "Daniel Nicoletti" -msgstr "Daniel Nicoletti" +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "Užívateľ zrušil transakciu" -#: SmartIcon/main.cpp:41 -msgid "Trever Fischer" -msgstr "Trever Fischer" +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Nastala neznáma chyba" -#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 -msgid "Adrien Bustany" -msgstr "Adrien Bustany" +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                                          • %2
                                                          Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                          • %2
                                                          Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Je požadovaný ďalší balíček:
                                                          • %2
                                                          Chcete hľadať a " +"nainštalovať tento balíček?" +msgstr[1] "" +"Sú požadované ďalšie balíčky:
                                                          • %2
                                                          Chcete hľadať a " +"nainštalovať tieto balíčky?" +msgstr[2] "" +"Sú požadované ďalšie balíčky:
                                                          • %2
                                                          Chcete hľadať a " +"nainštalovať tieto balíčky?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Program chce nainštalovať balíček" +msgstr[1] "Program chce nainštalovať balíčky" +msgstr[2] "Program chce nainštalovať balíčky" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 chce nainštalovať balíček" +msgstr[1] "%2 chce nainštalovať balíčky" +msgstr[2] "%2 chce nainštalovať balíčky" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Inštalovať" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Balíček %2 je už nainštalovaný" +msgstr[1] "Balíčky %2 sú už nainštalované" +msgstr[2] "Balíčky %2 sú už nainštalované" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Nepodarilo sa nainštalovať balíčky" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "Transakcia skončila s neúspechom" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Balíček sa nepodarilo nájsť v žiadnom zdroji softvéru" +msgstr[1] "Balíčky sa nepodarilo nájsť v žiadnom zdroji softvéru" +msgstr[2] "Balíčky sa nepodarilo nájsť v žiadnom zdroji softvéru" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Nepodarilo sa nájsť %1" + +#: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 +msgid "KPackageKit" +msgstr "KPackageKit" + +#: SmartIcon/main.cpp:36 +msgid "KPackageKit Tray Icon" +msgstr "KPackageKit ikona systémovej lišty" + +#: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 +msgid "Daniel Nicoletti" +msgstr "Daniel Nicoletti" + +#: SmartIcon/main.cpp:41 +msgid "Trever Fischer" +msgstr "Trever Fischer" + +#: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 +msgid "Adrien Bustany" +msgstr "Adrien Bustany" #: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt a ostatné veci" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Na správne zobrazenie tohto dokumentu je vyžadované ďalšie písmo. Chcete " +"teraz vyhľadať odpovedajúci balíček?" +msgstr[1] "" +"Na správne zobrazenie tohto dokumentu sú vyžadované ďalšie písma. Chcete " +"teraz vyhľadať odpovedajúce balíčky?" +msgstr[2] "" +"Na správne zobrazenie tohto dokumentu sú vyžadované ďalšie písma. Chcete " +"teraz vyhľadať odpovedajúce balíčky?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Program chce nainštalovať písmo" +msgstr[1] "Program chce nainštalovať písma" +msgstr[2] "Program chce nainštalovať písma" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 chce nainštalovať písmo" +msgstr[1] "%2 chce nainštalovať písma" +msgstr[2] "%2 chce nainštalovať písma" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Hľadať" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Nepodarilo sa nájsť" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Aplikácia, ktorá dokáže otvoriť tento typ súboru" +msgstr[1] "Aplikácie, ktoré dokážu otvoriť tento typ súboru" +msgstr[2] "Aplikácie, ktoré dokážu otvoriť tento typ súboru" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "Neboli nájdené žiadne nové písma pre tento dokument" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Nepodarilo sa nájsť písmo" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Táto položka nie je podporovaná vašim backendom, alebo to nie je súbor. " +msgstr[1] "" +"Tieto položky nie sú podporované vašim backendom, alebo to nie sú súbory." +msgstr[2] "" +"Tieto položky nie sú podporované vašim backendom, alebo to nie sú súbory." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Nemožno nainštalovať" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Inštalovať" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Chcete nainštalovať tento súbor?" +msgstr[1] "Chcete nainštalovať tieto súbory?" +msgstr[2] "Chcete nainštalovať tieto súbory?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Inštalovať?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Súbor nebol nainštalovaný" +msgstr[1] "Súbory neboli nainštalované" +msgstr[2] "Súbory neboli nainštalované" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Súbor bol úspešne nainštalovaný" +msgstr[1] "Súbory boli úspešne nainštalované" +msgstr[2] "Súbory boli úspešne nainštalované" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Nastala chyba." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                          • %2
                                                          Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                          • %2
                                                          Do you want to " +"search for these now?" +msgstr[0] "" +"Je požadovaný nasledujúci modul:
                                                          • %2
                                                          Chcete ho teraz hľadať?" +msgstr[1] "" +"Sú požadované nasledujúce moduly:
                                                          • %2
                                                          Chcete ich teraz " +"hľadať?" +msgstr[2] "" +"Sú požadované nasledujúce moduly:
                                                          • %2
                                                          Chcete ich teraz " +"hľadať?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Program vyžaduje ďalší modul pre dekódovanie tohto súboru" +msgstr[1] "Program vyžaduje ďalšie moduly pre dekódovanie tohto súboru" +msgstr[2] "Program vyžaduje ďalšie moduly pre dekódovanie tohto súboru" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Program vyžaduje ďalší modul pre kódovanie tohto súboru" +msgstr[1] "Program vyžaduje ďalšie moduly pre kódovanie tohto súboru" +msgstr[2] "Program vyžaduje ďalšie moduly pre kódovanie tohto súboru" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Program vyžaduje ďalší modul pre túto operáciu" +msgstr[1] "Program vyžaduje ďalšie moduly pre túto operáciu" +msgstr[2] "Program vyžaduje ďalšie moduly pre túto operáciu" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 vyžaduje ďalší modul pre dekódovanie tohto súboru" +msgstr[1] "%2 vyžaduje ďalšie moduly pre dekódovanie tohto súboru" +msgstr[2] "%2 vyžaduje ďalšie moduly pre dekódovanie tohto súboru" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 vyžaduje ďalší modul pre kódovanie tohto súboru" +msgstr[1] "%2 vyžaduje ďalšie moduly pre kódovanie tohto súboru" +msgstr[2] "%2 vyžaduje ďalšie moduly pre kódovanie tohto súboru" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 vyžaduje ďalší modul pre túto operáciu" +msgstr[1] "%2 vyžaduje ďalšie moduly pre túto operáciu" +msgstr[2] "%2 vyžaduje ďalšie moduly pre túto operáciu" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Chcete teraz nainštalovať tento balíček?" +msgstr[1] "Chcete teraz nainštalovať tieto balíčky?" +msgstr[2] "Chcete teraz nainštalovať tieto balíčky?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "Modul sa nepodarilo nájsť v žiadnom nastavenom zdroji softvéru" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Modul sa nepodarilo sa nájsť" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "Názov súboru sa nepodarilo nájsť v žiadnom zdroji softvéru" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transakcie" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Obnoviť zoznam balíčkov" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Zobraziť správy" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Skryť túto ikonu" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Balíček: %1" -msgstr[1] "Balíčky: %1" -msgstr[2] "Balíčkov: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Balíček: %2" +msgstr[1] "Balíčky: %2" +msgstr[2] "Balíčkov: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" @@ -2529,177 +2912,67 @@ msgstr[1] "%1 správy od správcu balíčkov" msgstr[2] "%1 správ od správcu balíčkov" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Aktualizácia systému je dokončená" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Reštartovať" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Teraz nie" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Odhlásiť" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Správy správcu balíčkov" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Správa" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Nastavenie KPackageKit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Každú hodinu" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Denne" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Týždenne" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Mesačne" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nikdy" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Iba bezpečnostné aktualizácie" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Všetky aktualizácie" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Žiadne" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Nemáte dostatočné práva na vykonanie tejto akcie." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Nepodarilo sa nastaviť pôvod dát" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Je vyžadovaný nasledujúci súbor:" -msgstr[1] "Sú vyžadované nasledujúce súbory:" -msgstr[2] "Sú vyžadované nasledujúce súbory:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Chcete ho hľadať teraz?" -msgstr[1] "Chcete ich hľadať teraz?" -msgstr[2] "Chcete ich hľadať teraz?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Program chce nainštalovať súbor" -msgstr[1] "Program chce nainštalovať súbory" -msgstr[2] "Program chce nainštalovať súbory" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 chce nainštalovať súbor" -msgstr[1] "%1 chce nainštalovať súbory" -msgstr[2] "%1 chce nainštalovať súbory" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Inštalovať" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Nepodarilo sa spustiť transakciu hľadania súboru" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Balíček %1 už poskytuje tento súbor" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Nasledujúci balíček bude nainštalovaný" -msgstr[1] "Nasledujúce balíčky budú nainštalované" -msgstr[2] "Nasledujúce balíčky budú nainštalované" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Súbor sa nepodarilo nájsť v žiadnych balíčkoch" -msgstr[1] "Súbory sa nepodarilo nájsť v žiadnych balíčkoch" -msgstr[2] "Súbory sa nepodarilo nájsť v žiadnych balíčkoch" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Nepodarilo sa nájsť balíček" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Program chce odstrániť súbor" msgstr[1] "Program chce odstrániť súbory" msgstr[2] "Program chce odstrániť súbory" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 chce odstrániť súbor" -msgstr[1] "%1 chce odstrániť súbory" -msgstr[2] "%1 chce odstrániť súbory" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 chce odstrániť súbor" +msgstr[1] "%2 chce odstrániť súbory" +msgstr[2] "%2 chce odstrániť súbory" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Nasledujúci súbor bude odstránený:" msgstr[1] "Nasledujúce súbory budú odstránené:" msgstr[2] "Nasledujúce súbory budú odstránené:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2709,30 +2982,157 @@ msgstr[1] "Chcete hľadať balíčky obsahujúce tieto súbory a odstrániť ich?" msgstr[2] "Chcete hľadať balíčky obsahujúce tieto súbory a odstrániť ich?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Hľadať" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Nasledujúci balíček bude odstránený" msgstr[1] "Nasledujúce balíčky budú odstránené" msgstr[2] "Nasledujúce balíčky budú odstránené" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "Súbor sa nepodarilo nájsť v žiadnom nainštalovanom balíčku" msgstr[1] "Súbory sa nepodarilo sa nájsť v žiadnom nainštalovanom balíčku" msgstr[2] "Súbory sa nepodarilo sa nájsť v žiadnom nainštalovanom balíčku" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "Nepodarilo sa nájsť %1" +msgid "" +"An additional program is required to open this type of file:
                                                          • %1
                                                          • Do you want to search for a program to open this file type now?" +msgstr "" +"Na otvorenie tohto typu súboru je vyžadovaný ďalší program:
                                                            • %1
                                                            • Chcete teraz vyhľadať program na otvorenie tohto typu súboru?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Program vyžaduje nový typ MIME" +msgstr[1] "Program vyžaduje nové typy MIME" +msgstr[2] "Program vyžaduje nové typy MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 vyžaduje nový typ MIME" +msgstr[1] "%2 vyžaduje nové typy MIME" +msgstr[2] "%2 vyžaduje nové typy MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Hľadať" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Nebola nájdená žiadna nová aplikácia pre daný typ súboru" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Nepodarilo sa nájsť softvér" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                                              Do you want to install this catalog?

                                                              • %2
                                                              " +msgid_plural "" +"

                                                              Do you want to install these catalogs?

                                                              • %2
                                                              " +msgstr[0] "

                                                              Chcete nainštalovať tento katalóg?

                                                              • %2
                                                              " +msgstr[1] "

                                                              Chcete nainštalovať tieto katalógy?

                                                              • %2
                                                              " +msgstr[2] "

                                                              Chcete nainštalovať tieto katalógy?

                                                              • %2
                                                              " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Inštalovať katalóg" +msgstr[1] "Inštalovať katalógy" +msgstr[2] "Inštalovať katalógy" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Inštalovať" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Váš backend nepodporuje žiadnu metódu potrebnú na inštaláciu katalógu" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Nepodporované" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Katalóg %2 sa nepodarilo otvoriť" +msgstr[1] "Katalógy %2 sa nepodarilo otvoriť" +msgstr[2] "Katalógy %2 sa nepodarilo otvoriť" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Nepodarilo sa otvoriť" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "Nebol nájdený žiadny balíček na inštaláciu" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Nepodarilo sa spustiť nastavenie transakcie" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Nastavenie KPackageKit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Každú hodinu" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Denne" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Týždenne" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Mesačne" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Nikdy" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Iba bezpečnostné aktualizácie" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Všetky aktualizácie" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Žiadne" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Nepodarilo sa nastaviť zdroj dát" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2770,154 +3170,6 @@ msgid "Package file to install" msgstr "Súbor balíčka na inštaláciu" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Táto položka nie je podporovaná vašim backendom, alebo to nie je súbor." -msgstr[1] "" -"Tieto položky nie sú podporované vašim backendom, alebo to nie sú súbory." -msgstr[2] "" -"Tieto položky nie sú podporované vašim backendom, alebo to nie sú súbory." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Nemožno nainštalovať" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Inštalovať" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Chcete nainštalovať tento súbor?" -msgstr[1] "Chcete nainštalovať tieto súbory?" -msgstr[2] "Chcete nainštalovať tieto súbory?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Inštalovať?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Súbor nebol nainštalovaný" -msgstr[1] "Súbory neboli nainštalované" -msgstr[2] "Súbory neboli nainštalované" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Inštalácia súboru zlyhala" -msgstr[1] "Inštalácia súborov zlyhala" -msgstr[2] "Inštalácia súborov zlyhala" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Súbor bol úspešne nainštalovaný" -msgstr[1] "Súbory boli úspešne nainštalované" -msgstr[2] "Súbory boli úspešne nainštalované" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Nastala chyba." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Je vyžadovaný ďalší balíček:" -msgstr[1] "Sú vyžadované ďalšie balíčky:" -msgstr[2] "Sú vyžadované ďalšie balíčky:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Chcete hľadať a nainštalovať tento balíček?" -msgstr[1] "Chcete hľadať a nainštalovať tieto balíčky?" -msgstr[2] "Chcete hľadať a nainštalovať tieto balíčky?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Program chce nainštalovať balíček" -msgstr[1] "Program chce nainštalovať balíčky" -msgstr[2] "Program chce nainštalovať balíčky" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 chce nainštalovať balíček" -msgstr[1] "%1 chce nainštalovať balíčky" -msgstr[2] "%1 chce nainštalovať balíčky" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Inštalovať" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Nepodarilo sa spustiť transakciu riešenia" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Balíček sa nepodarilo nájsť v žiadnom zdroji softvéru" -msgstr[1] "Balíčky sa nepodarilo nájsť v žiadnom zdroji softvéru" -msgstr[2] "Balíčky sa nepodarilo nájsť v žiadnom zdroji softvéru" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                              %1
                                                              Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Na otvorenie tohto typu súboru je vyžadovaný prídavný program:
                                                              %1
                                                              " -"Chcete teraz vyhľadať program na otvorenie tohto typu súboru?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Program vyžaduje nový typ MIME" -msgstr[1] "Program vyžaduje nové typy MIME" -msgstr[2] "Program vyžaduje nové typy MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 vyžaduje nový typ MIME" -msgstr[1] "%1 vyžaduje nové typy MIME" -msgstr[2] "%1 vyžaduje nové typy MIME" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Hľadať" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Nepodarilo sa nájsť" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplikácia, ktorá dokáže otvoriť tento typ súboru" -msgstr[1] "Aplikácie, ktoré dokážu otvoriť tento typ súboru" -msgstr[2] "Aplikácie, ktoré dokážu otvoriť tento typ súboru" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Nebola nájdená žiadna nová aplikácia pre daný typ súboru" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Nepodarilo sa nájsť softvér" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2928,19 +3180,19 @@ msgid "Your emails" msgstr "misurel@gmail.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Vybrať všetky aktualizácie" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Obnoviť" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2978,390 +3230,392 @@ msgid "Required by" msgstr "Vyžadované" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Pridať a odstrániť softvér" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Hľadať balíčky" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtre" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Všetky balíčky" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Transakcia" +msgid "Transaction" +msgstr "Transakcia" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ikona" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Sťahujú sa balíčky" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Knižnica pre foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "Na dokončenie úlohy sú vyžadované ďalšie zmeny." #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Akcie" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Názov repozitára:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "URL podpisu:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Identifikátor podpisu užívateľa:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Identifikátor podpisu:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Poznáte užívateľa a dôverujete tomuto kľúču?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" -msgstr "Dôverujete pôvodu balíčkov?" +msgstr "Dôverujete zdroju balíčkov?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "" "Skôr ako budete pokračovať, prečítajte si prosím nasledujúce dôležité " "informácie:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Nastavenie" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Nastavenie KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Skontrolovať aktualizácie:" +msgid "Update settings" +msgstr "Nastavenie aktualizácií" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automaticky nainštalovať:" +msgid "Check for updates:" +msgstr "Skontrolovať aktualizácie:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Ikona v systémovej lište" +msgid "Automatically install:" +msgstr "Automaticky nainštalovať:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Upozorniť, keď sú dostupné aktualizácie" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Upozorniť, keď je dokončená dlhá úloha" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "Pôvod balíčkov" +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "Zdroje balíčkov" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" -msgstr "Zo&braziť pôvod ladiacich a vývojových balíčkov" +msgstr "Zo&braziť zdroje ladiacich a vývojových balíčkov" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "O backende" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Názov backendu:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "backend name here" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Autor backendu:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Popis backendu:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "autor backendu" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "popis backendu" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Balíček je viditeľný" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Najnovšie" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "GUI" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Slobodný softvér" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Podporované" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Metódy" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "GetUpdates" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "UpdatePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "GetRepositoryList" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "RefreshCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "RepositoryEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "UpdateSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "RemovePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "RepositorySetEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "SearchName" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "GetDepends" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "WhatProvides" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "SearchDetails" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "GetRequires" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "GetPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "SearchGroup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "GetUpdateDetail" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "SearchFile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "GetDescription" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "GetFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Resolve" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "SimulateUpdatePackages" diff -Nru kpackagekit-0.5.4/po/sv/kpackagekit.po kpackagekit-0.6.0/po/sv/kpackagekit.po --- kpackagekit-0.5.4/po/sv/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/sv/kpackagekit.po 2010-01-30 09:04:24.000000000 +0000 @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-10 10:01+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-12-08 22:45+0100\n" "Last-Translator: Stefan Asserhäll \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" @@ -28,11 +28,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Information" @@ -95,20 +95,20 @@ "Du rekommenderas att behålla datorn inkopplad till vägguttaget medan " "uppgraderingen utförs." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Uppgraderingen av distributionen färdig." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Uppgraderingen av distributionen avslutades med koden %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Uppgraderingsprocessen för distribution misslyckades starta." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -116,7 +116,7 @@ "Uppgraderingsprocessen för distribution kraschade en tid efter att ha " "startat normalt." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "" "Uppgraderingsprocessen för distribution misslyckades med ett okänt fel." @@ -197,28 +197,24 @@ msgid "Time since last cache refresh: %1" msgstr "Tid sedan cachen senast förnyades: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Paketnamn" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Hemsida" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Licens" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grupp" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Hemsida" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Storlek" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Några filer hittades inte." @@ -230,233 +226,242 @@ msgid "KDE interface for managing software" msgstr "KDE-gränssnitt för att hantera programvara" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Sök" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Alla paket" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Textsökning" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Lista med ändringar" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Grupp:" msgstr[1] "Grupper:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&Avbryt" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "Sök enligt &namn" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "Sök enligt f&ilnamn" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Sök enligt &beskrivning" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Granska ändringar" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Samlingar" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Bara samlingar" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Undanta samlingar" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Installerat" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Bara installerat" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Bara tillgängligt" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Inget filter" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Utveckling" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Bara utveckling" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Bara slutanvändarfiler" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafiskt" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Bara grafiskt" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Bara text" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Lediga" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Bara fri programvara" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Bara icke-fri programvara" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Arkitekturer" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Bara originalarkitekturer" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Bara icke-originalarkitekturer" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Källa" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Bara källkod" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Bara icke-källkod" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Dölj delpaket" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Visa bara ett paket, inte delpaket" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Bara nyaste paket" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Visa bara det nyaste tillgängliga paketet" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Visa i grupper" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Visa paket i grupper enligt status" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Följande paket kommer att installeras:" msgstr[1] "Följande paket kommer att installeras:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Installera nu" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Följande paket kommer att tas bort:" msgstr[1] "Följande paket kommer att tas bort:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Ta bort nu" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Följande paket kommer att tas bort och installeras:" msgstr[1] "Följande paket kommer att tas bort och installeras:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Verkställ nu" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Misslyckades simulera borttagning av paket" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Nuvarande bakgrundsprogram stöder inte att ta bort paket." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "Fel i Kpackagekit" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Misslyckades simulera installation av paket" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Nuvarande bakgrundsprogram stöder inte installation av paket." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Misslyckades ta bort paket" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Misslyckades installera paket" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Misslyckades ta bort paket" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Dölj" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "Låter dig dölja fönstret medan transaktionen fortsätter köra." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -466,11 +471,11 @@ "det är omöjligt att kontrollera om programvaran kom från en pålitlig källa.\n" "Är du säker på att du vill fortsätta installationen?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "Installerar osignerad programvara" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Media behöver bytas" @@ -490,7 +495,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Godkännande av licensavtal krävs" @@ -503,13 +508,13 @@ msgid "Version" msgstr "Version" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "Avbryt" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "Avslutades på %1." @@ -559,807 +564,815 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Programvarusignatur krävs" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Okänt tillstånd" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Väntar på att tjänst ska starta" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Väntar på andra aktiviteter" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" msgstr "Kör aktivitet" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Frågar" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Hämtar information" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Tar bort paket" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Laddar ner paket" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Installerar paket" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Förnyar programvarulista" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Uppdaterar paket" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Städar upp paket" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Markerar paket som föråldrade" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Löser upp beroenden" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "Kontrollerar signaturer" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Återgår" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Provar ändringar" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" -msgstr "Arkiverar ändringar" +msgstr "Verkställer ändringar" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Begär data" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Klar" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "Avbryter" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Laddar ner arkivinformation" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Laddar ner paketlista" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Laddar ner fillistor" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Laddar ner ändringslista" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Laddar ner grupper" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Laddar ner uppdateringsinformation" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Packar om filer" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Laddar cache" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Söker igenom installerade program" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Skapar paketlistor" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Väntar på pakethanterarens lås" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Väntar på behörighet" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Uppdaterar listan med program som kör" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "Letar efter program som för närvarande används" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Letar efter bibliotek som för närvarande används" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Kopierar filer" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "Nerladdat" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Uppdaterat" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Installerat" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Borttaget" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Uppstädat" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Föråldrat" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Okänd rolltyp" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Hämtar beroenden" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Hämtar uppdateringsinformation" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Hämtar detaljinformation" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Hämtar vad som krävs" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Hämtar uppdateringar" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Söker efter detaljinformation" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Söker efter fil" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Söker efter grupper" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Söker enligt paketnamn" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Tar bort" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Installerar" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Installerar fil" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Förnyar paketcache" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Uppdaterar paket" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Uppdaterar system" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "Avbryter" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Återgår" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Hämtar arkivlista" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Aktiverar arkiv" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Ställer in arkivdata" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Löser upp" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Hämtar fillista" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "Hämtar vad som tillhandahåller" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "Installerar signatur" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Hämtar paketlistor" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Accepterar licensavtal för slutanvändare" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Laddar ner paket" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Hämtar uppgraderingsinformation för distribution" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Hämtar kategorier" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Hämtar gamla transaktioner" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Simulerar installation av filer" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Simulerar installationen" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Simulerar borttagningen" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Simulerar uppdateringen" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Okänd rolltyp" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Hämtade beroenden" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Hämtade uppdateringsinformation" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Hämtade detaljinformation" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Hämtade vad som krävs" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Hämtade uppdateringar" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Sökte efter paketinformation" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Sökte efter fil" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Sökte grupper" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Sökte efter paketnamn" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Tog bort paket" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Installerade paket" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Installerade lokala filer" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Förnyade paketcache" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Uppdaterade paket" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Uppdaterade system" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "Avbröt" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Återgick" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Hämtade arkivlista" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Aktiverade arkiv" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Ställde in arkivdata" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Upplöste" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Hämtade fillista" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "Hämtade vad som tillhandahåller" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Installerade signatur" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Hämtade paketlistor" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Accepterade licensavtal för slutanvändare" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Laddade ner paket" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Hämtade uppgraderingar av distributionen" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Hämtade kategorier" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Hämtade gamla transaktioner" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Simulerade installationen av filer" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Simulerade installationen" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Simulerade borttagningen" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Simulerade uppdateringen" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Ingen nätverksanslutning tillgänglig" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Ingen paketcache tillgänglig" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Slut på minne" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Misslyckades skapa en tråd" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Stöds inte av bakgrundsprogram" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Ett internt systemfel har uppstått" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Någon säkerhetsmässig förtroenderelation finns inte" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Paketet är inte installerat" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Paketet hittades inte" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Paketet är redan installerat" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Nerladdning av paketet misslyckades" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Gruppen hittades inte" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Grupplistan var ogiltig" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Upplösning av beroende misslyckades" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Sökfiltret var ogiltigt" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Paketidentifieraren var inte riktigt formaterad" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Transaktionsfel" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Arkivnamn hittades inte" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Kunde inte ta bort ett skyddat systempaket" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Aktiviteten avbröts" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Aktiviteten tvingades att avbrytas" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Läsning av inställningsfilen misslyckades" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Aktiviteten kan inte avbrytas" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Källkodspaket kan inte installeras" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Licensavtal misslyckades" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Lokal filkonfligt mellan paket" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Paketen fungerar inte tillsammans" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "Problem att ansluta till en programvarukälla" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Misslyckades initiera" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Misslyckades avsluta" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Kan inte låsa" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Inga paket att uppdatera" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Kan inte skriva arkivinställning" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Lokal installation misslyckades" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Felaktig GPG-signatur" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "Saknar GPG-signatur" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Ogiltig arkivinställning" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Ogiltig paketfil" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Installation av paket blockerad" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Paketet är förstört" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Alla paket är redan installerade" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Den angivna filen kunde inte hittas" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Inga fler spegelplatser tillgängliga" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Ingen uppgraderingsdata är tillgänglig för distributionen" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Paketet är inte kompatibelt med systemet" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Inget utrymme kvar på disken" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Behörighetskontroll misslyckades" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Uppdatering hittades inte" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "Kan inte installera från opålitlig källa" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" msgstr "Kan inte uppdatera från opålitlig källa" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Kan inte hämta fillista" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "Kan inte hämta vad paketet kräver" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "Kan inte inaktivera källa" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "Nerladdningen misslyckades" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Konfiguration av paketet misslyckades" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Byggning av paketet misslyckades" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Installation av paketet misslyckades" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Borttagning av paketet misslyckades" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Okänt fel" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1367,7 +1380,7 @@ "Det finns inte någon nätverksanslutning tillgänglig.\n" "Kontrollera anslutningsinställningar och försök igen" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1375,7 +1388,7 @@ "Paketlistan måste byggas om.\n" "Det skulle ha gjorts automatiskt av bakgrundsprogrammet." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1385,11 +1398,11 @@ "minne.\n" "Stäng några program eller starta om datorn." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "En tråd kunde inte skapas för att utföra användarens begäran." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1397,7 +1410,7 @@ "Åtgärden stöds inte av detta bakgrundsprogram.\n" "Rapportera gärna felet, eftersom detta inte skulle kunna inträffa." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1405,35 +1418,35 @@ "Ett oväntat problem har inträffat.\n" "Rapportera gärna felet tillsammans med en felbeskrivning." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Någon säkerhetsmässig förtroenderelation kunde inte upprättas med " "programvarukällan.\n" "Kontrollera signaturinställningarna i programvaran." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Paketet som håller på att tas bort eller uppdateras är inte redan " "installerat." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Paketet som håller på att ändras hittades inte på systemet eller på någon " "annan programvarukälla." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Paketet som håller på att installeras är redan installerat." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1441,7 +1454,7 @@ "Nerladdning av paketet misslyckades.\n" "Kontrollera anslutning till nätverket." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1449,17 +1462,17 @@ "Grupptypen hittades inte.\n" "Kontrollera grupplistan och försök igen." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Grupplistan kunde inte laddas.\n" "Att förnya cachen kan hjälpa, även om detta oftast är ett fel i " "programvarukällan." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1467,11 +1480,11 @@ "Ett paketberoende kunde inte hittas.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Sökfiltret var inte riktigt formaterat." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1480,7 +1493,7 @@ "systemdemonen.\n" "Det tyder normalt på ett internt fel och bör rapporteras." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1488,23 +1501,23 @@ "Ett fel inträffade när transaktionen kördes.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Fjärrprogramvarans källkodsnamn hittades inte.\n" "Du kanske behöver aktivera ett objekt i programvarukällor." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Det är inte tillåtet att ta bort ett skyddat systempaket." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "Aktiviteten avbröts med lyckat resultat och inga paket ändrades." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1512,7 +1525,7 @@ "Aktiviteten avbröts med lyckat resultat och inga paket ändrades.\n" "Bakgrundsprogrammet avslutades inte normalt." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1520,11 +1533,11 @@ "Originalpaketets inställningsfil kunde inte öppnas.\n" "Försäkra dig om att systemets inställning är giltig." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Det är inte säkert att avbryta aktiviteten för närvarande." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1532,7 +1545,7 @@ "Källkodspaket installeras inte normalt på det här sättet.\n" "Kontrollera ändelsen på filen du försöker installera." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1540,32 +1553,32 @@ "Licensavtalet godkändes inte.\n" "Du måste godkänna avtalet för att använda programvaran." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "Två paket tillhandahåller samma fil.\n" "Det orsakas oftast av att paket för olika programvarukällor blandas." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Flera paket finns som inte fungerar tillsammans.\n" "Det orsakas oftast av att paket för olika programvarukällor blandas." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Ett problem (möjligen tillfälligt) uppstod vid anslutning till en " "programvarukälla.\n" "Kontrollera det detaljerade felet för ytterligare information." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1573,7 +1586,7 @@ "Misslyckades initiera bakgrundsprogrammet för pakethantering.\n" "Det kan inträffa om andra verktyg för pakethantering används samtidigt." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1581,7 +1594,7 @@ "Misslyckades stänga bakgrundsinstansen.\n" "Felet kan normalt ignoreras." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1589,15 +1602,15 @@ "Kan inte ensam låsa bakgrundsprogrammet för pakethantering.\n" "Stäng alla andra gamla verktyg för pakethantering som kan vara öppna." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Inga av de valda paketen kunde uppdateras." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Arkivinställningen kunde inte ändras." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1605,11 +1618,11 @@ "Installation av den lokala filen misslyckades.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Paketsignaturen kunde inte verifieras." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1617,11 +1630,11 @@ "Paketsignaturen saknas och paketet är inte pålitligt.\n" "Paketet signerades inte med en GPG-nyckel när det skapades." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Arkivinställningen är ogiltig och kunde inte läsas." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1629,23 +1642,23 @@ "Paketet du försöker installera är inte giltigt.\n" "Paketfilen kan vara skadad, eller är inte ett riktigt paket." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "Installation av paketet förhindrades av paketsystemets inställning." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Paketet som laddades ner är skadat och måste laddas ner igen." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Alla paket valda att installeras är redan installerade på systemet." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1653,32 +1666,32 @@ "Den angivna filen kunde inte hittas på systemet.\n" "Kontrollera att filen fortfarande finns och inte har tagits bort." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Data som krävs kunde inte hittas på någon av de inställda " "programvarukällorna.\n" "Det finns inga fler spegelplatser för nerladdning som kunde prövas." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Uppgraderingsdata som krävs kunde inte hittas på någon av de inställda " "programvarukällorna.\n" "Listan med distributionsuppgraderingar kommer inte att vara tillgänglig." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" "Paketet som håller på att installeras är inte kompatibelt med systemet." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1686,11 +1699,11 @@ "Utrymmet på enheten är otillräckligt.\n" "Frigör en del utrymme på systemdisken för att utföra åtgärden." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Ytterligare media krävs för att göra färdigt transaktionen." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." @@ -1698,7 +1711,7 @@ "Du har misslyckats att ange riktig behörighetsinformation.\n" "Kontrollera eventuella lösenord eller kontoinställningar." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " @@ -1708,27 +1721,27 @@ "Den kanske redan har installerats, eller är inte längre tillgänglig på " "fjärrservern." -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." -msgstr "Paketet kunde inte från en opålitlig programvarukälla" +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "Paketet kunde inte installeras från en opålitlig programvarukälla" -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "Paketet kunde inte uppdateras från en opålitlig programvarukälla" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "Fillistan är inte tillgänglig för det här paketet." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "Information om vad som kräver det här paketet kunde inte erhållas." -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "Den angivna programvarukällan kunde inte inaktiveras." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1736,7 +1749,7 @@ "Nerladdningen kunde inte göras automatiskt, och bör göras manuellt.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1744,7 +1757,7 @@ "Konfiguration av ett av de valda paketen misslyckades.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1752,7 +1765,7 @@ "Byggning av ett av de valda paketen misslyckades.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1760,7 +1773,7 @@ "Installation av ett av de valda paketen misslyckades.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1768,7 +1781,7 @@ "Borttagning av ett av de valda paketen misslyckades.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1776,239 +1789,239 @@ "Okänt fel, rapportera gärna som ett fel i programmet.\n" "Mer information är tillgänglig i detaljrapporten." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Handikappstöd" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Tillbehör" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Utbildning" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Spel" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafik" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "Internet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Kontor" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Övriga" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Utveckling" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Multimedia" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "System" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME-skrivbord" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE-skrivbord" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE-skrivbord" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Övriga skrivbord" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Publicering" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Servrar" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Teckensnitt" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Administrationsverktyg" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Gammalt" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Översättningar" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Virtualisering" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Säkerhet" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Strömhantering" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "Kommunikation" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Nätverk" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Kartor" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Programvarukällor" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Vetenskap" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Dokumentation" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronik" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Paketsamlingar" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Tillverkare" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "Nyaste paket" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Okänd grupp" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Enkel uppdatering" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normal uppdatering" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Viktig uppdatering" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Säkerhetsuppdatering" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Felrättningsuppdatering" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Förbättringsuppdatering" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Blockerad uppdatering" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Installerad" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Tillgänglig" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Okänd uppdatering" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "1 enkel uppdatering" msgstr[1] "%1 enkla uppdateringar" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" @@ -2016,70 +2029,70 @@ msgstr[0] "1 uppdatering" msgstr[1] "%1 uppdateringar" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "1 viktig uppdatering" msgstr[1] "%1 viktiga uppdateringar" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "1 säkerhetsuppdatering" msgstr[1] "%1 säkerhetsuppdateringar" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "1 felrättningsuppdatering" msgstr[1] "%1 felrättningsuppdateringar" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "1 förbättringsuppdatering" msgstr[1] "%1 förbättringsuppdateringar" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "1 blockerad uppdatering" msgstr[1] "%1 blockerade uppdateringar" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "1 installerat paket" msgstr[1] "%1 installerade paket" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "1 tillgängligt paket" msgstr[1] "%1 tillgängliga paket" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "1 okänd uppdatering" msgstr[1] "%1 okända uppdateringar" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "1 enkel uppdatering vald" msgstr[1] "%1 enkla uppdateringar valda" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" @@ -2087,56 +2100,56 @@ msgstr[0] "1 uppdatering vald" msgstr[1] "%1 uppdateringar valda" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "1 viktig uppdatering vald" msgstr[1] "%1 viktiga uppdateringar valda" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "1 säkerhetsuppdatering vald" msgstr[1] "%1 säkerhetsuppdateringar valda" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "1 felrättningsuppdatering vald" msgstr[1] "%1 felrättningsuppdateringar valda" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "1 förbättringsuppdatering vald" msgstr[1] "%1 förbättringsuppdateringar valda" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "1 installerat paket valt för borttagning" msgstr[1] "%1 installerade paket valda för borttagning" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "1 tillgängligt paket valt för installation" msgstr[1] "%1 tillgängliga paket valda för installation" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 enkel uppdatering" msgstr[1] "%1 enkla uppdateringar, %2 valda" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" @@ -2144,295 +2157,460 @@ msgstr[0] "%1 uppdatering" msgstr[1] "%1 uppdateringar, %2 valda" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 viktig uppdatering" msgstr[1] "%1 viktiga uppdateringar, %2 valda" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 säkerhetsuppdatering" msgstr[1] "%1 säkerhetsuppdateringar, %2 valda" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 felrättningsuppdatering" msgstr[1] "%1 felrättningsuppdateringar, %2 valda" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 förbättringsuppdatering" msgstr[1] "%1 förbättringsuppdateringar, %2 valda" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 blockerad uppdatering" msgstr[1] "%1 blockerade uppdateringar" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 installerat paket" msgstr[1] "%1 installerade paket, %2 valda att tas bort" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 tillgängligt paket" msgstr[1] "%1 tillgängliga paket, %2 valda att installeras" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 okänd uppdatering" msgstr[1] "%1 okända uppdateringar" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Ingen omstart krävs" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Du kommer att vara tvungen att starta om programmet" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Du kommer att vara tvungen att logga ut och in igen" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "En omstart kommer att krävas" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "Du kommer att vara tvungen att logga ut och in igen på grund av en " "säkerhetsuppdatering." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "En omstart kommer att krävas på grund av en säkerhetsuppdatering." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Ingen omstart krävs" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "En omstart krävs" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Du måste logga ut och in igen" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Du måste starta om programmet" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "Du måste logga ut och in igen för att behålla säkerheten." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "En omstart krävs för att behålla säkerheten." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Stabil" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Instabil" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Test" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Mata in cd:n med beteckningen '%1', och klicka på fortsätt." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Mata in dvd:n med beteckningen '%1', och klicka på fortsätt." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Mata in skivan med beteckningen '%1', och klicka på fortsätt." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Mata in medium med beteckningen '%1', och klicka på fortsätt." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "En spegelplats är möjligen felaktig" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Anslutningen vägrades" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parametern var ogiltig" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Prioriteten var ogiltig" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Bakgrundsprogramvarning" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Demonvarning" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Paketlistans cache håller på att byggas om" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Ett inte pålitligt paket installerades" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Ett nyare paket finns" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Kunde inte hitta paket" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Inställningsfiler ändrades" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Paketet är redan installerat" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "Automatisk rensning ignoreras" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "Nerladdning av programkällkod misslyckades" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Du har inte de nödvändiga rättigheterna för att utföra åtgärden." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "Kunde inte få en transaktionsidentifierare från packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Kan inte ansluta till den här transaktionsidentifieraren." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Åtgärden är inte känd." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Tjänsten packagekitd kunde inte startas." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "Förfrågan är inte giltig." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "Filen är inte giltig." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Funktionen stöds inte ännu." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Kunde inte kommunicera med packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Ett okänt fel uppstod." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Ignorera" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                              • %2
                                                              Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                              • %2
                                                              Do you want to search " +"for these now?" +msgstr[0] "Följande fil krävs:
                                                              • %2
                                                              Vill du söka efter den nu?" +msgstr[1] "" +"Följande filer krävs:
                                                              • %2
                                                              Vill du söka efter dem nu?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Ett program vill installera en fil" +msgstr[1] "Ett program vill installera filer" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 vill installera en fil" +msgstr[1] "%2 vill installera filer" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Installera" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Misslyckades starta filsökningstransaktion" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "gick inte med på att söka" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Paketet %1 tillhandahåller redan filen" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Misslyckades installera fil" +msgstr[1] "Misslyckades installera filer" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Följande paket kommer att installeras" +msgstr[1] "Följande paket kommer att installeras" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Filen kunde inte hittas i några paket" +msgstr[1] "Filerna kunde inte hittas i några paket" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Misslyckades hitta paket" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "Du har %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                                              And another update" msgid_plural "
                                                              And %1 more updates" msgstr[0] "
                                                              Och ytterligare en uppdatering" msgstr[1] "
                                                              Och %1 ytterligare uppdateringar" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Granska och uppdatera" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Inte nu" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Fråga inte igen" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Uppdateringar installeras automatiskt." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Säkerhetsuppdateringar installeras automatiskt." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Systemuppdatering lyckades." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Uppdateringen av programvara misslyckades." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Följande fil är nödvändig:" +msgstr[1] "Följande filer är nödvändiga:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Vill du söka efter den nu?" +msgstr[1] "Vill du söka efter dem nu?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 vill installera en fil" +msgstr[1] "%1 vill installera filer" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Starta uppgradering nu" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Uppgradering av distributionen klar. " +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Misslyckades starta upplösningstransaktion" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "Användaren avbröt transaktionen" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Ett okänt fel uppstod" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                                              • %2
                                                              Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                              • %2
                                                              Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Ett ytterligare paket krävs:
                                                              • %2
                                                              Vill du söka efter och " +"installera paketet nu?" +msgstr[1] "" +"Ytterligare paket krävs:
                                                              • %2
                                                              Vill du söka efter och " +"installera paketen nu?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Ett program vill installera ett paket" +msgstr[1] "Ett program vill installera paket" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 vill installera ett paket" +msgstr[1] "%2 vill installera paket" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Installera" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Paketet %2 är redan installerat" +msgstr[1] "Paketen %2 är redan installerade" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Misslyckades installera paket" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "Transaktionen avslutades inte med lyckat resultat" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Paketet kunde inte hittas i någon programvarukälla" +msgstr[1] "Paketen kunde inte hittas i någon programvarukälla" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Kunde inte hitta %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "Kpackagekit" @@ -2457,198 +2635,266 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt och andra saker" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Ytterligare ett teckensnitt krävs för att visa dokumentet på ett riktigt " +"sätt. Vill du söka efter ett lämpligt paket nu?" +msgstr[1] "" +"Ytterligare teckensnitt krävs för att visa dokumentet på ett riktigt sätt. " +"Vill du söka efter ett lämpliga paket nu?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Ett program vill installera ett teckensnitt" +msgstr[1] "Ett program vill installera teckensnitt" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 vill installera ett teckensnitt" +msgstr[1] "%2 vill installera teckensnitt" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Sök" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Misslyckades söka efter tillhandahåller" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Program som kan öppna den här filtypen" +msgstr[1] "Program som kan öppna den här filtypen" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "Inga nya teckensnitt kan hittas för det här dokumentet" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Misslyckades hitta teckensnitt" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Objektet stöds inte av bakgrundsprogrammet eller är inte en fil. " +msgstr[1] "Objekten stöds inte av bakgrundsprogrammet eller är inte filer." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Omöjligt att installera" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Installera" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Vill du installera filen?" +msgstr[1] "Vill du installera filerna?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Installera?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Filen installerades inte" +msgstr[1] "Filerna installerades inte" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Filen installerades med lyckat resultat" +msgstr[1] "Filerna installerades med lyckat resultat" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Ett fel uppstod." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                              • %2
                                                              Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                              • %2
                                                              Do you want to " +"search for these now?" +msgstr[0] "" +"Följande insticksprogram krävs:
                                                              • %2
                                                              Vill du söka efter det " +"nu?" +msgstr[1] "" +"Följande insticksprogram krävs:
                                                              • %2
                                                              Vill du söka efter dem " +"nu?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "" +"Ett program kräver ett ytterligare insticksprogram för att avkoda filen" +msgstr[1] "Ett program kräver ytterligare insticksprogram för att avkoda filen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "" +"Ett program kräver ett ytterligare insticksprogram för att koda filen" +msgstr[1] "Ett program kräver ytterligare insticksprogram för att koda filen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Ett program kräver ett ytterligare insticksprogram för åtgärden" +msgstr[1] "Ett program kräver ytterligare insticksprogram för åtgärden" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "%2 kräver ett ytterligare insticksprogram för att avkoda filen" +msgstr[1] "%2 kräver ytterligare insticksprogram för att avkoda filen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "%2 kräver ett ytterligare insticksprogram för att koda filen" +msgstr[1] "%2 kräver ytterligare insticksprogram för att koda filen" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "%2 kräver ett ytterligare insticksprogram för åtgärden" +msgstr[1] "%2 kräver ytterligare insticksprogram för åtgärden" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Vill du installera paketet nu?" +msgstr[1] "Vill du installera paketen nu?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "Kunde inte hitta insticksprogram i någon inställd programvarukälla" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Misslyckades söka efter insticksprogram" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "Filnamnet kunde inte hittas i någon programvarukälla" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Transaktioner" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Förnya paketlista" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "Visa meddelanden" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Dölj ikonen" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Paket: %1" -msgstr[1] "Paket: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Paket: %2" +msgstr[1] "Paket: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Ett meddelande från pakethanteraren" msgstr[1] "%1 meddelanden från pakethanteraren" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Uppdateringen av systemet är färdig" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Starta om" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Inte nu" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Logga ut" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1 % - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Meddelanden från pakethanterare" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "Meddelande" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Inställningar av Kpackagekit" - -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Varje timma" - -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Dagligen" - -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Veckovis" - -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Månadsvis" - -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Aldrig" - -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Bara säkerhet" - -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Alla uppdateringar" - -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Inga" - -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Du har inte de nödvändiga rättigheterna för att utföra åtgärden." - -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Misslyckades ange ursprungsinformation" - -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Följande fil är nödvändig:" -msgstr[1] "Följande filer är nödvändiga:" - -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Vill du söka efter den nu?" -msgstr[1] "Vill du söka efter dem nu?" - -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Ett program vill installera en fil" -msgstr[1] "Ett program vill installera filer" - -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 vill installera en fil" -msgstr[1] "%1 vill installera filer" - -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Installera" - -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Misslyckades starta filsökningstransaktion" - -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Paketet %1 tillhandahåller redan filen" - -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Följande paket kommer att installeras" -msgstr[1] "Följande paket kommer att installeras" - -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Filen kunde inte hittas i några paket" -msgstr[1] "Filerna kunde inte hittas i några paket" - -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Misslyckades hitta paket" - -#: KPackageKit/KpkRemovePackageByFile.cpp:54 +#: SmartIcon/PkRemovePackageByFiles.cpp:53 msgid "A program wants to remove a file" msgid_plural "A program wants to remove files" msgstr[0] "Ett program vill ta bort en fil" msgstr[1] "Ett program vill ta bort filer" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 +#: SmartIcon/PkRemovePackageByFiles.cpp:57 #, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 vill ta bort en fil" -msgstr[1] "%1 vill ta bort filer" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 vill ta bort en fil" +msgstr[1] "%2 vill ta bort filer" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 +#: SmartIcon/PkRemovePackageByFiles.cpp:63 msgid "The following file is going to be removed:" msgid_plural "The following files are going to be removed:" msgstr[0] "Följande fil kommer att tas bort:" msgstr[1] "Följande filer kommer att tas bort:" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 +#: SmartIcon/PkRemovePackageByFiles.cpp:67 msgid "" "Do you want to search for packages containing this file and remove it now?" msgid_plural "" @@ -2658,28 +2904,152 @@ msgstr[1] "" "Vill du söka efter paketet som innehåller filerna och ta bort dem nu?" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 +#: SmartIcon/PkRemovePackageByFiles.cpp:72 msgctxt "Search for a package and remove" msgid "Search" msgstr "Sök" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 +#: SmartIcon/PkRemovePackageByFiles.cpp:116 msgid "The following package will be removed" msgid_plural "The following packages will be removed" msgstr[0] "Följande paket kommer att tas bort" msgstr[1] "Följande paket kommer att tas bort" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 +#: SmartIcon/PkRemovePackageByFiles.cpp:127 msgid "The file could not be found in any installed package" msgid_plural "The files could not be found in any installed package" msgstr[0] "Filen kunde inte hittas i något installerat paket" msgstr[1] "Filerna kunde inte hittas i något installerat paket" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 +#: SmartIcon/PkInstallMimeTypes.cpp:50 #, kde-format -msgid "Could not find %1" -msgstr "Kunde inte hitta %1" +msgid "" +"An additional program is required to open this type of file:
                                                              • %1
                                                              • Do you want to search for a program to open this file type now?" +msgstr "" +"Ytterligare ett program krävs för att öppna den här filtypen:
                                                                %1
                                                                Vill du söka efter ett program att öppna den här filtypen nu?" + +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Ett program kräver en ny Mime-typ" +msgstr[1] "Ett program kräver nya Mime-typer" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%2 kräver en ny Mime-typ" +msgstr[1] "%2 kräver nya Mime-typer" + +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Sök" + +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Några nya program som hanterar den här filtypen kan inte hittas" + +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Misslyckades hitta programvara" + +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                                                Do you want to install this catalog?

                                                                • %2
                                                                " +msgid_plural "" +"

                                                                Do you want to install these catalogs?

                                                                • %2
                                                                " +msgstr[0] "

                                                                Vill du installera katalogen?

                                                                • %2
                                                                " +msgstr[1] "

                                                                Vill du installera katalogerna?

                                                                • %2
                                                                " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Installera katalog" +msgstr[1] "Installera kataloger" + +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Installera" + +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Nuvarande bakgrundsprogram stöder inte någon av de nödvändiga metoderna för " +"att installera en katalog." + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Stöds inte" + +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, kde-format +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Misslyckades öppna katalogen %2" +msgstr[1] "Misslyckades öppna katalogerna %2" + +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Misslyckades öppna" + +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "Inga paket att installeras hittades" + +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Misslyckades starta inställningstransaktion" + +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Inställningar av Kpackagekit" + +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Varje timma" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Dagligen" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Veckovis" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Månadsvis" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Aldrig" + +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Bara säkerhetsuppdateringar" + +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Alla uppdateringar" + +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Inga" + +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Misslyckades ange ursprungsinformation" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2717,138 +3087,6 @@ msgid "Package file to install" msgstr "Paketfil att installera" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Objektet stöds inte av bakgrundsprogrammet eller är inte en fil." -msgstr[1] "Objekten stöds inte av bakgrundsprogrammet eller är inte filer." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Omöjligt att installera" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Installera" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Vill du installera filen?" -msgstr[1] "Vill du installera filerna?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Installera?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Filen installerades inte" -msgstr[1] "Filerna installerades inte" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Misslyckades installera fil" -msgstr[1] "Misslyckades installera filer" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Filen installerades med lyckat resultat" -msgstr[1] "Filerna installerades med lyckat resultat" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Ett fel uppstod." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Ett ytterligare paket krävs:" -msgstr[1] "Ytterligare paket krävs:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Vill du söka efter och installera paketet nu?" -msgstr[1] "Vill du söka efter och installera paketen nu?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Ett program vill installera ett paket" -msgstr[1] "Ett program vill installera paket" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 vill installera ett paket" -msgstr[1] "%1 vill installera paket" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Installera" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Misslyckades starta upplösningstransaktion" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Paketet kunde inte hittas i någon programvarukälla" -msgstr[1] "Paketen kunde inte hittas i någon programvarukälla" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                                %1
                                                                Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Ytterligare ett program krävs för att öppna den här filtypen:
                                                                %1
                                                                Vill du söka efter ett program att öppna den här filtypen nu?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Ett program kräver en ny Mime-typ" -msgstr[1] "Ett program kräver nya Mime-typer" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 kräver en ny Mime-typ" -msgstr[1] "%1 kräver nya Mime-typer" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Sök" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Misslyckades söka efter tillhandahåller" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Program som kan öppna den här filtypen" -msgstr[1] "Program som kan öppna den här filtypen" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Några nya program som hanterar den här filtypen kan inte hittas" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Misslyckades hitta programvara" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2859,19 +3097,19 @@ msgid "Your emails" msgstr "stefan.asserhall@comhem.se" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Välj alla uppdateringar" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Förnya" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2909,392 +3147,447 @@ msgid "Required by" msgstr "Krävs av" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Lägg till och ta bort programvara" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Sök paket" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filter" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Alla paket" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "Kpackagekit - Transaktioner" +msgid "Transaction" +msgstr "Transaktion" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "ikon" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Laddar ner paket" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Ett bibliotek som heter foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "Textetikett" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "Ytterligare ändringar krävs för att göra färdigt aktiviteten" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Åtgärder" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "Textetikett" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Arkivnamn:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "Signaturens webbadress:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "Signaturens användaridentifierare:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "Signaturens identifierare:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Känner du igen användaren och litar på nyckeln?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Litar du på paketens ursprung?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Läs följande viktiga information innan du fortsätter:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Inställningar" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Inställningar av Kpackagekit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Kontrollera uppdateringar:" +msgid "Update settings" +msgstr "Uppdatera inställningar" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automatisk installation:" +msgid "Check for updates:" +msgstr "Kontrollera uppdateringar:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Smart ikon i systembrickan" +msgid "Automatically install:" +msgstr "Automatisk installation:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Underrätta när uppdateringar är tillgängliga" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Underrätta när långa aktiviteter är färdiga" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +msgid "Origin of packages" msgstr "Paketens ursprung" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "Vi&sa ursprung för felsöknings- och utvecklingspaket" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Om bakgrundsprogrammet" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Bakgrundsprogrammets namn:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "bakgrundsprogrammets namn här" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Bakgrundsprogrammets upphovsman:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Beskrivning av bakgrundsprogram" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "Namnet på bakgrundsprogrammets upphovsman här" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "bakgrundsprogrammets beskrivning här" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Paketet är synligt" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "Nyaste" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Grafiskt gränssnitt" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Fri programvara" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Stöds" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Metoder" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Hämta uppdateringar" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Uppdatera paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Hämta arkivlista" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Uppdatera cache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Installera paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Aktivera arkiv" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Uppdatera system" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Ta bort paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Aktivera arkivinställning" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "Söknamn" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "Hämta beroenden" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "Vad som tillhandahåller" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "Sök detaljinformation" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "Hämta vad som krävs" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Hämta paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Sök grupp" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Hämta uppdateringsinformation" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Sök fil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Hämta beskrivning" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Hämta filer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Lös upp" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Installera fil" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" msgstr "Simulera_installation_av_filer" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" msgstr "Simulera_installation_av_paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" msgstr "Simulera_borttagning_av_paket" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" msgstr "Simulera_uppdatering_av_paket" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Hämtade gamla transaktioner" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "Objektet stöds inte av bakgrundsprogrammet eller är inte en fil." +#~ msgstr[1] "Objekten stöds inte av bakgrundsprogrammet eller är inte filer." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Ett ytterligare paket krävs:" +#~ msgstr[1] "Ytterligare paket krävs:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Vill du söka efter och installera paketet nu?" +#~ msgstr[1] "Vill du söka efter och installera paketen nu?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                                                %1
                                                                Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Ytterligare ett program krävs för att öppna den här filtypen:
                                                                %1
                                                                Vill du söka efter ett program att öppna den här filtypen nu?" + +#~ msgid "All packages" +#~ msgstr "Alla paket" + +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "Du har inte de nödvändiga rättigheterna för att utföra åtgärden." + +#~ msgid "Package Name" +#~ msgstr "Paketnamn" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Inställningar av Kpackagekit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Smart ikon i systembrickan" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Underrätta när långa aktiviteter är färdiga" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "Kpackagekit - Transaktioner" + +#~ msgid "A library to do foo" +#~ msgstr "Ett bibliotek som heter foo" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Följande paket kommer också att installeras på grund av beroenden" @@ -3307,8 +3600,5 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Följande paket måste också tas bort eller installeras:" -#~ msgid "Failed to update package lists" -#~ msgstr "Misslyckades uppdatera paketlistorna" - #~ msgid "Failed to refresh package lists" #~ msgstr "Misslyckades förnya paketlistor" diff -Nru kpackagekit-0.5.4/po/tr/kpackagekit.po kpackagekit-0.6.0/po/tr/kpackagekit.po --- kpackagekit-0.5.4/po/tr/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/tr/kpackagekit.po 2010-01-30 09:04:44.000000000 +0000 @@ -9,15 +9,15 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-10-12 16:53+0300\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2009-11-16 01:42+0200\n" "Last-Translator: Serdar Soytetir \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Lokalize 1.0\n" +"X-Generator: Lokalize 0.3\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" @@ -30,11 +30,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "Ayrıntılar" @@ -94,20 +94,20 @@ msgstr "" "Güncelleme uygulanırken bilgisayarınızı prize takılı tutmanız önerilir." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "Dağıtım yükseltme tamamlandı." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "Dağıtım yükseltme süreci kod %1 ile çıktı." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "Dağıtım yükseltme süreci başlatılamadı." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." @@ -115,7 +115,7 @@ "Dağıtım yükseltme süreci başarılı bir şekilde başladıktan bir süre sonra " "çöktü." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "Dağıtım yükseltme süreci bilinmeyen bir hata ile başarısız oldu." @@ -195,28 +195,24 @@ msgid "Time since last cache refresh: %1" msgstr "Son önbellek tazelemesinden sonra geçen süre: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Paket Adı" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Ev Sayfası" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "Lisans" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "Grup" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Ev Sayfası" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "Boyut" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "Hiç dosya bulunamadı." @@ -228,231 +224,244 @@ msgid "KDE interface for managing software" msgstr "Yazılımları yönetmek için KDE arayüzü" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "Bul" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Tüm paketler" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "Değişikliklerin listesi" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "Gruplar:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "&İptal" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "&İsme göre bul" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "D&osya adına göre bul" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "Açıklamaya göre &bul" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "Değişiklikleri Gözden Geçir" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "Koleksiyonlar" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "Sadece koleksiyonlar" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "Koleksiyonları hariç tut" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "Yüklü" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "Sadec yüklü" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "Sadece kullanılabilir olanlar" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "Filtre yok" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "Geliştirme" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "Sadece geliştirme" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "Sadece son kullanıcı dosyaları" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "Grafiksel" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "Sadece grafiksel" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "Sadece metin" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "Özgür" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "Sadece özgür yazılım" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "Sadece özgür olmayan yazılım" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "Mimarlık" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "Sadece yerli mimariler" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "Sadece yerli olmayan mimariler" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "Kaynak" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "Sadece kaynak kod" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "Sadece kaynak kod olmayan" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "Alt paketleri gizle" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "Sadece bir paket göster, alt paketleri gösterme" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "Sadece en yeni paketler" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "Sadece en yeni kullanılabilir paketleri göster" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "Grup olarak göster" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "Paketleri duruma uygun olarak gruplar içerisinde göster" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "Aşağıdaki paketler kurulacak:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "Şimdi Yükle" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "Aşağıdaki paketler kaldırılacak:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "Şimdi Kaldır" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "Aşağıdaki paketler kaldırılacak ve kurulacak:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "Şimdi Uygula" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "Paket listesi güncellenemedi" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "Geçerli arka uç paketlerin kaldırılmasını desteklemiyor." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit Hatası" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "Paket listesi güncellenemedi" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "Geçerli arka uç paket yüklemeyi desteklemiyor." -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Paket kaldırılamadı" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "Paket kurulamadı" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Paket kaldırılamadı" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "Gizle" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "" "Pencereyi gizlemenize izin verir ancak aktarım görevinin çalışmasını " "sürdürür." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" @@ -463,11 +472,11 @@ "atabilir.\n" " Kuruluma devam etmek istediğinizden emin misiniz?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "İmzalanmamış yazılım yükleniyor" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "Ortam değiştirmeniz gerekiyor" @@ -487,7 +496,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "Lisans Sözleşmesi Gerekli" @@ -500,13 +509,13 @@ msgid "Version" msgstr "Sürüm" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "İptal" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "%1 içerisinde tamamlandı." @@ -551,807 +560,926 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "Yazılım imzası gerekli" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "Bilinmeyen durum" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "Servisin başlaması bekleniyor" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "Diğer görevler bekleniyor" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "Çalışan görev" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "Sorgulanıyor" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "Bilgi alınıyor" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "Paketler kaldırılıyor" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "Paketler indiriliyor" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "Paketler yükleniyor" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "Yazılım listesi güncelleniyor" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "Paketler güncelleniyor" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "Paketler temizleniyor" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "Paketler gereksiz olarak işaretleniyor" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "Bağımlılıklar çözümleniyor" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "İmzalar kontrol ediliyor" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "Değişiklikler geri alınıyor" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "Değişiklikler test ediliyor" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "Değişiklikler uygulanıyor" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "Veri isteniyor" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "Bitti" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "İptal ediliyor" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "Depo bilgisi indiriliyor" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "Paket listesi indiriliyor" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "Dosya listesi indiriliyor" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "Değişiklik listesi indiriliyor" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "Gruplar indiriliyor" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "Güncelleme bilgileri indiriliyor" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "Dosyalar yeniden paketleniyor" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "Önbellek yükleniyor" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "Kurulu uygulamalar taranıyor" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "Paket listesi oluşturuluyor" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "Paket yöneticisinin kilitlenmesi bekleniyor" -#: libkpackagekit/KpkStrings.cpp:95 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for authentication" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "Kimlik doğrulaması için bekleniyor" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating the list of running applications" +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "Çalışan uygulamalar listesi güncelleniyor" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for applications currently in use" +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "Şimdi kullanılan uygulamalar denetleniyor" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking for libraries currently in use" +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "Şimdi kullanılan kitaplıklar denetleniyor" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Dosyalar yeniden paketleniyor" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "İndirildi" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "Güncellenen" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "Yüklü" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "Kaldırıldı" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "Temizlendi" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "Gereksiz Olarak İşaretlendi" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "Bilinmeyen rol tipi" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "Bağımlılıklar alınıyor" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "Güncelleme ayrıntıları alınıyor" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "Ayrıntılar alınıyor" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "Ön bağımlılıklar alınıyor" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "Güncellemeler alınıyor" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "Ayrıntılar aranıyor" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "Dosya aranıyor" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "Gruplar aranıyor" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "Paket adına göre aranıyor" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "Kaldırıyor" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "Kuruluyor" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "Dosya yükleniyor" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "Paket önbelleği tazeleniyor" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "Paketler güncelleniyor" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "Sistem güncelleniyor" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "İptal ediliyor" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "Değişiklikler geri alınıyor" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "Depo listesi alınıyor" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "Depo etkinleştiriliyor" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "Depo verileri ayarlanıyor" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "Çözümleniyor" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "Dosya listesi alınıyor" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "İmza yükleniyor" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "Paket listesi alınıyor" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "Son Kullanıcı Lisans Sözleşmesi Kabul Ediliyor" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "Paketler indiriliyor" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "Dağıtım yükseltme bilgileri alınıyor" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "Kategoriler alınıyor" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "Önceki aktarımlar alınıyor" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" msgstr "Dosyalar yüklemesi benzetimi yapılıyor" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "Yükleme benzetimi yapılıyor" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "Kaldırma benzetimi yapılıyor" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" msgstr "Güncelleme benzetimi yapılıyor" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "Bilinmeyen rol tipi" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "Bağımlılıklar alındı" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "Güncelleme ayrıntıları alındı" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "Ayrıntılar alındı" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "Ön bağımlılıklar alındı" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "Güncellemeler alındı" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "Paketlerin ayrıntılarında ara" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "Dosya ara" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "Grup ara" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "Paket adı ara" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "Kaldırılan paketler" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "Kurulu paketler" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "Kurulu yerel dosyalar" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "Paket önbelleği tazelendi" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "Güncellenen paketler" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "Sistem güncellendi" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "İptal edildi" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "Değişiklikler geri alındı" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "Depo listesi alındı" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "Etkinleştirilmiş depo" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "Depo verilerini ayarla" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "Çözümlendi" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "Dosya listesi alındı" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "Yüklenmiş imza" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "Paket listesi alındı" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "Kabul Edilen Son Kullanıcı Lisans Sözleşmesi" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "Paketler indirildi" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "Dağıtım yükseltmesi alındı" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "Kategoriler alındı" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "Önceki aktarımlar alındı" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" msgstr "Dosyaların yükleme işleminin benzetimi yapıldı" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Yükleme benzetimi yapıldı" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "Kaldırma benzetimi yapıldı" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "Güncelleme benzetimi yapıldı" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "Kullanılabilir ağ bağantısı yok" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "Hiçbir paket önbelleği mevcut değil" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "Yetersiz bellek" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "Bir iş parçacığı oluşturma başarısız" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "Bu arka uç tarafından desteklenmiyor" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "Bir iç hata oluştu" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "Güvenli bir güven ilişkisi mevcut değil" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "Paket kurulu değil" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "Paket bulunamadı" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "Paket zaten yüklenmiş" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "Paket indirme işlemi başarısız oldu" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "Grup bulunamadı" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "Grup listesi geçersiz" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "Bağımlılık çözümleme işlemi başarısız oldu" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "Arama filtresi geçersiz" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "Paket tanımlayıcısı iyi biçimlendirilmedi" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "Aktarım hatası" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "Depo adı bulunamadı" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "Korumalı bir sistem paketi kaldırılamadı" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "Görev iptal edildi" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "Görev zorla iptal edildi" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "Yapılandırma dosyası okunamadı" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "Görev iptal edilemez" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "Kaynak paketler yüklenemez" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "Lisans sözleşmesi başarısız" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "Paketler arasında yerel dosya çakışması" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "Paketler uyumlu değil" -#: libkpackagekit/KpkStrings.cpp:342 -msgid "Problem connecting to a software orign" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" msgstr "Yazılım kaynağına bağlanma sorunu" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "Başlatılamadı" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "Bitirilemedi" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "Kilit alınamıyor" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "Güncellenecek paket yok" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "Depo bilgileri yazılamadı" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "Yerel kurulum başarısız oldu" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "Hatalı GPG imzası" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "GPG imzası kayıp" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "Depo yapılandırması geçersiz" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "Geçersiz paket dosyası" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "Paket kurulumu engellendi" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "Paket bozuk" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "Tüm paketler zaten yüklendi" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "Belirtilen dosya bulunamadı" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "Kullanılabilir yansı yok" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "Hiçbir dağıtım yükseltme verisi yok" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "Paket bu sistem ile uyumsuz" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "Disk üzerinde boş alan yok" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "Kimlik doğrulama işlemi başarısız oldu" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" msgstr "Güncelleme bulunamadı" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" msgstr "Güvenilmeyen kaynaktan kurulamadı" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "Güvenilmeyen kaynaktan güncelleme yapılamaz" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "Güvenilmeyen kaynaktan güncelleme yapılamadı" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" msgstr "Dosya listesi alınamadı" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" msgstr "" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "Kaynak pasifleştirilemedi" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" msgstr "İndirme işlemi başarısız oldu" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" msgstr "Paket yapılandırılamadı" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" msgstr "Paket inşa edilemedi" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" msgstr "Paket kurulamadı" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" msgstr "Paket kaldırılamadı" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "Bilinmeyen hata" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1359,7 +1487,7 @@ "Ağ bağlantısı yok.\n" "Lütfen bağlantı ayarlarınızı kontrol edin ve yeniden deneyin." -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1367,7 +1495,7 @@ "Paket listesinin yeniden oluşturulması gerekiyor.\n" "Bu işlem arka uç tarafından otomatik olarak yapılmalıdır." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1376,12 +1504,12 @@ "Kullanıcı isteklerini işlemekten sorumlu olan hizmet bellek dışı.\n" "Lütfen bazı programları kapatın ve bilgisayarınızı yeniden başlatın." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "" "Bir iş parçacığı, kullanıcının talep ettiği hizmet için oluşturulamadı." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1389,7 +1517,7 @@ "Eylem bu arka uç tarafından desteklenmiyor.\n" "Bu olmaması gerektiğinden lütfen bir hata raporu bildirin." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1397,33 +1525,33 @@ "Beklemediğimiz bir problem meydana geldi.\\ Lütfen bu yanlışı hata tanımıyla " "birlikte bildirin." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "Yazılım kaynağı ile güvenli bir güven ilişkisi kurulamadı.\n" "Lütfen yazılım imza ayarlarınızı kontrol edin." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" "Kaldırılmaya veya güncellenmeye çalışılan paket halihazırda kurulu değil." -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" "Değiştirilmiş olan paket sisteminizde veya herhangi yazılım kaynağında " "bulunmadı." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "Yüklemek istediğiniz paket zaten yüklenmiş." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1431,7 +1559,7 @@ "Paket indirme işlemi başarısız oldu.\n" "Lütfen ağ bağlantınızı kontrol edin." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1439,17 +1567,17 @@ "Grup tipi bulunamadı.\n" "Lütfen grup listenizi kontrol edin ve yeniden deneyin." -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "Grup listesi yüklenemedi.\n" "Bu normalde bir yazılım kaynağı hatası olsa da, önbelleğinizi yenilemek " "yardımcı olabilir." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1457,11 +1585,11 @@ "Bir paket bağımlılığı bulunamadı.\n" "Detaylı raporda daha fazla bilgi mevcut." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "Arama filtresi doğru bir şekilde biçimlendirilmemiş." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1470,7 +1598,7 @@ "biçimlendirilmedi.\n" "Bu, normalde dahili bir hataya işaret etmektedir ve bildirilmelidir." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1478,24 +1606,24 @@ "Aktarım çalıştırılırken bir hata meydana geldi.\n" "Detaylı raporda daha fazla bilgi mevcut." -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "Uzak yazılım kaynağının adı bulunamadı.\n" "Yazılım Kaynaklarında bir ögeyi etkinleştirmeniz gerekebilir." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "Korumalı bir sistem paketini kaldırmaya izin verilmiyor." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "" "Görev başarılı bir şekilde iptal edildi ve hiç bir paket değiştirilmedi." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1503,7 +1631,7 @@ "Görev başarılı bir şekilde iptal edildi ve hiçbir paket değiştirilmedi.\n" "Arka uç temiz bir şekilde çıkmadı." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1511,11 +1639,11 @@ "Yerli paket yapılandırma dosyası açılamadı.\n" "Lütfen sistem yapılandırmanızın geçerli olduğundan emin olun." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "Görevin bu aşamada iptal edilmesi güvenli değil." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1523,7 +1651,7 @@ "Kaynak paketleri normalde bu şekilde kurulmadı.\n" "Kurmayı denediğiniz dosyanın uzantısını kontrol edin." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1531,33 +1659,33 @@ "Lisans sözleşmesi kabul edilmedi.\n" "Bu yazılımı kullanmak için lisans sözleşmesini kabul etmek zorundasınız." -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "İki paket aynı dosyayı sağlıyor.\n" "Buna genellikle farklı yazılım kaynaklarındaki paketleri karıştırmak sebep " "olur." -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "Birbiriyle uyumlu olmayan birden fazla paket var.\n" "Buna genellikle farklı yazılım kaynaklarındaki paketleri karıştırmak sebep " "olur." -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "Bir yazılım kaynağına bağlanırken (muhtemelen geçici) bir sorun oluştu.\n" "Lütfen daha fazla bilgi için ayrıntılı hatayı kontrol edin." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1565,7 +1693,7 @@ "Paketleme arka ucunu ilklendirmek başarısız.\n" "Bu, aynı anda diğer paketleme araçlarının kullanılmasıyla meydana gelebilir." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1573,7 +1701,7 @@ "Arka ucu kapatma başarısız.\n" "Bu hata normalde yok sayılabilir." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1581,15 +1709,15 @@ "Paketleme arka ucundaki dışlayıcı kilit getirilemiyor.\n" "Lütfen açık olabilecek diğer eskiden kalan paketleme araçlarını kapatın." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "Seçili paketlerin hiçbiri güncellenemedi." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "Depo yapılandırması değiştirilemedi." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1597,11 +1725,11 @@ "Yerel dosyanın kurulması başarısız.\n" "Detaylı raporda daha fazla bilgi mevcut." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "Paket imzası doğrulanamadı." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1609,11 +1737,11 @@ "Paket imzası kayıp ve bu paket güvenilir değil.\n" "Bu paket oluşturulduğunda bir GPG anahtarıyla imzalanmadı." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "Depo yapılandırması geçersizdi ve okunamadı." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1621,7 +1749,7 @@ "Kurmayı denediğiniz paket geçerli değil.\n" "Paket dosyası bozuk olabilir, veya uygun bir paket değil." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." @@ -1629,17 +1757,17 @@ "Bu paketin kurulması paketleme sisteminizin yapılandırması tarafından " "önlendi." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "Karşıdan yüklenen paket bozuk ve yeniden yüklenmesi gerekiyor." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "Yüklemek için seçilen tüm paketler sistemde zaten yüklü." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1647,30 +1775,30 @@ "Belirtilen dosya sistemde bulunamadı.\n" "Dosyanın hâlâ var olduğunu ve silinmediğini kontrol edin." -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "Gerekli veri yapılandırılmış yazılım kaynaklarının hiçbirisinde bulunamadı.\n" "Sınanabilen daha fazla karşıdan yükleme yansısı yoktu." -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "Gerekli yükseltme verileri yapılandırılmış yazılım kaynaklarının " "hiçbirisinde bulunamadı.\n" "Dağıtım güncellemesi listesi erişilemez duruma getirilecektir." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "Yüklenmeye çalışılan paket bu sistem ile uyumsuz." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1678,44 +1806,44 @@ "Disk üzerinde yetersiz boş alan var.\n" "Bu işlemi yapmak için sistem diski üzerinde biraz boş alan açın." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "Aktarımı tamamlamak için ek ortam gerekiyor." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 -msgid "The package could not be installed from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." msgstr "Paket güvenilmeyen kaynaktan kurulamadı." -#: libkpackagekit/KpkStrings.cpp:549 -msgid "The package could not be updated from untrusted orign." +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." msgstr "Paket güvenilmeyen kaynaktan güncellenemedi." -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." msgstr "Bu paket için dosya listesi kullanılabilir değil." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 -msgid "The specified software orign could not be disabled." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." msgstr "Belirtilen yazılım kaynağı pasifleştirilemedi." -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." @@ -1724,7 +1852,7 @@ "tamamlamalısınız.\n" "Ayrıntılı raporda daha fazla bilgi bulabilirsiniz." -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." @@ -1732,7 +1860,7 @@ "Seçilen paketlerden biri doğru bir şekilde yapılandırılamadı.\n" "Ayrıntılı raporda daha fazla bilgi bulabilirsiniz." -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." @@ -1740,7 +1868,7 @@ "Seçilen paketlerden biri doğru bir şekilde inşa edilemedi.\n" "Ayrıntılı raporda daha fazla bilgi bulabilirsiniz." -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." @@ -1748,7 +1876,7 @@ "Seçilen paketlerden biri doğru bir şekilde kurulamadı.\n" "Ayrıntılı raporda daha fazla bilgi bulabilirsiniz." -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." @@ -1756,7 +1884,7 @@ "Seçilen paketlerden biri doğru bir şekilde kaldırılamadı.\n" "Ayrıntılı raporda daha fazla bilgi bulabilirsiniz." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1764,636 +1892,796 @@ "Bilinmeyen hata, lütfen hatayı bildirin.\n" "Ayrıntılı raporda daha fazla bilgi bulabilirsiniz." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "Erişilebilirlik" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "Yardımcı araçlar" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "Eğitim" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "Oyunlar" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "Grafik" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "İnternet" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "Ofis" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "Diğer" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "Geliştirme" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "Çokluortam" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "Sistem" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME masaüstü" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE masaüstü" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE masaüstü" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "Diğer masaüstleri" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "Yayıncılık" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "Sunucular" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "Yazı tipleri" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "Yönetici araçları" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "Kalıt" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "Yerini Belirleme" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "Sanallaştırma" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "Güvenlik" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "Güç yönetimi" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "İletişim" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "Ağ" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "Haritalar" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "Yazılım kaynakları" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "Bilim" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "Belgelendirme" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "Elektronik" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "Paket koleksiyonları" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "Sağlayıcı" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "En yeni paketler" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "Bilinmeyen grup" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "Küçük güncelleme" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "Normal güncelleme" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "Önemli güncelleme" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "Güvenlik güncellemesi" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "Hata düzeltme güncellemesi" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "Geliştirme güncellemesi" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "Engellenmiş güncelleme" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "Yüklü" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "Kullanılabilir" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "Bilinmeyen güncelleme" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "%1 küçük güncelleme" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" msgid_plural "%1 updates" msgstr[0] "%1 güncelleme" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "%1 önemli güncelleme" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "%1 güvenlik güncellemesi" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "%1 hata düzeltme güncellemesi" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "%1 geliştirme güncellemesi" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 engellenmiş güncelleme" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "%1 kurulu paket" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "%1 kurulabilir paket" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 bilinmeyen güncelleme" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "%1 küçük güncelleme seçildi" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" msgid_plural "%1 updates selected" msgstr[0] "%1 güncelleme seçildi" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "%1 önemli güncelleme seçildi" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "%1 güvenlik güncellemesi seçildi" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "%1 hata düzeltme güncellemesi seçildi" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "%1 geliştirme güncellemesi seçildi" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "%1 tane kurulu paket silinmek için seçildi" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "%1 tane kurulabilir paket kurulmak için seçildi" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 isteğe bağlı güncelleme, %2 seçildi" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" msgid_plural "%1 updates, %2 selected" msgstr[0] "%1 güncelleme, %2 seçildi" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 önemli güncelleme, %2 seçildi" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 güvenlik güncellemesi, %2 seçildi" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 hata düzeltme güncellemesi, %2 seçildi" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 geliştirme güncellemesi, %2 seçildi" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 engellenmiş güncelleme" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 kurulu paket, %2 kaldırılmak üzere seçildi" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 kurulabilir paket, %2 kurulmak üzere seçildi" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 bilinmeyen güncelleme" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "Yeniden başlatma gerekmiyor" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "Bu uygulamayı yeniden başlatmanız gerekecek" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "Çıkış yaparak oturumu yeniden başlatmanız gerekecek" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "Sistemi yeniden başlatmanız gerekecek" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." msgstr "" "Bi güvenlik güncellemesi nedeniyle çıkış yaparak oturumu yeniden başlatmanız " "gerekecek." -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." msgstr "" "Bir güvenlik güncellemesi nedeniyle sistemi yeniden başlatmanız gerekecek." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "Yeniden başlatma gerekmiyor" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "Sistemi yeniden başlatmanız gerekiyor" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "Çıkış yaparak oturumu yeniden başlatmanız gerekiyor" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "Uygulamayı yeniden başlatmanız gerekiyor" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." msgstr "" "Güvenlik nedeniyle çıkış yaparak oturumu yeniden başlatmanız gerekiyor." -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." msgstr "Güvenlik nedeniyle sistemi yeniden başlatmanız gerekiyor." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "Kararlı" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "Kararsız" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "Deneme" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "Lütfen '%1' etiketli CD'yi takın ve devama basın." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "Lütfen '%1' etiketli DVD'yi takın ve devama basın." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "Lütfen '%1' etiketli diski takın ve devama basın." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "Lütfen '%1' etiketli ortamı takın ve devama basın." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "Bir yansı muhtemelen bozuk" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "Bağlantı reddedildi." -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "Parametre geçersiz" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "Öncelik geçersiz" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "Arka uç uyarısı" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "Servis uyarısı" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "Paket listesi önbelleği yeniden inşa ediliyor" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "Güvenilmeyen bir paket kuruldu" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "Daha yeni bir paket var" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "Paket bulunamadı" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "Yapılandırma dosyaları değiştirildi" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "Paket zaten yüklenmiş" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" -msgstr "" +msgstr "Otomatik temizleme yoksayılıyor" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" msgstr "Yazılım kaynağı indirme işlemi başarısız oldu" -#: libkpackagekit/KpkStrings.cpp:896 -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "Bu eylemi gerçekleştirmek için gerekli olan haklara sahip değilsiniz." -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." msgstr "Packagekitd servisinden bir aktarım kimliği alınamadı." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "Aktarım kimliğine bağlanılamadı." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "Bu eylem bilinmiyor." -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." msgstr "Packagekitd servisi başlatılamadı." -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." msgstr "Bu sorgu geçerli değil." -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." msgstr "Bu dosya geçerli değil." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "Bu işlev henüz desteklenmiyor." -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." msgstr "Packagekitd servisi ile iletişim kurulamadı." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." msgstr "Bilinmeyen bir hata oluştu." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "Yoksay" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                                • %2
                                                                Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                                • %2
                                                                Do you want to search " +"for these now?" +msgstr[0] "" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Bir uygulama dosya kurmak istiyor" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 dosya kurmak istiyor" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Yükle" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Dosya aktarımı başlatılamadı" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "%1 paketi bu dosyayı zaten sağlıyor" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Dosyalar yüklenemedi" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Aşağıdaki paketler kurulacak" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Dosyalar herhangi bir paket içerisinde bulunamadı" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Paket bulunamadı" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" msgstr "%1 var" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                                                And another update" msgid_plural "
                                                                And %1 more updates" msgstr[0] "
                                                                %1 güncelleme daha var" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 +#: SmartIcon/KpkUpdateIcon.cpp:216 msgid "Review and update" msgstr "Gözden geçir ve güncelle" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Şimdi değil" - -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "Tekrar sorma" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "Güncellemeler otomatik olarak yükleniyor." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "Güvenlik güncellemeleri otomatik olarak yükleniyor." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "Sistem güncellemesi başarılı oldu." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "Yazılım güncellemesi başarısız." +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Aşağıdaki dosyalar gerekiyor:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Bunları aramak ister misiniz?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 dosya kurmak istiyor" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "Güncellemeyi şimdi başlatın" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "Dağıtım yükseltme bitti." +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Çözümleme işlemi başlatılamadı" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "Önceki aktarımlar alındı" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "An unknown error happened." +msgid "An unknown error happened" +msgstr "Bilinmeyen bir hata oluştu." + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                                                                • %2
                                                                Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                                • %2
                                                                Do you want to search " +"for and install these packages now?" +msgstr[0] "Bu paketleri aramak ve kurmak istiyor musunuz?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Bir uygulama paket kurmak istiyor" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 paketler kurmak istiyor" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Kur" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Paket zaten yüklenmiş" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "Paket kurulamadı" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "Bu paketler herhangi bir yazılım kaynağında bulunamadı" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "%1 bulunamadı" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2418,214 +2706,446 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt ve diğer bölümler" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
                                                                %1
                                                                Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Bu dosya tipini açmak bir ek program gerekiyor:
                                                                %1
                                                                Bu dosya tipini " +"açmak için gerekli bir program aramak ister misiniz?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Bir uygulama dosya kurmak istiyor" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 dosya kurmak istiyor" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "Ara" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Bu dosya tipini açabilecek uygulamalar" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "Yazılım bulunamadı" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "" +"Bu ögeler arka uç tarafından desteklenmiyor veya bunlar dosya değil." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Yüklenemez" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Yükle" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Bu %1 dosyayı yüklemek istiyor musunuz?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Yüklensin mi?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Bu paketler kurulu değil" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Dosyalar başarılı bir şekilde yüklendi" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Bir hata oluştu." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                                • %2
                                                                Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                                • %2
                                                                Do you want to " +"search for these now?" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Bir program yeni MIME türleri gerektiriyor." + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Bir program yeni MIME türleri gerektiriyor." + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Bir program yeni MIME türleri gerektiriyor." + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Bu paketleri aramak ve kurmak istiyor musunuz?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "Bu paketler herhangi bir yazılım kaynağında bulunamadı" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to set origin data" +msgid "Failed to search for plugin" +msgstr "Kaynak verisi ayarlanamadı" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "Bu paketler herhangi bir yazılım kaynağında bulunamadı" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "Aktarımlar" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "Paket listesini tazele" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "İletileri göster" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "Bu simgeyi gizle" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "Paketler: %1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "Paket yöneticisinden %1 iletiniz var" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "Sistem güncellemesi tamamlandı" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "Yeniden Başlat" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Şimdi değil" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "Çıkış" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "Paket Yöneticisi Mesajları" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "İleti" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "KPackageKit ayarları" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Bir uygulama dosya kaldırmak istiyor" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Saatlik" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%1 dosyaları kaldırmak istiyor" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Günlük" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "Aşağıdaki dosyalar kaldırılacak:" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Haftalık" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Aylık" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Ara" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Asla" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Aşağıdaki paketler kaldırılacak" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Sadece Güvenlik" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "Dosyalar hiçbir yüklü paket içerisinde bulunamadı" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Tüm Güncellemeler" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
                                                                %1
                                                                Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                                                • %1
                                                                • Do you want to search for a program to open this file type now?" +msgstr "" +"Bu dosya tipini açmak bir ek program gerekiyor:
                                                                  %1
                                                                  Bu dosya tipini " +"açmak için gerekli bir program aramak ister misiniz?" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Hiçbiri" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Bir program yeni MIME türleri gerektiriyor." -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Bu eylemi gerçekleştirmek için gerekli olan haklara sahip değilsiniz." +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 yeni MIME türleri gerektiriyor" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Kaynak verisi ayarlanamadı" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Ara" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Aşağıdaki dosyalar gerekiyor:" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Bunları aramak ister misiniz?" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Yazılım bulunamadı" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Bir uygulama dosya kurmak istiyor" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                                                  Do you want to install this catalog?

                                                                  • %2
                                                                  " +msgid_plural "" +"

                                                                  Do you want to install these catalogs?

                                                                  • %2
                                                                  " +msgstr[0] "Bu %1 dosyayı yüklemek istiyor musunuz?" -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 dosya kurmak istiyor" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Şimdi Yükle" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "Yükle" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Dosya aktarımı başlatılamadı" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "Geçerli arka uç paket yüklemeyi desteklemiyor." -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "%1 paketi bu dosyayı zaten sağlıyor" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "Desteklenen" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Aşağıdaki paketler kurulacak" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package failed to configure" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Paket yapılandırılamadı" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Dosyalar herhangi bir paket içerisinde bulunamadı" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "Bitirilemedi" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Paket bulunamadı" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "Kaynak paketler yüklenemez" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "Bir uygulama dosya kaldırmak istiyor" +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "Çözümleme işlemi başlatılamadı" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 dosyaları kaldırmak istiyor" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "KPackageKit ayarları" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "Aşağıdaki dosyalar kaldırılacak:" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Saatlik" + +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Günlük" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Haftalık" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Aylık" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "" +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Asla" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "Ara" +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Sadece güvenlik" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "Aşağıdaki paketler kaldırılacak" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Tüm güncellemeler" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "Dosyalar hiçbir yüklü paket içerisinde bulunamadı" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Hiçbiri" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "%1 bulunamadı" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Kaynak verisi ayarlanamadı" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2663,126 +3183,6 @@ msgid "Package file to install" msgstr "Yüklenecek paket dosyası" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "" -"Bu ögeler arka uç tarafından desteklenmiyor veya bunlar dosya değil." - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Yüklenemez" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Yükle" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Bu %1 dosyayı yüklemek istiyor musunuz?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Yüklensin mi?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Bu paketler kurulu değil" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Dosyalar yüklenemedi" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Dosyalar başarılı bir şekilde yüklendi" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Bir hata oluştu." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Ek paketler gerekiyor:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Bu paketleri aramak ve kurmak istiyor musunuz?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Bir uygulama paket kurmak istiyor" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 paketler kurmak istiyor" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Kur" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Çözümleme işlemi başlatılamadı" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Bu paketler herhangi bir yazılım kaynağında bulunamadı" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                                  %1
                                                                  Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Bu dosya tipini açmak bir ek program gerekiyor:
                                                                  %1
                                                                  Bu dosya tipini " -"açmak için gerekli bir program aramak ister misiniz?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Bir program yeni MIME türleri gerektiriyor." - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 yeni MIME türleri gerektiriyor" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Ara" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Bu dosya tipini açabilecek uygulamalar" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Yazılım bulunamadı" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2793,19 +3193,19 @@ msgid "Your emails" msgstr "tulliana@gmail.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "Tüm güncellemeleri seç" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "Yenile" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2843,391 +3243,449 @@ msgid "Required by" msgstr "Bu Paket gereksinim duyuyor" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "Yazılım Ekle ve Kaldır" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "Paket ara" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "Filtreler" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "Tüm Paketler" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Aktarım" +msgid "Transaction" +msgstr "Aktarım" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "simge" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "Paketler İndiriliyor" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "Gerçek komut yerine geçici değer kullanmak için bir kitaplık" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "MetinEtiketi" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "Görevi tamamlamak için ek değişiklikler gerekiyor" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 msgid "Actions" msgstr "Eylemler" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "MetinEtiketi" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "Depo adı:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "İmza Adresi:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "İmza kullanıcısı tanımlayıcı:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "İmza tanımlayıcısı:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "Kullanıcıyı tanıyor ve bu anahtara güveniyor musunuz?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "Paketlerin kaynağına güveniyor musunuz?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "Lütfen devam etmeden önce aşağıdaki önemli bilgiyi okuyun:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "Ayarlar" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit Ayarları" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Güncellemeleri Kontrol Et:" +msgid "Update settings" +msgstr "Güncelleme ayarları" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Otomatik olarak Yükle:" +msgid "Check for updates:" +msgstr "Güncellemeleri kontrol et:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Sistem Çekmecesi Simgesi" +msgid "Automatically install:" +msgstr "Otomatik olarak yükle:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "Yeni güncellemeler olduğunda bildir" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Uzun görevler tamamlandığında haber ver" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "Paketlerin Kaynağı" +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "Paketlerin kaynağı" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "Onarım ve geliştirme paketlerinin kaynağını &göster" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "Arka Uç Hakkında" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "Arka uç adı:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "arka uç adı buraya gelecek" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "Arka uç yazarı:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find Description" +msgid "Backend description:" +msgstr "Açıklama Bul" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "arka ucun yazarının adı buraya gelecek" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "arka uç adı buraya gelecek" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "Paket görülebilir" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "En yeni" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "Arayüz" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "Özgür yazılım" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "Desteklenen" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "Yöntemler" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "Güncellemeleri Al" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "Paketi Güncelle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "Depo Listesini Al" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "Önbelleği Tazele" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "Paketi Kur" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "Depoyu Etkinleştir" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "Sistemi Güncelle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "Paketi Kaldır" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "Depoyu Etkinleştir" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "İsim Ara" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "Paketleri Al" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "Grup Ara" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "Güncelleme Ayrıntılarını Al" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "Dosya Ara" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "Açıklamaları Al" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "Dosyaları Al" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "Çözümle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "Dosya Yükle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 msgid "SimulateInstallFiles" -msgstr "" +msgstr "Dosya Kurma İşlemininin Benzetimini Yap" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 msgid "SimulateInstallPackages" -msgstr "" +msgstr "Paket Kurma İşlemininin Benzetimini Yap" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 msgid "SimulateRemovePackages" -msgstr "" +msgstr "Paket Kaldırma İşlemininin Benzetimini Yap" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 msgid "SimulateUpdatePackages" -msgstr "" +msgstr "Paket Güncelleme İşlemininin Benzetimini Yap" + +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "Önceki aktarımlar alındı" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "" +#~ "Bu ögeler arka uç tarafından desteklenmiyor veya bunlar dosya değil." + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Ek paketler gerekiyor:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Bu paketleri aramak ve kurmak istiyor musunuz?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                                                  %1
                                                                  Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Bu dosya tipini açmak bir ek program gerekiyor:
                                                                  %1
                                                                  Bu dosya " +#~ "tipini açmak için gerekli bir program aramak ister misiniz?" + +#~ msgid "All packages" +#~ msgstr "Tüm paketler" + +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "" +#~ "Bu eylemi gerçekleştirmek için gerekli olan haklara sahip değilsiniz." + +#~ msgid "Package Name" +#~ msgstr "Paket Adı" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKit Ayarları" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Sistem Çekmecesi Simgesi" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Uzun görevler tamamlandığında haber ver" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - Aktarım" + +#~ msgid "A library to do foo" +#~ msgstr "Gerçek komut yerine geçici değer kullanmak için bir kitaplık" #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "Aşağıdaki paketler bağımlılık olarak ayrıca kurulacak" @@ -3241,9 +3699,6 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "Aşağıdaki paketler ayrıca kaldırılmak/kurulmak zorunda:" -#~ msgid "Failed to update package lists" -#~ msgstr "Paket listesi güncellenemedi" - #~ msgid "Failed to refresh package lists" #~ msgstr "Paket listeleri yenilenemedi" @@ -3319,9 +3774,6 @@ #~ msgid "Downloading" #~ msgstr "İndiriliyor" -#~ msgid "Updating" -#~ msgstr "Güncelleniyor" - #~ msgid "Cleaning Up" #~ msgstr "Temizleniyor" @@ -3405,9 +3857,6 @@ #~ msgid "Find Name" #~ msgstr "Ad Bul" -#~ msgid "Find Description" -#~ msgstr "Açıklama Bul" - #~ msgid "Find File" #~ msgstr "Dosya Bul" diff -Nru kpackagekit-0.5.4/po/uk/kpackagekit.po kpackagekit-0.6.0/po/uk/kpackagekit.po --- kpackagekit-0.5.4/po/uk/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/uk/kpackagekit.po 2010-01-30 09:04:48.000000000 +0000 @@ -1,78 +1,77 @@ -# translation of kpackagekit.po to Český -# Copyright (C) 2009 This_file_is_part_of_KDE -# This file is distributed under the same license as the kpackagekit package. +# translation of kpackagekit.po to Ukrainian +# Copyright (C) YEAR This_file_is_part_of_KDE +# This file is distributed under the same license as the PACKAGE package. # -# Vit Pelcak, 2008. -# Vit Pelcak , 2008. -# Lukáš Tinkl , 2009. +# Yuri Chornoivan , 2008, 2009, 2010. msgid "" msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" -"PO-Revision-Date: 2009-07-03 15:19+0200\n" -"Last-Translator: Lukas Tinkl \n" -"Language-Team: Czech \n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" +"PO-Revision-Date: 2010-01-29 17:55+0200\n" +"Last-Translator: Yuri Chornoivan \n" +"Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Emacs 22.3.1, po-mode 2.01+0.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Lokalize 1.0\n" #: Updater/KpkSimpleTransactionModel.cpp:46 msgid "Date" -msgstr "Datum" +msgstr "Дата" #: Updater/KpkSimpleTransactionModel.cpp:47 #: libkpackagekit/KpkPackageModel.cpp:144 msgid "Action" -msgstr "Akce" +msgstr "Дія" #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" -msgstr "Detaily" +msgstr "Подробиці" #: Updater/KpkSimpleTransactionModel.cpp:49 msgctxt "Machine user who issued the transaction" msgid "Username" -msgstr "Uživatelské jméno" +msgstr "Користувач" #: Updater/KpkSimpleTransactionModel.cpp:50 msgid "Application" -msgstr "Aplikace" +msgstr "Програма" #: Updater/KcmKpkUpdate.cpp:37 msgid "Software update" -msgstr "Aktualizace softwaru" +msgstr "Оновлення програм" #: Updater/KcmKpkUpdate.cpp:39 msgid "KDE interface for updating software" -msgstr "KDE rozhraní pro aktualizace softwaru" +msgstr "Інтерфейс KDE для оновлення програмного забезпечення" #: Updater/KcmKpkUpdate.cpp:41 AddRm/KcmKpkAddRm.cpp:41 SmartIcon/main.cpp:38 #: Settings/KcmKpkSettings.cpp:41 KPackageKit/main.cpp:38 msgid "(C) 2008-2009 Daniel Nicoletti" -msgstr "(C) 2008-2009 Daniel Nicoletti" +msgstr "© Daniel Nicoletti, 2008–2009" #: Updater/KpkDistroUpgrade.cpp:45 SmartIcon/KpkDistroUpgrade.cpp:62 msgid "Distribution upgrade available" -msgstr "Dostupná aktualizace distribuce" +msgstr "Доступне оновлення дистрибутива" #: Updater/KpkDistroUpgrade.cpp:55 Updater/KpkDistroUpgrade.cpp:56 #, kde-format msgid "Upgrade to %1" -msgstr "Aktualizovat na %1" +msgstr "Оновити до %1" #: Updater/KpkDistroUpgrade.cpp:57 #, kde-format msgid "Click to upgrade to %1" -msgstr "Kliknutím aktualizujete na %1" +msgstr "Натисніть, щоб оновити до %1" #: Updater/KpkDistroUpgrade.cpp:71 msgid "" @@ -80,87 +79,97 @@ "usually a very lengthy process and takes a lot longer than simply upgrading " "your packages." msgstr "" +"Ви маєте намір оновити ваш дистрибутив до останньої версії. Зазвичай, цей " +"процес є досить тривалим: він набагато триваліший за звичайне оновлення " +"ваших пакунків." #: Updater/KpkDistroUpgrade.cpp:76 msgid "It is recommended to plug in your computer before proceeding." msgstr "" +"Рекомендуємо увімкнути живлення вашого комп’ютера від електричної мережі, " +"перш ніж продовжувати." #: Updater/KpkDistroUpgrade.cpp:78 msgid "" "It is recommended that you keep your computer plugged in while the upgrade " "is being performed." msgstr "" +"Рекомендуємо вам не вимикати мережевого живлення до завершення процесу " +"оновлення." -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." -msgstr "Aktualizace distribuce dokončena." +msgstr "Оновлення дистрибутива завершено." -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." -msgstr "Proces aktualizace distribuce skončil s kódem %1." +msgstr "Процес оновлення дистрибутива завершився з кодом завершення %1." -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." -msgstr "Proces aktualizace distribuce se nezdařilo spustit." +msgstr "Не вдалося розпочати процес оновлення дистрибутива." -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "" -"Proces aktualizace distribuce zhavaroval chvíli poté, co byl úspěšně spuštěn." +"Процес оновлення дистрибутива аварійно завершився через деякий час після " +"успішного запуску." -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." -msgstr "Proces aktualizace distribuce selhala s neznámou chybu." +msgstr "" +"Процес оновлення дистрибутива аварійно завершився з повідомленням про " +"невідому помилку." #: Updater/KpkUpdateDetails.cpp:61 msgid "Type" -msgstr "Typ" +msgstr "Тип" #: Updater/KpkUpdateDetails.cpp:67 msgctxt "State of the upgrade (ie testing, unstable..)" msgid "State" -msgstr "Stav" +msgstr "Стан" #: Updater/KpkUpdateDetails.cpp:74 msgid "Issued" -msgstr "Vydáno" +msgstr "Випущено" #: Updater/KpkUpdateDetails.cpp:81 msgid "Updated" -msgstr "Aktualizováno" +msgstr "Оновлено" #: Updater/KpkUpdateDetails.cpp:87 msgid "New version" -msgstr "Nová verze" +msgstr "Нова версія" #: Updater/KpkUpdateDetails.cpp:95 msgid "Updates" -msgstr "Aktualizuje" +msgstr "Оновлює" #: Updater/KpkUpdateDetails.cpp:104 msgid "Obsoletes" -msgstr "Zastarává" +msgstr "Робить застарілим" #: Updater/KpkUpdateDetails.cpp:110 msgid "Repository" -msgstr "Úložiště" +msgstr "Сховище" #. i18n: file: AddRm/KpkPackageDetails.ui:50 #. i18n: ectx: property (text), widget (QToolButton, descriptionTB) #: Updater/KpkUpdateDetails.cpp:116 rc.cpp:26 msgid "Description" -msgstr "Popis" +msgstr "Опис" #: Updater/KpkUpdateDetails.cpp:123 msgid "Changes" -msgstr "Změny" +msgstr "Зміни" #: Updater/KpkUpdateDetails.cpp:131 msgid "Vendor" -msgstr "Dodavatel" +msgstr "Постачальник" #: Updater/KpkUpdateDetails.cpp:137 msgid "Bugzilla" @@ -172,2419 +181,2511 @@ #: Updater/KpkUpdateDetails.cpp:149 msgid "Notice" -msgstr "Upozornění" +msgstr "Зауваження" #: Updater/KpkUpdateDetails.cpp:185 msgid "No update description was found." -msgstr "Popis aktualizace nebyl nalezen." +msgstr "Вибачте, опису оновлення не було знайдено." #: Updater/KpkHistory.cpp:47 msgid "Rollback" -msgstr "Vrátit zpět" +msgstr "Повернення до попереднього" #: Updater/KpkHistory.cpp:52 msgid "Refresh transactions list" -msgstr "Obnovit seznam transakcí" +msgstr "Освіжити список транзакцій" #: Updater/KpkHistory.cpp:100 #, kde-format msgid "Time since last cache refresh: %1" -msgstr "Čas od posledního obnovení cache: %1" +msgstr "Час з останнього освіження кешу: %1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "Název balíčku" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "Домашня сторінка" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" -msgstr "Licence" +msgstr "Ліцензія" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" -msgstr "Skupina" +msgstr "Група" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "Domovská stránka" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" -msgstr "Velikost" +msgstr "Розмір" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." -msgstr "Nebyly nalezeny žádné soubory." +msgstr "Не знайдено жодних файлів." #: AddRm/KcmKpkAddRm.cpp:37 msgid "Add and remove software" -msgstr "Přidat a odebrat software" +msgstr "Додати або вилучити програми" #: AddRm/KcmKpkAddRm.cpp:39 msgid "KDE interface for managing software" -msgstr "KDE rozhraní pro správu softwaru" +msgstr "Інтерфейс KDE для керування програмним забезпеченням" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" -msgstr "Najít" +msgstr "Знайти" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "Všechny balíčky" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "Пошук тексту" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" -msgstr "Seznam změn" +msgstr "Список змін" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" -msgstr[0] "Skupina:" -msgstr[1] "Skupiny:" -msgstr[2] "Skupiny:" +msgstr[0] "Група:" +msgstr[1] "Групи:" +msgstr[2] "Групи:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" -msgstr "Z&rušit" +msgstr "&Скасувати" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" -msgstr "Najít podle &názvu:" +msgstr "Знайти за &назвою" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" -msgstr "Na&jít podle názvu souboru:" +msgstr "Знайти за н&азвою файла" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" -msgstr "Najít po&dle popisu:" +msgstr "Знайти за &описом" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" -msgstr "Prohlédnout změny" +msgstr "Переглянути зміни" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" -msgstr "Kolekce" +msgstr "Збірки" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" -msgstr "Pouze kolekce" +msgstr "Лише збірки" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" -msgstr "Vyřadit kolekce" +msgstr "Виключити збірки" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" -msgstr "Nainstalované" +msgstr "Встановлене" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" -msgstr "Pouze nainstalované" +msgstr "Лише встановлені" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" -msgstr "Pouze dostupné" +msgstr "Лише доступні" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" -msgstr "Žádný filtr" +msgstr "Без фільтра" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" -msgstr "Vývoj" +msgstr "Розробка" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" -msgstr "Pouze vývojové" +msgstr "Лише для розробки" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" -msgstr "Pouze soubory pro koncové uživatele" +msgstr "Лише файли для кінцевого користувача" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" -msgstr "Grafické" +msgstr "Графічні" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" -msgstr "Pouze grafické" +msgstr "Лише графіка" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" -msgstr "Pouze text" +msgstr "Лише текст" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" -msgstr "Svobodné" +msgstr "Вільні" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" -msgstr "Pouze svobodný software" +msgstr "Лише вільні програми" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" -msgstr "Pouze nesvobodný software" +msgstr "Лише не вільні програми" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" -msgstr "Architektury" +msgstr "Архітектури" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" -msgstr "Pouze nativní architektury" +msgstr "Лише пакунки для рідної архітектури" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" -msgstr "Pouze nenatvní architektury" +msgstr "Лише пакунки для сторонніх архітектур" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" -msgstr "Zdroj" +msgstr "Джерело" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" -msgstr "Pouze zdrojové soubory" +msgstr "Лише пакунки з початковими кодами" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" -msgstr "Pouze ne-zdrojové kódy" +msgstr "Лише пакунки без початкових кодів" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" -msgstr "Skrýt podbalíčky" +msgstr "Сховати підпакунки" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" -msgstr "Zobrazit pouze jeden balíček, ne podbalíčky" +msgstr "Показувати лише один пакунок, а не підпакунки" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" -msgstr "Pouze nejnovější balíčky" +msgstr "Лише найновіші пакунки" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" -msgstr "Zobrazit pouze nejnovější dostupný balíček" +msgstr "Показувати лише найновіший з доступних пакунків" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" -msgstr "Zobrazit ve skupinách" +msgstr "Перегляд групами" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" -msgstr "Zobrazit balíčky ve skupinách podle stavu" +msgstr "Показувати пакунки за групами, відповідно до стану" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" -msgstr[0] "Následující balíček bude nainstalován:" -msgstr[1] "Následující balíčky budou nainstalovány:" -msgstr[2] "Následující balíčky budou nainstalovány:" +msgstr[0] "Буде встановлено такий пакунок:" +msgstr[1] "Буде встановлено такі пакунки:" +msgstr[2] "Буде встановлено такі пакунки:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" -msgstr "Instalovat nyní" +msgstr "Встановити зараз" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" -msgstr[0] "Následující balíček bude odebrán:" -msgstr[1] "Následující balíčky budou odebrány:" -msgstr[2] "Následující balíčky budou odebrány:" +msgstr[0] "Буде вилучено такий пакунок:" +msgstr[1] "Буде вилучено такі пакунки:" +msgstr[2] "Буде вилучено такі пакунки:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" -msgstr "Ostranit nyní" +msgstr "Вилучити зараз" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" -msgstr[0] "Následující balíček bude odebrán a nainstalován:" -msgstr[1] "Následující balíčky budou odebrány a nainstalovány:" -msgstr[2] "Následující balíčky budou odebrány a nainstalovány:" +msgstr[0] "Буде вилучено і встановлено такий пакунок:" +msgstr[1] "Буде вилучено і встановлено такі пакунки:" +msgstr[2] "Буде вилучено і встановлено такі пакунки:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" -msgstr "Použít nyní" +msgstr "Застосувати зараз" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +msgid "Failed to simulate package removal" +msgstr "Не вдалося зімітувати вилучення пакунка" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." -msgstr "Bohužel Váš backend nepodporuje odstranění balíčků." +msgstr "Вибачте, сервер вашої системи не підтримує вилучення пакунків." -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" -msgstr "Chyba KPackageKit" +msgstr "Помилка KPackageKit" -#: libkpackagekit/KpkReviewChanges.cpp:177 -msgid "Current backend does not support installing packages." -msgstr "Bohužel, Váš backend nepodporuje instalaci balíčků." +#: libkpackagekit/KpkReviewChanges.cpp:201 +msgid "Failed to simulate package install" +msgstr "Не вдалося зімітувати встановлення пакунка" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "Npovedlo se odstranit balíček" +#: libkpackagekit/KpkReviewChanges.cpp:224 +msgid "Current backend does not support installing packages." +msgstr "Вибачте, ваш сервер не підтримує встановлення пакунків." -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" -msgstr "Instalace balíčku selhala" +msgstr "Не вдалося встановити пакунок" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "Не вдалося вилучити пакунок" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" -msgstr "Skrýt" +msgstr "Сховати" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." -msgstr "Umožní skrýt okno, ale nepřeruší běh úlohy" +msgstr "" +"Надає вам змогу сховати вікно, але продовжити виконання роботи з пакунками." -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" +"Ваш намір встановити непідписані пакунки може призвести до зниження рівня " +"безпеки вашої системи, оскільки неможливо перевірити, чи отримано програмне " +"забезпечення з надійного джерела.\n" +" Ви справді бажаєте продовжити встановлення?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" -msgstr "Instaluje se nepodepsaný software" +msgstr "Встановлення непідписаних програм" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" -msgstr "Je vyžadována změna média" +msgstr "Потрібно змінити носій" #: libkpackagekit/KpkProgressBar.cpp:38 #, kde-format msgid "%1 remaining" -msgstr "Zbývá %1" +msgstr "Залишилося %1" #: libkpackagekit/KpkPackageModel.cpp:142 #: libkpackagekit/KpkSimulateModel.cpp:122 msgid "Package" -msgstr "Balíček" +msgstr "Пакунок" #: libkpackagekit/KpkLicenseAgreement.cpp:34 msgid "Accept Agreement" -msgstr "Přijmout ujednání" +msgstr "Прийняти угоду" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" -msgstr "Je vyžadováno licenční ujednání" +msgstr "Потрібна ліцензійна угода" #: libkpackagekit/KpkLicenseAgreement.cpp:36 #, kde-format msgid "License required for %1 by %2" -msgstr "Vyžadována licence pro %1 balíčkem %2" +msgstr "Слід прийняти ліцензійну угоду %1 від %2" #: libkpackagekit/KpkSimulateModel.cpp:124 -#, fuzzy -#| msgid "New version" msgid "Version" -msgstr "Nová verze" +msgstr "Версія" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" -msgstr "Zrušit" +msgstr "Скасувати" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." -msgstr "Hledání za %1." +msgstr "Завершено у %1." #: libkpackagekit/KpkRequirements.cpp:219 -#, fuzzy -#| msgid "List of changes" msgid "Additional changes" -msgstr "Seznam změn" +msgstr "Додаткові зміни" #: libkpackagekit/KpkRequirements.cpp:221 msgid "Continue" -msgstr "" +msgstr "Продовжити" #: libkpackagekit/KpkRequirements.cpp:252 -#, fuzzy, kde-format -#| msgid "Single package remover" +#, kde-format msgid "1 package to remove" msgid_plural "%1 packages to remove" -msgstr[0] "Odstranění jednoho balíčku" -msgstr[1] "Odstranění jednoho balíčku" -msgstr[2] "Odstranění jednoho balíčku" +msgstr[0] "%1 пакунок для вилучення" +msgstr[1] "%1 пакунки для вилучення" +msgstr[2] "%1 пакунків для вилучення" #: libkpackagekit/KpkRequirements.cpp:261 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to downgrade" msgid_plural "%1 packages to downgrade" -msgstr[0] "Žádný balík k aktualizaci" -msgstr[1] "Žádný balík k aktualizaci" -msgstr[2] "Žádný balík k aktualizaci" +msgstr[0] "%1 пакунок зі зниженням версії" +msgstr[1] "%1 пакунки зі зниженням версії" +msgstr[2] "%1 пакунків зі зниженням версії" #: libkpackagekit/KpkRequirements.cpp:272 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to reinstall" msgid_plural "%1 packages to reinstall" -msgstr[0] "Soubor s balíčkem k instalaci" -msgstr[1] "Soubor s balíčkem k instalaci" -msgstr[2] "Soubor s balíčkem k instalaci" +msgstr[0] "%1 пакунок для перевстановлення" +msgstr[1] "%1 пакунки для перевстановлення" +msgstr[2] "%1 пакунків для перевстановлення" #: libkpackagekit/KpkRequirements.cpp:283 -#, fuzzy, kde-format -#| msgid "Package file to install" +#, kde-format msgid "1 package to install" msgid_plural "%1 packages to install" -msgstr[0] "Soubor s balíčkem k instalaci" -msgstr[1] "Soubor s balíčkem k instalaci" -msgstr[2] "Soubor s balíčkem k instalaci" +msgstr[0] "%1 пакунок для встановлення" +msgstr[1] "%1 пакунки для встановлення" +msgstr[2] "%1 пакунків для встановлення" #: libkpackagekit/KpkRequirements.cpp:294 -#, fuzzy, kde-format -#| msgid "No packages to update" +#, kde-format msgid "1 package to update" msgid_plural "%1 packages to update" -msgstr[0] "Žádný balík k aktualizaci" -msgstr[1] "Žádný balík k aktualizaci" -msgstr[2] "Žádný balík k aktualizaci" +msgstr[0] "%1 пакунок для оновлення" +msgstr[1] "%1 пакунки для оновлення" +msgstr[2] "%1 пакунків для оновлення" #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" -msgstr "Je vyžadován podpis softwaru" +msgstr "Потрібен програмний підпис" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +msgctxt "This is when the transaction status is not known" msgid "Unknown state" -msgstr "Neznámý stav" +msgstr "Невідомий стан" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" -msgstr "Čeká se na start služby" +msgstr "Очікування за запуск служби" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" -msgstr "Čeká se na další úlohy" +msgstr "Очікування на завершення інших завдань" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +msgctxt "transaction state, just started" msgid "Running task" -msgstr "Běžící úloha" +msgstr "Виконується завдання" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +msgctxt "transaction state, is querying data" msgid "Querying" -msgstr "Dotazování" +msgstr "Виконання запиту" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +msgctxt "transaction state, getting data from a server" msgid "Getting information" -msgstr "Získávají se informace" +msgstr "Отримання інформації" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +msgctxt "transaction state, removing packages" msgid "Removing packages" -msgstr "Odstraňují se balíčky" +msgstr "Вилучення пакунків" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +msgctxt "transaction state, downloading package files" msgid "Downloading packages" -msgstr "Stahují se balíčky" +msgstr "Звантаження пакунків" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +msgctxt "transaction state, installing packages" msgid "Installing packages" -msgstr "Instalují se balíčky" +msgstr "Встановлення пакунків" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" -msgstr "Obnovuje se seznam softwaru" +msgstr "Освіження списку програм" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +msgctxt "transaction state, installing updates" msgid "Updating packages" -msgstr "Aktualizují se balíčky" +msgstr "Оновлення пакунків" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" -msgstr "Čistí se balíčky" +msgstr "Вилучення зайвих пакунків" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" -msgstr "Zastarávají se balíčky" +msgstr "Вилучення застарілих пакунків" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" -msgstr "Řeší se závislosti" +msgstr "Розв’язання залежностей" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" -msgstr "Kontrolují se podpisy" +msgstr "Перевірка підписів" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" -msgstr "Navrací se" +msgstr "Повернення до попереднього" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" -msgstr "Testují se změny" +msgstr "Випробування змін" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" -msgstr "Zasílají se změny" +msgstr "Застосування змін" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" -msgstr "Požadují se data" +msgstr "Запит щодо даних" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +msgctxt "transaction state, all done!" msgid "Finished" -msgstr "Hotovo" +msgstr "Завершено" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" -msgstr "Ruší se" +msgstr "Скасування" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" -msgstr "Stahují se informace o repozitářích" +msgstr "Звантаження інформації про сховище" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" -msgstr "Stahuje se seznam balíčků" +msgstr "Звантаження списку пакунків" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" -msgstr "Stahují se seznamy souborů" +msgstr "Звантаження списків файлів" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" -msgstr "Stahuje se seznam změn" +msgstr "Звантаження списків змін" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" -msgstr "Stahují se skupiny" +msgstr "Звантаження груп" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" -msgstr "Stahují se informace o aktualizacích" +msgstr "Звантаження інформації про оновлення" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" -msgstr "Přebalují se soubory" +msgstr "Перепакування файлів" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +msgctxt "transaction state, loading databases" msgid "Loading cache" -msgstr "Nahrává se cache" +msgstr "Завантаження кешу" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" -msgstr "Prohledávají se nainstalované aplikace" +msgstr "Перевірка встановлених програм" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" -msgstr "Generují se seznamy balíčků" +msgstr "Створення списків пакунків" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" -msgstr "Čekám na zámek od správce balíčků" +msgstr "Очікування на зняття блокування керування пакунками" -#: libkpackagekit/KpkStrings.cpp:95 -#, fuzzy -#| msgctxt "The transaction state" -#| msgid "Waiting for other tasks" -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:128 +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" -msgstr "Čeká se na další úlohy" +msgstr "Очікування на завершення розпізнавання" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" -msgstr "" +msgstr "Оновлення списку запущених програм" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" -msgstr "" +msgstr "Виявлення програм, що використовуються" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" -msgstr "" +msgstr "Виявлення бібліотек, що використовуються" + +#: libkpackagekit/KpkStrings.cpp:140 +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "Копіювання файлів" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" -msgstr "Staženo" +msgstr "Звантажено" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" -msgstr "Aktualizováno" +msgstr "Оновлено" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" -msgstr "Nainstalováno" +msgstr "Встановлене" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" -msgstr "Ostraněno" +msgstr "Вилучено" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" -msgstr "Vyčištěno" +msgstr "Спорожнено" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" -msgstr "Zastaralé" +msgstr "Став застарілим" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" -msgstr "Neznámý typ role" +msgstr "Невідомий тип" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" -msgstr "Zjišťují se závislosti" +msgstr "Отримання залежностей" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" -msgstr "Získávají se podrobnosti aktualizace" +msgstr "Отримання подробиць про оновлення" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" -msgstr "Získávají se podrobné informace" +msgstr "Отримання подробиць" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" -msgstr "Získávají se požadavky" +msgstr "Отримання даних про вимоги" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" -msgstr "Získávají se aktualizace" +msgstr "Отримання оновлень" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" -msgstr "Hledají se podrobnosti" +msgstr "Пошук подробиць" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" -msgstr "Hledá se soubor" +msgstr "Пошук файла" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" -msgstr "Hledají se skupiny" +msgstr "Пошук груп" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" -msgstr "Hledá se název balíčku" +msgstr "Пошук назви пакунка" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" -msgstr "Ostraňuje se" +msgstr "Вилучення" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" -msgstr "Instaluje se" +msgstr "Встановлення" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" -msgstr "Instaluje se soubor" +msgstr "Встановлення файла" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" -msgstr "Obnovuje se cache balíčků" +msgstr "Освіження кешу пакунків" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" -msgstr "Aktualizují se balíčky" +msgstr "Оновлення пакунків" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" -msgstr "Aktualizuje se systém" +msgstr "Оновлення системи" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" -msgstr "Ruší se" +msgstr "Скасування" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" -msgstr "Navrací se" +msgstr "Повернення до попереднього" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" -msgstr "Získává se seznam úložišť" +msgstr "Отримання списку сховищ" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" -msgstr "Povoluje se úložiště" +msgstr "Увімкнення сховища" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" -msgstr "Nastavují se data o úložišti" +msgstr "Встановлення даних сховища" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" -msgstr "Řeší se" +msgstr "Розв’язання" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" -msgstr "Získává se seznam souborů" +msgstr "Отримання списку файлів" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" -msgstr "Získává se co poskytuje" +msgstr "Отримання даних про вміст" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" -msgstr "Instaluje se podpis" +msgstr "Встановлення підпису" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" -msgstr "Získávají se seznamy balíčků" +msgstr "Отримання списків пакунків" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" -msgstr "Přijímá se EULA" +msgstr "Згода з EULA" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" -msgstr "Stahují se balíčky" +msgstr "Звантаження пакунків" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" -msgstr "Získávají se informace o aktualizaci distribuce" +msgstr "Отримання інформації про оновлення дистрибутива" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" -msgstr "Získávají se kategorie" +msgstr "Отримання категорій" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" -msgstr "Získávají se staré transakce" +msgstr "Отримання списку старих дій" -#: libkpackagekit/KpkStrings.cpp:194 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" +#: libkpackagekit/KpkStrings.cpp:233 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install of files" -msgstr "Instalace souboru selhala" +msgstr "Імітація встановлення файлів" -#: libkpackagekit/KpkStrings.cpp:196 -#, fuzzy -#| msgid "Single file installer" +#: libkpackagekit/KpkStrings.cpp:235 msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" -msgstr "Instalátor jednotlivých souborů" +msgstr "Імітація встановлення" -#: libkpackagekit/KpkStrings.cpp:198 -#, fuzzy -#| msgid "Single package remover" +#: libkpackagekit/KpkStrings.cpp:237 msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" -msgstr "Odstranění jednoho balíčku" +msgstr "Імітація вилучення" -#: libkpackagekit/KpkStrings.cpp:200 -#, fuzzy -#| msgid "1 important update" -#| msgid_plural "%1 important updates" +#: libkpackagekit/KpkStrings.cpp:239 msgctxt "The role of the transaction, in present tense" msgid "Simulating the update" -msgstr "1 důležitá aktualizace" +msgstr "Імітація оновлення" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" -msgstr "Neznámý typ role" +msgstr "Невідомий тип" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" -msgstr "Obdrženy závislosti" +msgstr "Отримано залежностей" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" -msgstr "Obdrženy podrobnosti aktualizace" +msgstr "Отримано подробиці про оновлення" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" -msgstr "Obdrženy podrobné informace" +msgstr "Отримано подробиць" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" -msgstr "Obdrženy požadavky" +msgstr "Отримано вимог" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" -msgstr "Obdrženy aktualizace" +msgstr "Отримано оновлення" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" -msgstr "Vyhledány podrobnosti o balíčku" +msgstr "Шукати відомостей про пакунок" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" -msgstr "Vyhledán soubor" +msgstr "Пошук файла" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" -msgstr "Vyhledány skupiny" +msgstr "Пошук груп" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" -msgstr "Vyhledán název balíčku" +msgstr "Пошук назви пакунка" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" -msgstr "Odstraněny balíčky" +msgstr "Вилучено пакунки" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" -msgstr "Nainstalovány balíčky" +msgstr "Встановлено пакунки" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" -msgstr "Nainstalovány místní soubory" +msgstr "Встановлено локальні файли" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" -msgstr "Obnovena cache balíčků" +msgstr "Освіжено кеш пакунків" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" -msgstr "Aktualizovány balíčky" +msgstr "Оновлено пакунки" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" -msgstr "Aktualizován systém" +msgstr "Оновлено систему" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" -msgstr "Zrušeno" +msgstr "Скасовано" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" -msgstr "Vráceno zpět" +msgstr "Повернення до попереднього" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" -msgstr "Získán seznam úložišť" +msgstr "Отримано список сховищ" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" -msgstr "Povoleno úložiště" +msgstr "Увімкнено сховище" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" -msgstr "Nastavena data o úložišti" +msgstr "Встановлено дані сховища" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" -msgstr "Vyřešeno" +msgstr "Розв’язано" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" -msgstr "Získán seznam souborů" +msgstr "Отримано список файлів" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" -msgstr "Získáno co poskytuje" +msgstr "Отримано дані про вміст" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" -msgstr "Nainstalován podpis" +msgstr "Встановлено підпис" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" -msgstr "Získán seznamy balíčků" +msgstr "Отримано списків пакунків" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" -msgstr "Přijmuta EULA" +msgstr "Згода з EULA" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" -msgstr "Staženy balíčky" +msgstr "Звантажено пакунки" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" -msgstr "Získány informace o aktualizaci distribuce" +msgstr "Отримано оновлення дистрибутива" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" -msgstr "Získány kategorie" +msgstr "Отримано список категорій" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" -msgstr "Získány staré transakce" +msgstr "Отримано список старих дій" -#: libkpackagekit/KpkStrings.cpp:272 -#, fuzzy -#| msgid "Failed to install file" -#| msgid_plural "Failed to install files" +#: libkpackagekit/KpkStrings.cpp:311 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install of files" -msgstr "Instalace souboru selhala" +msgstr "Зімітовано встановлення файлів" -#: libkpackagekit/KpkStrings.cpp:274 -#, fuzzy -#| msgid "Mime type installer" +#: libkpackagekit/KpkStrings.cpp:313 msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" -msgstr "Instalátor MIME typů" +msgstr "Зімітовано встановлення" -#: libkpackagekit/KpkStrings.cpp:276 -#, fuzzy -#| msgid "Single package remover" +#: libkpackagekit/KpkStrings.cpp:315 msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" -msgstr "Odstranění jednoho balíčku" +msgstr "Зімітовано вилучення" -#: libkpackagekit/KpkStrings.cpp:278 -#, fuzzy -#| msgid "Failed to update system" +#: libkpackagekit/KpkStrings.cpp:317 msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" -msgstr "Nepovedlo se aktualizovat systém" +msgstr "Зімітовано оновлення" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" -msgstr "Není dostupné internetové připojení" +msgstr "З’єднання з мережею недоступне" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" -msgstr "Není dostupná cache balíčků" +msgstr "Кеш пакунків недоступний" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" -msgstr "Nedostatek paměti" +msgstr "Не вистачає пам'яті" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" -msgstr "Npovedlo se vytvořit vlákno" +msgstr "Не вдалося створити нитку" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" -msgstr "Není tímto backendem podporováno" +msgstr "Не підтримується цим сервером" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" -msgstr "Došlo k vnitřní chybě systému" +msgstr "Сталася внутрішня системна помилка" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" -msgstr "" +msgstr "Відсутні відносини довіри щодо безпеки" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" -msgstr "Balíček není nainstalován" +msgstr "Пакунок не встановлено" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" -msgstr "Balíček nebyl nalezen" +msgstr "Пакунок не було знайдено" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" -msgstr "Balíček je již nainstalován" +msgstr "Пакунок вже встановлено" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" -msgstr "Stažení balíčku bylo neůspěšné" +msgstr "Звантаження пакунка зазнало невдачі" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" -msgstr "Skupina nenalezena" +msgstr "Групу не знайдено" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" -msgstr "Seznam skupin byl neplatný" +msgstr "Список груп був некоректним" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" -msgstr "Řešení závislostí bylo neúspěšné" +msgstr "Не вдалося розв’язати залежності" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" -msgstr "Filtr hledání byl neplatný" +msgstr "Некоректний фільтр пошуку" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" -msgstr "Identifikátor balíčku je chybný" +msgstr "Ідентифікатор пакунка неправильно оформлено" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" -msgstr "Chyba přenosu" +msgstr "Помилка під час операції" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" -msgstr "Název úložiště nebyl nalezen" +msgstr "Не знайдено назви сховища" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" -msgstr "Nelze odstranit chráněný systémový balíček" +msgstr "Не можна вилучати захищений системний пакунок" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" -msgstr "Úloha byla zrušena" +msgstr "Завдання було скасовано" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" -msgstr "Bylo vynuceno ukončení úlohy" +msgstr "Завдання було примусово скасовано" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" -msgstr "Čtení konfiguračního souboru selhalo" +msgstr "Спроба читання файла налаштувань зазнала невдачі" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" -msgstr "Úloha nemůže být zrušena" +msgstr "Завдання не можна скасувати" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" -msgstr "Zdrojové balíčky nemohly být nainstalovány" +msgstr "Пакунки вихідних кодів неможливо встановити" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" -msgstr "Licenční ujednání selhalo" +msgstr "Ліцензійну угоду не прийнято" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" -msgstr "Lokální konflikt souboru mezi balíčky" +msgstr "Конфлікт локальних файлів між пакунками" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" -msgstr "Balíčky nejsou kompatibilní" +msgstr "Пакунки несумісні" -#: libkpackagekit/KpkStrings.cpp:342 -#, fuzzy -#| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" -msgstr "Vyskytl se problém s připojením ke zdroji software" +#: libkpackagekit/KpkStrings.cpp:381 +msgid "Problem connecting to a software origin" +msgstr "Проблема зі зв’язком з джерелом програм" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" -msgstr "Selhala inicializace" +msgstr "Не вдалося ініціалізувати" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" -msgstr "Selhalo dokončení" +msgstr "Не вдала спроба завершення" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" -msgstr "Nelze získat zámek" +msgstr "Не вдалося заблокувати" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" -msgstr "Žádný balík k aktualizaci" +msgstr "Немає пакунків для оновлення" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" -msgstr "Nelze zapsat informaci o úložičtích" +msgstr "Не вдалося записати налаштування сховища" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" -msgstr "Lokální instalace selhala" +msgstr "Невдала спроба локального встановлення" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" -msgstr "Chybný GPG podpis" +msgstr "Неприйнятний підпис GPG" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" -msgstr "Chybějící GPG podpis" +msgstr "Немає підпису GPG" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" -msgstr "Nastavení úložišť je neplatné" +msgstr "Некоректне налаштування сховища" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" -msgstr "Neplatný balíček" +msgstr "Некоректний файл пакунка" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" -msgstr "Instalace balíčku zablokována" +msgstr "Встановлення пакунка заблоковано" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" -msgstr "Balíček je vadný" +msgstr "Пакунок пошкоджено" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" -msgstr "Všechny balíčky jsou již nainstalovány" +msgstr "Всі пакунки вже встановлено" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" -msgstr "Zadaný soubor nebyl nalezen" +msgstr "Не вдалося знайти вказаний файл" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" -msgstr "Je k dispozici více zrcadel" +msgstr "Вичерпано список дзеркал" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" -msgstr "Žádné informace a aktualizaci distribuce nejsou dostupné" +msgstr "Дані щодо оновлення дистрибутива недоступні" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" -msgstr "Balíček je nekompatibilní s tímto systémem." +msgstr "Пакунок є несумісним з цією системою" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" -msgstr "Na disku není žádné volné místo" +msgstr "На диску не залишилося місця" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" -msgstr "" +msgstr "Спроба розпізнавання зазнала невдачі" -#: libkpackagekit/KpkStrings.cpp:384 -#, fuzzy -#| msgid "The package was not found" +#: libkpackagekit/KpkStrings.cpp:423 msgid "Update not found" -msgstr "Balíček nebyl nalezen" +msgstr "Оновлення не було знайдено" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +msgid "Cannot install from untrusted origin" +msgstr "Не вдалося встановити з ненадійного джерела" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +msgid "Cannot update from untrusted origin" +msgstr "Не вдалося оновити з ненадійного джерела" -#: libkpackagekit/KpkStrings.cpp:390 -#, fuzzy -#| msgctxt "The role of the transaction, in past tense" -#| msgid "Got file list" +#: libkpackagekit/KpkStrings.cpp:429 msgid "Cannot get the file list" -msgstr "Získán seznam souborů" +msgstr "Не вдалося отримати список файлів" -#: libkpackagekit/KpkStrings.cpp:392 -#, fuzzy -#| msgid "An additional package is required:" -#| msgid_plural "Additional packages are required:" +#: libkpackagekit/KpkStrings.cpp:431 msgid "Cannot get package requires" -msgstr "Je vyžadován dodatečný balíček:" +msgstr "Не вдалося отримати список потрібних пакунків" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" +msgstr "Не вдалося вимкнути джерело" -#: libkpackagekit/KpkStrings.cpp:396 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:435 msgid "The download failed" -msgstr "Stažení balíčku bylo neůspěšné" +msgstr "Спроба звантаження зазнала невдачі" -#: libkpackagekit/KpkStrings.cpp:398 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:437 msgid "Package failed to configure" -msgstr "Soubor s balíčkem k instalaci" +msgstr "Спроба налаштування пакунка зазнала невдачі" -#: libkpackagekit/KpkStrings.cpp:400 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:439 msgid "Package failed to build" -msgstr "Soubor s balíčkem k instalaci" +msgstr "Спроба збирання пакунка зазнала невдачі" -#: libkpackagekit/KpkStrings.cpp:402 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:441 msgid "Package failed to install" -msgstr "Soubor s balíčkem k instalaci" +msgstr "Спроба встановлення пакунка зазнала невдачі" -#: libkpackagekit/KpkStrings.cpp:404 -#, fuzzy -#| msgid "Package file to install" +#: libkpackagekit/KpkStrings.cpp:443 msgid "Package failed to be removed" -msgstr "Soubor s balíčkem k instalaci" +msgstr "Не вдалося вилучити пакунок" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" -msgstr "Neznámá chyba" +msgstr "Невідома помилка" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" msgstr "" -"Není dostupné internetové připojení.\n" -"Prosím zkontrolujte nastavení připojení a zkuste znovu" +"З’єднання з мережею недоступне.\n" +"Будь ласка, перевірте ваші параметри з’єднання і спробуйте ще раз" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." msgstr "" -"Je třeba obnovit seznam balíčků.\n" -"O toto by se měl postarat automaticky backend." +"Список пакунків слід перебудувати.\n" +"Це буде автоматично зроблено сервером." -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" "Please close some programs or restart your computer." msgstr "" -"Službě, která je zodpovědná za zpracování požadavků uživatele došla paměť.\n" -"Prosím ukončete některé úlohy nebo restartujte svůj počítač." +"Служба, що відповідає з керування запитами користувача, вичерпала доступну " +"пам’ять.\n" +"Будь ласка, завершіть роботу певної частини програм або перезавантажте " +"комп’ютер." -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." -msgstr "Vlákno pro obsloužení uživatelova požadavku nemohlo být vytvořeno." +msgstr "Для потрібної користувачеві служби неможливо створити нитку." -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." msgstr "" -"Akce není tímto backendem podporována.\n" -"Prosím nahlašte chybu, protože toto by se nemělo stát." +"Ця дія не підтримується цим сервером.\n" +"Будь ласка, повідомте про ваду, оскільки цього не мало трапитися." -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." msgstr "" -"Vyskytnul se problém, který jsme nečekali.\n" -"Prosím nahlašte chybu s popisem problému." +"Сталася помилка, на яку ми не очікували.\n" +"Будь ласка, повідомте про цю ваду, долучивши опис помилки." -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" +"Неможливо створити відносини довіри щодо безпеки з цим джерелом програм.\n" +"Будь ласка, перевірте ваші параметри підписів пакунків." -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." -msgstr "Balíček, jenž má být odebrán nebo aktualizován, již není nainstalován." +msgstr "" +"Пакунок, щодо якого виконано спробу вилучення або оновлення, взагалі не " +"встановлено." -#: libkpackagekit/KpkStrings.cpp:438 -#, fuzzy -#| msgid "" -#| "The package that is being modified was not found on your system or in any " -#| "software source." +#: libkpackagekit/KpkStrings.cpp:477 msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "" -"Balíček, jenž má být změněn, nebyl nalezen ani ve Vašem systému ani ve " -"zdroji 
software." +"Пакунок, який ви змінюєте, не виявлено ні у вашій системі, ні у джерелах " +"програм." -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." -msgstr "Balíček, jenž má být nainstalován, už nainstalován je." +msgstr "Пакунок, який ви намагаєтеся встановити, вже встановлено." -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." msgstr "" -"Stažení balíčku se nezdařilo.\n" -"Prosím zkontrolujte internetové přiojení." +"Спроба звантаження пакунка зазнала невдачі.\n" +"Будь ласка, перевірте наявність зв’язку з мережею." -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." msgstr "" -"Typ skupiny nebyl nalezen.\n" -"Prosím zkontrolujte seznam skupin a zkuste znovu." +"Не знайдено типу групи.\n" +"Будь ласка, перевірте ваш список груп і спробуйте ще раз." -#: libkpackagekit/KpkStrings.cpp:448 -#, fuzzy -#| msgid "" -#| "The group list could not be loaded.\n" -#| "Refreshing your cache may help, although this is normally a software " -#| "source error." +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" -"Seznam skupin nemohl být načten.\n" -"Obnovení cache může pomoci, ale toto je spíše problém zdroje software." +"Не вдалося завантажити список груп.\n" +"Може допомогти освіження вашого кешу, але зазвичай такі помилки спричинені " +"вадами у програмах." -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." msgstr "" -"Závislost balíčku nebyla nalezena.\n" -"Více informací je dostupné v detailním hlášení." +"Не знайдено пакунок-залежність.\n" +"Детальнішу інформацію розміщено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." -msgstr "Filtr hledání nebyl správně formulován." +msgstr "Фільтр пошуку не було належно оформлено." -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." msgstr "" +"Ідентифікатор пакунка не було належним чином оформлено для надсилання до " +"фонової служби системи.\n" +"Зазвичай, це означає, що сталася внутрішня помилка. Повідомте про неї " +"розробників." -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." msgstr "" -"Došlo k nespecifikované chybě úlohy.\n" -"Více informací je dostupné v detailním hlášení." +"Під час виконання завдання сталася помилка.\n" +"Детальнішу інформацію наведено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:463 -#, fuzzy -#| msgid "" -#| "The remote software source name was not found.\n" -#| "You may need to enable an item in Software Sources." +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -"Jméno vzdáleného zdroje softwaru nebylo nalezeno.\n" -"Nejspíš bude třeba tuto položku povolit ve Zdrojích softwaru." +"Назву віддаленого джерела програм не було знайдено.\n" +"Можливо, вам слід увімкнути джерело у списку джерел програм." -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." -msgstr "Odebrání chráněného systémového balíčku není povoleno." +msgstr "Вилучення захищеного системного пакунка недозволене." -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." -msgstr "Úloha byla úspěšně zrušena a nebyly změněny žádné balíčky." +msgstr "Завдання було успішно скасовано, жодного з пакунків не було змінено." -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." msgstr "" -"Úloha byla úspěšně zrušena a nebyly změněny žádné balíčky.\n" -"Backend se ale neukončil čistě." +"Завдання було успішно скасовано, жодного з пакунків не було змінено.\n" +"Роботу сервера завершено в аварійному режимі." -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." msgstr "" +"Рідний файл налаштувань пакунка не вдалося відкрити.\n" +"Будь ласка, переконайтеся у правильності налаштувань вашої системи." -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." -msgstr "Není bezpečné teď zrušit běh úlohy." +msgstr "Зараз небезпечно скасовувати завдання." -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." msgstr "" -"Zdrojové balíčky takto normálně nejsou instalovány.\n" -"Zkontrolujte příponu souboru, který se pokoušíte nainstalovat." +"Пакунки з вихідними кодами не встановлюють таким чином.\n" +"Перевірте суфікс файла, який ви намагаєтеся встановити." -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." msgstr "" -"Licenční ujednání nebylo odsouhlaseno.\n" -"Pro použití tohoto software musíte s licencí souhlasit." +"Ви не погодилися на умови ліцензійної угоди.\n" +"Щоб користуватися програмою, вам слід прийняти умови ліцензії." -#: libkpackagekit/KpkStrings.cpp:484 -#, fuzzy -#| msgid "" -#| "Two packages provide the same file.\n" -#| "This is usually due to mixing packages for different software sources." +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" -"Dva balíčky poskytují stejný soubor.\n" -"Toto obvykle nastává proto, že jsou míchány různé zdroje software." +"Два пакунка містять однаковий файл.\n" +"Зазвичай, така ситуація спричинена змішуванням пакунків з різних джерел." -#: libkpackagekit/KpkStrings.cpp:487 -#, fuzzy -#| msgid "" -#| "Multiple packages exist that are not compatible with each other.\n" -#| "This is usually due to mixing packages from different software sources." +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" -"Existuje více balíčků, které nejsou vzájemně kompatibilní.\n" -"Toto obvykle nastává proto, že jsou míchány různé zdroje software." +"Існує декілька несумісних між собою пакунків.\n" +"Причиною цього, зазвичай, є використання одразу декількох різних джерел " +"програм." -#: libkpackagekit/KpkStrings.cpp:490 -#, fuzzy -#| msgid "" -#| "There was a (possibly temporary) problem connecting to a software " -#| "source.\n" -#| "Please check the detailed error for further details." +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -"Vyskytnul se (nejspíše dočasný) problém s připojením ke zdroji software.\n" -"Prosím zkontrolujte detaily chyby pro podrobnější informace." +"Виникла (можливо, тимчасова) проблема зі зв’язком з джерелом програм.\n" +"Будь ласка, погляньте на подробиці помилки, щоб дізнатися більше." -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." msgstr "" -"Nepovedlo se spustit balíčkovací backend.\n" -"Toto se stává pokud jsou spuštěni další správdi balíčků." +"Спроба ініціалізації сервера пакування зазнала невдачі.\n" +"Це може статися, якщо одночасно використовуються інші пакувальні інструменти." -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." msgstr "" -"Nepovedlo se ukončit běh backendu.\n" -"Tato chyba může být klidně ignorována." +"Спроба закриття екземпляра сервера зазнала невдачі.\n" +"Зазвичай, на таку помилку можна не зважати." -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." msgstr "" -"Nepovedlo se získat exkluzivní zámek balíčkovacího backendu.\n" -"Prosím ukončete ostatní balíčkovací nástroje." +"Не вдалося заблокувати сервер пакування для одноосібного використання.\n" +"Будь ласка, закрийте всі інші застарілі інструменти пакування, які може бути " +"відкрито." -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." -msgstr "Žádný z vybraných balíčků nemohl být aktualizován." +msgstr "Жоден з вибраних пакунків оновити неможливо." -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." -msgstr "Nastavení úložiště nemohlo být změněno." +msgstr "Не вдалося змінити налаштування сховища." -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." msgstr "" -"Instalace lokálního souboru selhala.\n" -"Více informací je dostupných v podrobném hlášení." +"Спроба встановлення локального файла зазнала невдачі.\n" +"Детальнішу інформацію наведено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." -msgstr "Podpis balíčku nemohl být ověřen." +msgstr "Не вдалося перевірити підпис пакунка." -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." msgstr "" -"Podpis balíčku chybí atento balíček je nedůvěryhodný.\n" -"Tento balíček nebyl při vyvtoření podepsán." +"Немає підпису пакунка, отже, цей пакунок не можна вважати надійним.\n" +"Цей пакунок не було підписано ключем GPG під час створення." -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." -msgstr "Nastavení úložišť je neplatné a nešlo přečíst." +msgstr "Налаштування сховища було некоректним, його не вдалося прочитати." -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." msgstr "" -"Balíček, který se pokoušíte nainstalovat je neplatný.\n" -"Balíček mohl být vadný, nebo to není balíček." +"Пакунок, який ви намагаєтеся встановити - некоректний.\n" +"Можливо, його пошкоджено, або це взагалі не пакунок." -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" -"Instalaci tohoto balíčku bylo zabráněno nastavením balíčkovacího systému." +"Встановлення цього пакунка заборонене налаштуванням вашої системи керування " +"пакунками." -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." -msgstr "Balíček, který byl stažen, je vadný a je třeba jej stáhnout znovu." +msgstr "" +"Звантажений пакунок було пошкоджено у процесі звантаження, його слід " +"звантажити ще раз." -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." -msgstr "" -"Všechny balíčky vybrané pro instalaci již v systému nainstalovány jsou." +msgstr "Всі обрані для встановлення пакунки вже встановлено у системі." -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." msgstr "" -"Zadaný soubor nemohl být v systému nalezen.\n" -"Zkontrolujte jestli existuje a nebyl smazán." +"У системі не вдалося знайти вказаний файл.\n" +"Перевірте, чи існує цей файл, чи його не було вилучено." -#: libkpackagekit/KpkStrings.cpp:528 -#, fuzzy -#| msgid "" -#| "Required data could not be found on any of the configured software " -#| "sources.\n" -#| "There were no more download mirrors that could be tried." +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -"Vyžadovaná data nemohla být na žádném z nastavených zdrojů softwaru " -"nalezena.\n" -"Není žádné další zrcadlo, které by se dalo zkusit." - -#: libkpackagekit/KpkStrings.cpp:531 -#, fuzzy -#| msgid "" -#| "Required upgrade data could not be found in any of the configured " -#| "software sources.\n" -#| "The list of distribution upgrades will be unavailable." +"Не вдалося знайти потрібні дані на будь-якому з налаштованих джерел " +"програм.\n" +"Перевірку за списком дзеркал звантажень завершено." + +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -"Vyžadovaná data pro aktualizaci nemohla být na žádném z nastavených zdrojů " -"softwaru nalezena.\n" -"Seznam aktualizací distribuce bude nedostupný." +"Не вдалося знайти потрібні для оновлення дані на будь-якому з налаштованих " +"джерел програм.\n" +"Список оновлень дистрибутива побудовано не буде." -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." -msgstr "Balíček, jenž má být nainstalován, není kompatibilní s tímto systémem." +msgstr "Пакунок, який ви намагаєтеся встановити, є несумісним з цією системою." -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -"Na disku není dostatek místa.\n" -"Uvolněte prosím nejprve nějaké místo k provedení operace." +"На цьому пристрої недостатньо місця.\n" +"Для виконання цієї дії вам доведеться звільнити на диску місце." -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." -msgstr "Je vyžadováno další médium pro dokončení transakce." +msgstr "Для завершення дії потрібен додатковий носій." -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" +"Вам не вдалося пройти розпізнавання.\n" +"Будь ласка, перевірте паролі та параметри облікового запису." -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" +"Не вдалося знайти вказане оновлення.\n" +"Можливо його вже було встановлено або системі не вдалося знайти його на " +"віддаленому сервері." + +#: libkpackagekit/KpkStrings.cpp:586 +msgid "The package could not be installed from untrusted origin." +msgstr "Пакунок не вдалося встановити з ненадійного джерела." + +#: libkpackagekit/KpkStrings.cpp:588 +msgid "The package could not be updated from untrusted origin." +msgstr "Пакунок не вдалося оновити з ненадійного джерела." -#: libkpackagekit/KpkStrings.cpp:547 -#, fuzzy -#| msgid "The package could not be found in any software source" -#| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." -msgstr "Balíček nebyl nalezen v žádném zdroji software." - -#: libkpackagekit/KpkStrings.cpp:549 -#, fuzzy -#| msgid "The package could not be found in any software source" -#| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." -msgstr "Balíček nebyl nalezen v žádném zdroji software." - -#: libkpackagekit/KpkStrings.cpp:551 -#, fuzzy -#| msgid "The file could not be found in any packages" -#| msgid_plural "The files could not be found in any packages" +#: libkpackagekit/KpkStrings.cpp:590 msgid "The file list is not available for this package." -msgstr "Zadaný soubor nebyl nalezen v žádném balíčku" +msgstr "Для цього пакунка список файлів недоступний." -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" +"Не вдалося отримати відомості щодо пакунків, для яких потрібен цей пакунок." -#: libkpackagekit/KpkStrings.cpp:555 -#, fuzzy -#| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." -msgstr "Zadaný soubor nebyl nalezen" - -#: libkpackagekit/KpkStrings.cpp:557 -#, fuzzy -#| msgid "" -#| "A package dependency could not be found.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:594 +msgid "The specified software origin could not be disabled." +msgstr "Вказане сховище програмного забезпечення не можна вимкнути." + +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -"Závislost balíčku nebyla nalezena.\n" -"Více informací je dostupné v detailním hlášení." +"Не вдалося виконати звантаження у автоматичному режимі, звантаження слід " +"виконати вручну.\n" +"Детальнішу інформацію розміщено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:560 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -"Instalace lokálního souboru selhala.\n" -"Více informací je dostupných v podrobném hlášení." +"Один з позначених вами пакунків не вдалося належним чином налаштувати.\n" +"Детальнішу інформацію наведено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:563 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -"Instalace lokálního souboru selhala.\n" -"Více informací je dostupných v podrobném hlášení." +"Один з позначених вами пакунків не вдалося належним чином зібрати.\n" +"Детальнішу інформацію наведено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:566 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -"Instalace lokálního souboru selhala.\n" -"Více informací je dostupných v podrobném hlášení." +"Один з позначених вами пакунків не вдалося належним чином встановити.\n" +"Детальнішу інформацію наведено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:569 -#, fuzzy -#| msgid "" -#| "Installing the local file failed.\n" -#| "More information is available in the detailed report." +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -"Instalace lokálního souboru selhala.\n" -"Více informací je dostupných v podrobném hlášení." +"Один з позначених вами пакунків не вдалося належним чином вилучити.\n" +"Детальнішу інформацію наведено у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." msgstr "" -"Neznámá chyba, prosím nahlaste problém.\n" -"Více informací je k nalezení v podrobném hlášení." +"Невідома помилка, будь ласка, повідомте про ваду.\n" +"Докладнішу інформацію можна знайти у докладному звіті." -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" -msgstr "Zpřístupnění" +msgstr "Доступність" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" -msgstr "Příslušenství" +msgstr "Інструменти" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" -msgstr "Výuka" +msgstr "Освіта" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" -msgstr "Hry" +msgstr "Ігри" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" -msgstr "Grafika" +msgstr "Графіка" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" -msgstr "Internet" +msgstr "Інтернет" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" -msgstr "Kancelář" +msgstr "Офіс" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" -msgstr "Jiné" +msgstr "Інше" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" -msgstr "Vývoj" +msgstr "Розробка" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" -msgstr "Multimédia" +msgstr "Мультимедіа" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" -msgstr "Systém" +msgstr "Система" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" -msgstr "GNOME desktop" +msgstr "Стільниця GNOME" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" -msgstr "KDE desktop" +msgstr "Стільниця KDE" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" -msgstr "XFCE desktop" +msgstr "Стільниця XFCE" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" -msgstr "Jiné desktopy" +msgstr "Інші стільниці" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" -msgstr "Publikování" +msgstr "Видавнича справа" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" -msgstr "Servery" +msgstr "Сервери" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" -msgstr "Písma" +msgstr "Шрифти" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" -msgstr "Nástroje správce" +msgstr "Адміністрування" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" -msgstr "Zastaralé" +msgstr "Програми для сумісності" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" -msgstr "Lokalizace" +msgstr "Локалізація" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" -msgstr "Virtualizace" +msgstr "Віртуалізація" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" -msgstr "Bezpečnost" +msgstr "Безпека" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" -msgstr "Správa napájení" +msgstr "Керування живленням" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" -msgstr "Komunikace" +msgstr "Обмін даними" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" -msgstr "Síť" +msgstr "Мережа" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" -msgstr "Mapy" +msgstr "Карти" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" -msgstr "Zdroje software" +msgstr "Джерела програм" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" -msgstr "Věda" +msgstr "Наука" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" -msgstr "Dokumentace" +msgstr "Документація" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" -msgstr "Elektronika" +msgstr "Електроніка" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" -msgstr "Kolekce balíčků" +msgstr "Збірки пакунків" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" -msgstr "Dodavatel" +msgstr "Постачальник" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" -msgstr "Nejnovější balíčky" +msgstr "Найновіші пакунки" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" -msgstr "Neznámá skupina" +msgstr "Невідома група" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" -msgstr "Jednoduchá aktualizace" +msgstr "Звичайнісіньке оновлення" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" -msgstr "Normální aktualizace" +msgstr "Звичайне оновлення" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" -msgstr "Důležitá aktualizace" +msgstr "Важливе оновлення" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" -msgstr "Bezpečnostní aktualizace" +msgstr "Оновлення безпеки" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" -msgstr "Opravná aktualizace" +msgstr "Оновлення з виправленнями вад" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" -msgstr "Vylepšující aktualizace" +msgstr "Оновлення з покращеннями" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" -msgstr "Blokovaná aktualizace" +msgstr "Заблоковане оновлення" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" -msgstr "Nainstalované" +msgstr "Встановлене" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" -msgstr "Dostupné" +msgstr "Наявне" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" -msgstr "Neznámá aktualizace" +msgstr "Невідоме оновлення" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" -msgstr[0] "1 jednoduchá aktualizace" -msgstr[1] "%1 jednoduché aktualizace" -msgstr[2] "%1 jednoduchých aktualizací" +msgstr[0] "%1 незначне оновлення" +msgstr[1] "%1 незначних оновлення" +msgstr[2] "%1 незначних оновлень" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" msgid_plural "%1 updates" -msgstr[0] "1 aktualizace" -msgstr[1] "%1 aktualizace" -msgstr[2] "%1 aktualizací" +msgstr[0] "%1 оновлення" +msgstr[1] "%1 оновлення" +msgstr[2] "%1 оновлень" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" -msgstr[0] "1 důležitá aktualizace" -msgstr[1] "%1 důležité aktualizace" -msgstr[2] "%1 důležitých aktualizací" +msgstr[0] "%1 важливе оновлення" +msgstr[1] "%1 важливих оновлення" +msgstr[2] "%1 важливих оновлень" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" -msgstr[0] "1 bezpečnostní aktualizace" -msgstr[1] "%1 bezpečnostní aktualizace" -msgstr[2] "%1 bezpečnostních aktualizací" +msgstr[0] "%1 оновлення безпеки" +msgstr[1] "%1 оновлення безпеки" +msgstr[2] "%1 оновлень безпеки" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" -msgstr[0] "1 opravná aktualizace" -msgstr[1] "%1 opravné aktualizace" -msgstr[2] "%1 opravných aktualizací" +msgstr[0] "%1 оновлення з виправленням вад" +msgstr[1] "%1 оновлення з виправленням вад" +msgstr[2] "%1 оновлень з виправленням вад" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" -msgstr[0] "1 vylepšující aktualizace" -msgstr[1] "%1 vylepšující aktualizace" -msgstr[2] "%1 vylepšujících aktualizací" +msgstr[0] "%1 оновлення з удосконалення" +msgstr[1] "%1 оновлення з удосконалення" +msgstr[2] "%1 оновлень з удосконалення" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" -msgstr[0] "1 blokovaná aktualizace" -msgstr[1] "%1 blokované aktualizace" -msgstr[2] "%1 blokovaných aktualizací" +msgstr[0] "%1 заблоковане оновлення" +msgstr[1] "%1 заблокованих оновлення" +msgstr[2] "%1 заблокованих оновлень" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" -msgstr[0] "1 nainstalovaný balíček" -msgstr[1] "%1 nainstalované balíčky" -msgstr[2] "%1 nainstalovaných balíčků" +msgstr[0] "%1 встановлений пакунок" +msgstr[1] "%1 встановлені пакунки" +msgstr[2] "%1 встановлених пакунків" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" -msgstr[0] "1 dostupný balíček" -msgstr[1] "%1 dostupné balíčky" -msgstr[2] "%1 dostupných balíčků" +msgstr[0] "%1 доступний пакунок" +msgstr[1] "%1 доступні пакунки" +msgstr[2] "%1 доступних пакунків" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" -msgstr[0] "1 neznámá aktualizace" -msgstr[1] "%1 neznámé aktualizace" -msgstr[2] "%1 neznámých aktualizací" +msgstr[0] "%1 невідоме оновлення" +msgstr[1] "%1 невідомих оновлення" +msgstr[2] "%1 невідомих оновлень" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" -msgstr[0] "Vybrána 1 jednoduchá aktualizace" -msgstr[1] "Vybrány %1 jednoduché aktualizace" -msgstr[2] "Vybráno %1 jednoduchých aktualizací" +msgstr[0] "Обрано %1 незначне оновлення" +msgstr[1] "Обрано %1 незначних оновлення" +msgstr[2] "Обрано %1 незначних оновлень" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" msgid_plural "%1 updates selected" -msgstr[0] "Vybrána 1 aktualizace" -msgstr[1] "Vybrány %1 aktualizace" -msgstr[2] "Vybráno %1 aktualizací" +msgstr[0] "Обрано %1 оновлення" +msgstr[1] "Обрано %1 оновлення" +msgstr[2] "Обрано %1 оновлень" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" -msgstr[0] "Vybrána 1 důležitá aktualizace" -msgstr[1] "Vybrány %1 důležité aktualizace" -msgstr[2] "Vybráno %1 důležitých aktualizací" +msgstr[0] "Обрано %1 важливе оновлення" +msgstr[1] "Обрано %1 важливих оновлення" +msgstr[2] "Обрано %1 важливих оновлень" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" -msgstr[0] "Vybrána 1 bezpečnostní aktualizace" -msgstr[1] "Vybrány %1 bezpečnostní aktualizace" -msgstr[2] "Vybráno %1 bezpečnostních aktualizací" +msgstr[0] "Обрано %1 оновлення безпеки" +msgstr[1] "Обрано %1 оновлення безпеки" +msgstr[2] "Обрано %1 оновлень безпеки" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" -msgstr[0] "Vybrána 1 opravná aktualizace" -msgstr[1] "Vybrány %1 opravné aktualizace" -msgstr[2] "Vybráno %1 opravných aktualizací" +msgstr[0] "Обрано %1 оновлення з виправленням вад" +msgstr[1] "Обрано %1 оновлення з виправленням вад" +msgstr[2] "Обрано %1 оновлень з виправленням вад" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" -msgstr[0] "Vybrána 1 vylepšující aktualizace" -msgstr[1] "Vybrány %1 vylepšující aktualizace" -msgstr[2] "Vybráno %1 vylepšujících aktualizací" +msgstr[0] "Обрано %1 оновлення з удосконалення" +msgstr[1] "Обрано %1 оновлення з удосконалення" +msgstr[2] "Обрано %1 оновлень з удосконалення" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" -msgstr[0] "1 nainstalovaný balíček vybrán k odstranění" -msgstr[1] "%1 nainstalované balíčky vybrány k odstranění" -msgstr[2] "%1 nainstalovaných balíčků vybráno k odstranění" +msgstr[0] "Для вилучення обрано %1 встановлений пакунок" +msgstr[1] "Для вилучення обрано %1 встановлених пакунки" +msgstr[2] "Для вилучення обрано %1 встановлених пакунків" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" -msgstr[0] "1 dostupný balíček vybrán k instalaci" -msgstr[1] "%1 dostupné balíčky vybrány k instalaci" -msgstr[2] "%1 dostupných balíčků vybráno k instalaci" +msgstr[0] "Для встановлення обрано %1 пакунок" +msgstr[1] "Для встановлення обрано %1 пакунки" +msgstr[2] "Для встановлення обрано %1 пакунків" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" -msgstr[0] "%1 jednoduchá aktualizace" -msgstr[1] "%1 jednoduché aktualizace, vybráno: %2" -msgstr[2] "%1 jednoduchých aktualizací, vybráno: %2" +msgstr[0] "%1 незначне оновлення, %2 позначено" +msgstr[1] "Обрано %1 незначних оновлення, %2 позначено" +msgstr[2] "Обрано %1 незначних оновлень, %2 позначено" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" msgid_plural "%1 updates, %2 selected" -msgstr[0] "%1 aktualizace" -msgstr[1] "%1 aktualizace, vybráno: %2" -msgstr[2] "%1 aktualizací, vybráno: %2" +msgstr[0] "%1 оновлення, %2 позначено" +msgstr[1] "Обрано %1 оновлення, %2 позначено" +msgstr[2] "Обрано %1 оновлень, %2 позначено" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" -msgstr[0] "%1 důležitá aktualizace" -msgstr[1] "%1 důležité aktualizace, vybráno: %2" -msgstr[2] "%1 důležitých aktualizací, vybráno: %2" +msgstr[0] "%1 важливе оновлення, %2 позначене" +msgstr[1] "%1 важливих оновлення, %2 позначених" +msgstr[2] "%1 важливих оновлень, %2 позначених" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" -msgstr[0] "%1 bezpečnostní aktualizace" -msgstr[1] "%1 bezpečnostní aktualizace, vybráno: %2" -msgstr[2] "%1 bezpečnostních aktualizací, vybráno: %2" +msgstr[0] "%1 оновлення безпеки, %2 позначене" +msgstr[1] "%1 оновлення безпеки, %2 позначених" +msgstr[2] "%1 оновлень безпеки, %2 позначених" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" -msgstr[0] "%1 opravná aktualizace" -msgstr[1] "%1 opravné aktualizace, vybráno: %2" -msgstr[2] "%1 opravných aktualizací, vybráno: %2" +msgstr[0] "%1 оновлення з виправленням вад, %2 позначене" +msgstr[1] "%1 оновлення з виправленням вад, %2 позначених" +msgstr[2] "%1 оновлень з виправленням вад, %2 позначених" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" -msgstr[0] "%1 vylepšující aktualizace" -msgstr[1] "%1 vylepšující aktualizace, vybráno: %2" -msgstr[2] "%1 vylepšujících aktualizací, vybráno: %2" +msgstr[0] "%1 оновлення з удосконалення, %2 позначене" +msgstr[1] "%1 оновлення з удосконалення, %2 позначених" +msgstr[2] "%1 оновлень з удосконалення, %2 позначених" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" -msgstr[0] "%1 blokovaná aktualizace" -msgstr[1] "%1 blokované aktualizace" -msgstr[2] "%1 blokovaných aktualizací" +msgstr[0] "%1 заблоковане оновлення" +msgstr[1] "%1 заблокованих оновлення" +msgstr[2] "%1 заблокованих оновлень" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" -msgstr[0] "%1 nainstalovaný balíček" -msgstr[1] "%1 nainstalované balíčky, vybráno k odstranění: %2" -msgstr[2] "%1 nainstalovaných balíčků, vybráno k odstranění: %2" +msgstr[0] "%1 встановлений пакунок, %2 позначено для вилучення" +msgstr[1] "%1 встановлених пакунки, %2 позначено для вилучення" +msgstr[2] "%1 встановлених пакунків, %2 позначено для вилучення" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" -msgstr[0] "%1 dostupný balíček" -msgstr[1] "%1 dostupné balíčky, vybráno k instalaci: %2" -msgstr[2] "%1 dostupných balíčků, vybráno k instalaci: %2" +msgstr[0] "%1 доступний пакунок, %2 позначено для встановлення" +msgstr[1] "%1 доступних пакунки, %2 позначено для встановлення" +msgstr[2] "%1 доступних пакунків, %2 позначено для встановлення" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" -msgstr[0] "1 neznámá aktualizace" -msgstr[1] "%1 neznámé aktualizace" -msgstr[2] "%1 neznámých aktualizací" +msgstr[0] "%1 невідоме оновлення" +msgstr[1] "%1 невідомих оновлення" +msgstr[2] "%1 невідомих оновлень" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" -msgstr "Pro tuto aktualizaci není nutný restart" +msgstr "Потреби у перезапуску немає" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" -msgstr "Po této aktualizace bude potřeba restartovat tuto aplikaci" +msgstr "Вам слід перезапустити цю програму" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" -msgstr "Po této aktualizace bude potřeba Vaše odhlášení a opětovné přihlášení" +msgstr "Вам слід вийти і знову увійти до вашого облікового запису" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" -msgstr "Bude vyžadován restart systému" +msgstr "Слід перезавантажити систему" -#: libkpackagekit/KpkStrings.cpp:786 -#, fuzzy -#| msgid "You will be required to log out and back in" +#: libkpackagekit/KpkStrings.cpp:825 msgid "You will be required to log out and back in due to a security update." -msgstr "Po této aktualizace bude potřeba Vaše odhlášení a opětovné přihlášení" +msgstr "" +"Для належного встановлення оновлення безпеки вам слід буде вийти і знову " +"увійти до системи." -#: libkpackagekit/KpkStrings.cpp:788 -#, fuzzy -#| msgid "A restart will be required" +#: libkpackagekit/KpkStrings.cpp:827 msgid "A restart will be required due to a security update." -msgstr "Bude vyžadován restart systému" +msgstr "" +"Для належного встановлення оновлення безпеки вам слід перезавантажити " +"систему." -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" -msgstr "Není vyžadován restart" +msgstr "Перезавантаження системи не знадобиться" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" -msgstr "Je vyžadován restart systému" +msgstr "Потрібне перезавантаження" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" -msgstr "Je třeba se odhlásit a znovu přihlásit" +msgstr "Вам слід вийти і знову увійти до вашого облікового запису" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" -msgstr "Je třeba restartovat aplikaci" +msgstr "Вам слід перезапустити програму" -#: libkpackagekit/KpkStrings.cpp:809 -#, fuzzy -#| msgid "You need to log out and log back in" +#: libkpackagekit/KpkStrings.cpp:848 msgid "You need to log out and log back in to remain secure." -msgstr "Je třeba se odhlásit a znovu přihlásit" +msgstr "" +"Щоб забезпечити безпеку системи, вам слід вийти і знову увійти до вашого " +"облікового запису." -#: libkpackagekit/KpkStrings.cpp:811 -#, fuzzy -#| msgid "A restart is required" +#: libkpackagekit/KpkStrings.cpp:850 msgid "A restart is required to remain secure." -msgstr "Je vyžadován restart systému" +msgstr "Щоб забезпечити безпеку системи, потрібне перезавантаження." -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" -msgstr "Stabilní" +msgstr "Стабільна версія" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" -msgstr "Nestabilní" +msgstr "Нестабільна версія" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" -msgstr "Testovací" +msgstr "Перевірка" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." -msgstr "Prosím vložte CD označené '%1' a stiskněte Pokračovat." +msgstr "" +"Будь ласка, вставте компакт-диск з міткою «%1» і натисніть кнопку «Продовжити»." -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." -msgstr "Prosím vložte DVD označené '%1' a stiskněte Pokračovat." +msgstr "Будь ласка, вставте DVD з міткою «%1» і натисніть кнопку «Продовжити»." -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." -msgstr "Prosím vložte disk označený '%1' a stiskněte Pokračovat." +msgstr "Будь ласка, вставте диск з міткою «%1» і натисніть кнопку «Продовжити»." -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." -msgstr "Prosím vložte médium označené '%1' a stiskněte Pokračovat." +msgstr "Будь ласка, вставте носій з міткою «%1» і натисніть кнопку «Продовжити»." -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" -msgstr "Zrcadlo je asi poškozené" +msgstr "Ймовірно, дзеркальну копію пошкоджено" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" -msgstr "Spojení bylo odmítnuto" +msgstr "З’єднання було заборонено" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" -msgstr "Parametr byl neplatný" +msgstr "Вказано некоректний параметр" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" -msgstr "Priorita byla neplatná" +msgstr "Вказано некоректний пріоритет" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" -msgstr "Varování backendu" +msgstr "Попередження сервера" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" -msgstr "Varování démona" +msgstr "Попередження фонової служби" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" -msgstr "Sestavuje se cache seznamu balíčků" +msgstr "Перебудова кешу пакунків" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" -msgstr "Byl nainstalován nedůvěryhodný balíček" +msgstr "Було встановлено несертифікований пакунок" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" -msgstr "Existuje novější balíček" +msgstr "Існує новіший пакунок" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" -msgstr "Nelze najít balíček" +msgstr "Не вдалося знайти пакунок" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" -msgstr "Konfigurační soubory byly změněny" +msgstr "Файли налаштування було змінено" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" -msgstr "Balíček je již nainstalován" +msgstr "Пакунок вже встановлено" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" -msgstr "" +msgstr "Автоматичне спорожнення проігноровано" -#: libkpackagekit/KpkStrings.cpp:883 -#, fuzzy -#| msgid "The package download failed" +#: libkpackagekit/KpkStrings.cpp:922 msgid "Software source download failed" -msgstr "Stažení balíčku bylo neůspěšné" +msgstr "Звантаження з джерела пакунків зазнало невдачі" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." -msgstr "Nemáte dostatečná oprávnění k provedení této akce." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." +msgstr "У вас недостатньо прав для виконання цієї дії." -#: libkpackagekit/KpkStrings.cpp:898 -#, fuzzy -#| msgid "Could not remove a protected system package" +#: libkpackagekit/KpkStrings.cpp:937 msgid "Could not get a transaction id from packagekitd." -msgstr "Nelze odstranit chráněný systémový balíček" +msgstr "Не вдалося отримати ідентифікатор операції від packagekitd." -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." -msgstr "" +msgstr "Не вдалося з’єднатися з операцією з цим ідентифікатором." -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." -msgstr "" +msgstr "Невідома дія." -#: libkpackagekit/KpkStrings.cpp:904 -#, fuzzy -#| msgid "The package signature could not be verified." +#: libkpackagekit/KpkStrings.cpp:943 msgid "The packagekitd service could not be started." -msgstr "Podpis balíčku nemohl být ověřen." +msgstr "Не вдалося запустити службу packagekitd." -#: libkpackagekit/KpkStrings.cpp:906 -#, fuzzy -#| msgid "The priority was invalid" +#: libkpackagekit/KpkStrings.cpp:945 msgid "The query is not valid." -msgstr "Priorita byla neplatná" +msgstr "Цей запит не є коректним." -#: libkpackagekit/KpkStrings.cpp:908 -#, fuzzy -#| msgid "The file was not installed" -#| msgid_plural "The files were not installed" +#: libkpackagekit/KpkStrings.cpp:947 msgid "The file is not valid." -msgstr "Soubor nebyl nainstalován" +msgstr "Цей файл не є коректним." -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." -msgstr "" +msgstr "Ця функціональна можливість ще не підтримується." -#: libkpackagekit/KpkStrings.cpp:912 -#, fuzzy -#| msgid "Could not find package" +#: libkpackagekit/KpkStrings.cpp:951 msgid "Could not talk to packagekitd." -msgstr "Nelze najít balíček" +msgstr "Не вдалося обмінятися даними з packagekitd." -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 -#, fuzzy -#| msgid "Unknown error" +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 msgid "An unknown error happened." -msgstr "Neznámá chyba" +msgstr "Сталася невідома помилка." -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" -msgstr "Ignorovat" +msgstr "Ігнорувати" + +#: SmartIcon/PkInstallProvideFiles.cpp:49 +#, kde-format +msgid "" +"The following file is required:
                                                                  • %2
                                                                  Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                                  • %2
                                                                  Do you want to search " +"for these now?" +msgstr[0] "" +"Потрібен файл:
                                                                  • %2
                                                                  Бажаєте виконати пошук цього файла?" +msgstr[1] "" +"Потрібні файли:
                                                                  • %2
                                                                  Бажаєте виконати пошук цих файлів?" +msgstr[2] "" +"Потрібні файли:
                                                                  • %2
                                                                  Бажаєте виконати пошук цих файлів?" + +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "Програма бажає встановити файл" +msgstr[1] "Програма бажає встановити файли" +msgstr[2] "Програма бажає встановити файли" + +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, kde-format +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%2 бажає встановити файл" +msgstr[1] "%2 бажає встановити файли" +msgstr[2] "%2 бажає встановити файли" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "Встановити" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "Не вдалося почати дію з пошуку файла" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "не дано згоди на пошук" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "Пакунок з файлом %1 вже встановлено" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "Не вдалося встановити файл" +msgstr[1] "Не вдалося встановити файли" +msgstr[2] "Не вдалося встановити файли" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "Буде встановлено такий пакунок" +msgstr[1] "Буде встановлено такі пакунки" +msgstr[2] "Буде встановлено такі пакунки" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "Файл не вдалося знайти у жодному з пакунків" +msgstr[1] "Файли не вдалося знайти у жодному з пакунків" +msgstr[2] "Файли не вдалося знайти у жодному з пакунків" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "Не вдалося знайти пакунок" + +#: SmartIcon/KpkUpdateIcon.cpp:201 #, kde-format msgid "You have %1" -msgstr "Máte %1" +msgstr "У вас є %1" -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/KpkUpdateIcon.cpp:210 #, kde-format msgid "
                                                                  And another update" msgid_plural "
                                                                  And %1 more updates" -msgstr[0] "
                                                                  A další 1 aktualizace" -msgstr[1] "
                                                                  A další %1 aktualizace" -msgstr[2] "
                                                                  A dalších %1 aktualizací" - -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "Projít a aktualizovat" +msgstr[0] "
                                                                  І ще %1 оновлення" +msgstr[1] "
                                                                  І ще %1 оновлення" +msgstr[2] "
                                                                  І ще %1 оновлень" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "Ne nyní" +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "Перегляд і оновлення" -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" -msgstr "Znovu se nedotazovat" +msgstr "Більше не питати" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." -msgstr "Aktualizace jsou automaticky instalovány." +msgstr "Оновлення було автоматично встановлено." -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." -msgstr "Bezpečnostní aktualizace jsou automaticky instalovány." +msgstr "Оновлення безпеки було успішно встановлено." -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." -msgstr "Aktualizace systému byla úspěšná." +msgstr "Оновлення системи успішно завершено." -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." -msgstr "Aktualizace software selhala." +msgstr "Спроба оновлення програмного забезпечення завершилася невдало." + +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "Потрібен такий файл:" +msgstr[1] "Потрібні такі файли:" +msgstr[2] "Потрібні такі файли:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "Бажаєте знайти його зараз?" +msgstr[1] "Бажаєте знайти їх зараз?" +msgstr[2] "Бажаєте знайти їх зараз?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 бажає встановити файл" +msgstr[1] "%1 бажає встановити файли" +msgstr[2] "%1 бажає встановити файли" #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" -msgstr "Spustit upgrade" +msgstr "Почати оновлення" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " -msgstr "Aktualizace distribuce dokončena." +msgstr "Оновлення дистрибутива завершено." + +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "Не вдалося почати дію з визначення пакунків" + +#: SmartIcon/PkIsInstalled.cpp:76 +msgid "User canceled the transaction" +msgstr "Операцій скасовано користувачем" + +#: SmartIcon/PkIsInstalled.cpp:78 +msgid "An unknown error happened" +msgstr "Сталася невідома помилка" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, kde-format +msgid "" +"An additional package is required:
                                                                  • %2
                                                                  Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                                  • %2
                                                                  Do you want to search " +"for and install these packages now?" +msgstr[0] "" +"Потрібен додатковий пакунок:
                                                                  • %2
                                                                  Бажаєте знайти і встановити " +"цей пакунок зараз?" +msgstr[1] "" +"Потрібні додаткові пакунки:
                                                                  • %2
                                                                  Бажаєте знайти і встановити " +"цей пакунок зараз?" +msgstr[2] "" +"Потрібні додаткові пакунки:
                                                                  • %2
                                                                  Бажаєте знайти і встановити " +"цей пакунок зараз?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "Програма бажає встановити пакунок" +msgstr[1] "Програма бажає встановити пакунки" +msgstr[2] "Програма бажає встановити пакунки" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, kde-format +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%2 бажає встановити пакунок" +msgstr[1] "%2 бажає встановити пакунки" +msgstr[2] "%2 бажає встановити пакунки" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "Встановити" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, kde-format +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "Пакунок %2 вже встановлено" +msgstr[1] "Пакунки %2 вже встановлено" +msgstr[2] "Пакунки %2 вже встановлено" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +msgid "Failed to install packages" +msgstr "Не вдалося встановити пакунки" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "Виконання операції не завершилося успішно" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "" +"Пакунок не вдалося знайти у жодному з джерел програмного забезпечення" +msgstr[1] "" +"Пакунки не вдалося знайти у жодному з джерел програмного забезпечення" +msgstr[2] "" +"Пакунки не вдалося знайти у жодному з джерел програмного забезпечення" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "Не вдалося знайти %1" #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" @@ -2592,7 +2693,7 @@ #: SmartIcon/main.cpp:36 msgid "KPackageKit Tray Icon" -msgstr "Systémová ikona KPackageKit" +msgstr "Піктограма лотка KPackageKit" #: SmartIcon/main.cpp:40 KPackageKit/main.cpp:40 msgid "Daniel Nicoletti" @@ -2608,900 +2709,1100 @@ #: SmartIcon/main.cpp:43 KPackageKit/main.cpp:41 msgid "libpackagekit-qt and other stuff" -msgstr "libpackagekit-qt a další věci" - -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 -msgid "Transactions" -msgstr "Přenosy" +msgstr "libpackagekit-qt та інші компоненти" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"Для перегляду цього документа у належному форматі потрібен додатковий шрифт. " +"Бажаєте виконати пошук відповідного пакунка?" +msgstr[1] "" +"Для перегляду цього документа у належному форматі потрібні додаткові шрифти. " +"Бажаєте виконати пошук відповідного пакунка?" +msgstr[2] "" +"Для перегляду цього документа у належному форматі потрібні додаткові шрифти. " +"Бажаєте виконати пошук відповідного пакунка?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "Програма бажає встановити шрифт" +msgstr[1] "Програма бажає встановити шрифти" +msgstr[2] "Програма бажає встановити шрифти" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, kde-format +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%2 бажає встановити шрифт" +msgstr[1] "%2 бажає встановити шрифти" +msgstr[2] "%2 бажає встановити шрифти" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +msgctxt "Search for packages" +msgid "Search" +msgstr "Пошук" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "Не вдалося знайти вміст" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "Програма, здатна відкривати файли цього типу" +msgstr[1] "Програми, здатні відкривати файли цього типу" +msgstr[2] "Програми, здатні відкривати файли цього типу" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +msgid "No new fonts can be found for this document" +msgstr "Нових шрифтів для цього документа не знайдено" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +msgid "Failed to find font" +msgstr "Не вдалося знайти шрифт" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "Елемент не підтримується сервером вашої системи або не є файлом. " +msgstr[1] "Елементи не підтримуються сервером вашої системи або не є файлами." +msgstr[2] "Елементи не підтримуються сервером вашої системи або не є файлами." + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "Неможливо встановити" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "Встановити" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "Бажаєте встановити цей файл?" +msgstr[1] "Бажаєте встановити ці файли?" +msgstr[2] "Бажаєте встановити ці файли?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "Встановити?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "Файл не було встановлено" +msgstr[1] "Файли не було встановлено" +msgstr[2] "Файли не було встановлено" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "Файл було успішно встановлено" +msgstr[1] "Файли було успішно встановлено" +msgstr[2] "Файли було успішно встановлено" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "Вибачте, сталася помилка." + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                                  • %2
                                                                  Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                                  • %2
                                                                  Do you want to " +"search for these now?" +msgstr[0] "" +"Потрібен додаток:
                                                                  • %2
                                                                  Бажаєте виконати пошук цього файла?" +msgstr[1] "" +"Потрібні додатки:
                                                                  • %2
                                                                  Бажаєте виконати пошук цих файлів?" +msgstr[2] "" +"Потрібні додатки:
                                                                  • %2
                                                                  Бажаєте виконати пошук цих файлів?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "Для декодування цього файла програмі потрібен додаток" +msgstr[1] "Для декодування цього файла програмі потрібні додатки" +msgstr[2] "Для декодування цього файла програмі потрібні додатки" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "Для кодування цього файла програмі потрібен додаток" +msgstr[1] "Для кодування цього файла програмі потрібні додатки" +msgstr[2] "Для кодування цього файла програмі потрібні додатки" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "Для виконання цієї операції програмі потрібен додаток" +msgstr[1] "Для виконання цієї операції програмі потрібні додатки" +msgstr[2] "Для виконання цієї операції програмі потрібні додатки" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "Для декодування цього файла %2 потрібен додаток" +msgstr[1] "Для декодування цього файла %2 потрібні додатки" +msgstr[2] "Для декодування цього файла %2 потрібні додатки" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "Для кодування цього файла %2 потрібен додаток" +msgstr[1] "Для кодування цього файла %2 потрібні додатки" +msgstr[2] "Для кодування цього файла %2 потрібні додатки" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "Для виконання цієї операції %2 потрібен додаток" +msgstr[1] "Для виконання цієї операції %2 потрібні додатки" +msgstr[2] "Для виконання цієї операції %2 потрібні додатки" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "Бажаєте встановити цей пакунок зараз?" +msgstr[1] "Бажаєте встановити ці пакунки зараз?" +msgstr[2] "Бажаєте встановити ці пакунки зараз?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +msgid "Could not find plugin in any configured software source" +msgstr "" +"Не вдалося знайти додаток у жодному з вказаних вами джерел програмного " +"забезпечення" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +msgid "Failed to search for plugin" +msgstr "Не вдалося виконати пошук додатка" + +#: SmartIcon/PkSearchFile.cpp:91 +msgid "The file name could not be found in any software source" +msgstr "" +"Файл з відповідною назвою не вдалося знайти у жодному з джерел програмного " +"забезпечення" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 +msgid "Transactions" +msgstr "Операції" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" -msgstr "Obnovit seznam balíčků" +msgstr "Освіжити список пакунків" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" -msgstr "Zobrazit zprávy" +msgstr "Показати повідомлення" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" -msgstr "Skrýt tuto ikonu" +msgstr "Сховати цю піктограму" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 #, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" -msgstr[0] "Balíček: %1" -msgstr[1] "Balíčky: %1" -msgstr[2] "Balíčků: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" +msgstr[0] "Пакунок: %2" +msgstr[1] "Пакунки: %2" +msgstr[2] "Пакунки: %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%1 повідомлення від керування пакунками" +msgstr[1] "%1 повідомлення від керування пакунками" +msgstr[2] "%1 повідомлень від керування пакунками" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" -msgstr "Aktualizace systému dokončena" +msgstr "Оновлення системи завершено" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" -msgstr "Restartovat" +msgstr "Перезапустити" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "Не зараз" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" -msgstr "Odhlásit se" +msgstr "Вийти" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" -msgstr "Zprávy správce balíčků" +msgstr "Повідомлення керування пакунками" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" -msgstr "Zpráva" +msgstr "Повідомлення" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "Nastavení KPackageKit" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "Програма бажає вилучити файл" +msgstr[1] "Програма бажає вилучити файли" +msgstr[2] "Програма бажає вилучити файли" + +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, kde-format +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%2 бажає вилучити файл" +msgstr[1] "%2 бажає вилучити файли" +msgstr[2] "%2 бажає вилучити файли" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "Každou hodinu" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "Буде вилучено такий файл:" +msgstr[1] "Буде вилучено такі файли:" +msgstr[2] "Буде вилучено такі файли:" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "Každý den" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "Бажаєте знайти пакунок, що містить цей файл і вилучити його зараз?" +msgstr[1] "Бажаєте знайти пакунки, що містять ці файли і вилучити їх зараз?" +msgstr[2] "Бажаєте знайти пакунки, що містять ці файли і вилучити їх зараз?" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "Každý týden" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "Пошук" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "Každý měsíc" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "Буде вилучено такий пакунок" +msgstr[1] "Буде вилучено такі пакунки" +msgstr[2] "Буде вилучено такі пакунки" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "Nikdy" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "Файл не вдалося знайти у жодному з встановлених пакунків" +msgstr[1] "Файли не вдалося знайти у жодному з встановлених пакунків" +msgstr[2] "Файли не вдалося знайти у жодному з встановлених пакунків" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "Pouze bezpečnostní" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                                                                  • %1
                                                                  • Do you want to search for a program to open this file type now?" +msgstr "" +"Для відкриття файлів цього типу потрібна додаткова програма:
                                                                    • %1
                                                                    • Бажаєте знайти програму, призначену для відкриття файлів цього типу, " +"зараз?" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "Všechny aktualizace" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "Для програми потрібен новий тип MIME" +msgstr[1] "Для програми потрібні нові типи MIME" +msgstr[2] "Для програми потрібні нові типи MIME" + +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, kde-format +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "Для %2 потрібен новий тип MIME" +msgstr[1] "Для %2 потрібні нові типи MIME" +msgstr[2] "Для %2 потрібні нові типи MIME" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "Žádné" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "Шукати" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "Nemáte dostatečná oprávnění k provedení této akce." +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "Не вдалося знайти нових програм, здатних обробляти файли цього типу" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "Nastavení data původu selhalo" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "Невдала спроба знайти програми" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "Je vyžadován následující soubor:" -msgstr[1] "Jsou vyžadovány následující soubory:" -msgstr[2] "Jsou vyžadovány následující soubory:" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, kde-format +msgid "

                                                                      Do you want to install this catalog?

                                                                      • %2
                                                                      " +msgid_plural "" +"

                                                                      Do you want to install these catalogs?

                                                                      • %2
                                                                      " +msgstr[0] "

                                                                      Бажаєте встановити цей каталог?

                                                                      • %2
                                                                      " +msgstr[1] "

                                                                      Бажаєте встановити ці каталоги?

                                                                      • %2
                                                                      " +msgstr[2] "

                                                                      Бажаєте встановити ці каталоги?

                                                                      • %2
                                                                      " + +#: SmartIcon/PkInstallCatalogs.cpp:58 +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "Встановити каталог" +msgstr[1] "Встановити каталоги" +msgstr[2] "Встановити каталоги" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "Přejete si jej nyní vyhledat?" -msgstr[1] "Přejete si je nyní vyhledat?" -msgstr[2] "Přejete si je nyní vyhledat?" +#: SmartIcon/PkInstallCatalogs.cpp:62 +msgctxt "Parse the catalog search and install it" +msgid "Install" +msgstr "Встановити" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "Program se pokouší nainstalovat soubor" -msgstr[1] "Program se pokouší nainstalovat soubory" -msgstr[2] "Program se pokouší nainstalovat soubory" +#: SmartIcon/PkInstallCatalogs.cpp:99 +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "" +"Ваш сервер не підтримує жодного з потрібних для встановлення каталогу методів" + +#: SmartIcon/PkInstallCatalogs.cpp:100 +msgid "Not supported" +msgstr "Не підтримується" -#: KPackageKit/KpkInstallProvideFile.cpp:61 +#: SmartIcon/PkInstallCatalogs.cpp:144 #, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 chce nainstalovat soubor" -msgstr[1] "%1 chce nainstalovat soubory" -msgstr[2] "%1 chce nainstalovat soubory" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "Не вдалося відкрити каталог %2" +msgstr[1] "Не вдалося відкрити каталоги %2" +msgstr[2] "Не вдалося відкрити каталоги %2" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" -msgid "Install" -msgstr "Instalovat" +#: SmartIcon/PkInstallCatalogs.cpp:148 +msgid "Failed to open" +msgstr "Не вдалося відкрити" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "Selhalo zahájení transakce hledání souboru" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +msgid "No package was found to be installed" +msgstr "Не знайдено жодного пакунка для встановлення" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "Balíček %1 již poskytuje tento soubor" +#: SmartIcon/PkInstallCatalogs.cpp:206 +msgid "Failed to start setup transaction" +msgstr "Не вдалося почати дію з налаштування операції" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "Následující balíček bude nainstalován" -msgstr[1] "Následující balíčky budou nainstalovány" -msgstr[2] "Následující balíčky budou nainstalovány" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "Параметри KPackageKit" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "Zadaný soubor nebyl nalezen v žádném balíčku" -msgstr[1] "Zadané soubory nebyly nalezeny v žádném balíčku" -msgstr[2] "Zadané soubory nebyly nalezeny v žádném balíčku" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "Щогодини" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "Vyhledání balíčku selhalo" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "Щодня" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "Program se pokouší odstranit soubor" -msgstr[1] "Program se pokouší odstranit soubory" -msgstr[2] "Program se pokouší odstranit soubory" - -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 se pokouší odstranit soubor" -msgstr[1] "%1 se pokouší odstranit soubory" -msgstr[2] "%1 se pokouší odstranit soubory" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "Щотижня" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "Následující soubor bude odebrán:" -msgstr[1] "Následující soubory budou odebrány:" -msgstr[2] "Následující soubory budou odebrány:" +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "Щомісяця" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "Ніколи" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "Hledat" +#: Settings/KpkSettings.cpp:67 +msgid "Security only" +msgstr "Лише оновлення безпеки" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "Následující balíček bude odebrán" -msgstr[1] "Následující balíčky budou odebrány" -msgstr[2] "Následující balíčky budou odebrány" +#: Settings/KpkSettings.cpp:68 +msgid "All updates" +msgstr "Всі оновлення" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "Soubor nelze najít v žádném nainstalovaném balíčku" -msgstr[1] "Soubory nelze najít v žádném nainstalovaném balíčku" -msgstr[2] "Soubory nelze najít v žádném nainstalovaném balíčku" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "Жодних" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "Nelze najít %1" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "Не вдалося встановити дані походження" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" -msgstr "KPackageKit je nástroj pro správu software" +msgstr "KPackageKit — це інструмент для керування програмним забезпеченням" #: KPackageKit/main.cpp:46 msgid "Show updates" -msgstr "Zobrazit aktualizace" +msgstr "Показати оновлення" #: KPackageKit/main.cpp:47 msgid "Show settings" -msgstr "Zobrazit nastavení" +msgstr "Показати параметри" #: KPackageKit/main.cpp:48 msgid "Show backend details" -msgstr "Zobrazit detaily backendu" +msgstr "Показати відомості про сервер" #: KPackageKit/main.cpp:49 msgid "Mime type installer" -msgstr "Instalátor MIME typů" +msgstr "Інструмент встановлення пакунків за типами MIME" #: KPackageKit/main.cpp:50 msgid "Package name installer" -msgstr "Instalátor balíčků" +msgstr "Інструмент встановлення пакунків за назвами" #: KPackageKit/main.cpp:51 msgid "Single file installer" -msgstr "Instalátor jednotlivých souborů" +msgstr "Інструмент встановлення окремих файлів" #: KPackageKit/main.cpp:52 msgid "Single package remover" -msgstr "Odstranění jednoho balíčku" +msgstr "Інструмент вилучення окремих пакунків" #: KPackageKit/main.cpp:53 msgid "Package file to install" -msgstr "Soubor s balíčkem k instalaci" - -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "Tato položka není podporována Vaším backendem nebo to není soubor" -msgstr[1] "" -"Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" -msgstr[2] "" -"Tyto položky nejsou podporovány Vaším backendem nebo to nejsou soubory" - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "Nelze nainstalovat" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "Instalovat" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "Chcete nainstalovat tento soubor?" -msgstr[1] "Chcete nainstalovat tyto soubory?" -msgstr[2] "Chcete nainstalovat tyto soubory?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "Instalovat?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "Soubor nebyl nainstalován" -msgstr[1] "Soubory nebyly nainstalovány" -msgstr[2] "Soubory nebyly nainstalovány" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "Instalace souboru selhala" -msgstr[1] "Instalace souborů selhala" -msgstr[2] "Instalace souborů selhala" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "Soubor byl úspěšně nainstalován" -msgstr[1] "Soubory byly úspěšně nainstalovány" -msgstr[2] "Soubory byly úspěšně nainstalovány" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "Nastala chyba." - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "Je vyžadován dodatečný balíček:" -msgstr[1] "Jsou vyžadovány dodatečné balíčky:" -msgstr[2] "Jsou vyžadovány dodatečné balíčky:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "Přejete si nyní vyhledat a nainstalovat tento balíček?" -msgstr[1] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" -msgstr[2] "Přejete si nyní vyhledat a nainstalovat tyto balíčky?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "Program se chystá nainstalovat balíček" -msgstr[1] "Program se chystá nainstalovat balíčky" -msgstr[2] "Program se chystá nainstalovat balíčky" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 se chystá nainstalovat balíček" -msgstr[1] "%1 se chystá nainstalovat balíčky" -msgstr[2] "%1 se chystá nainstalovat balíčky" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "Instalovat" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "Spuštění transakce pro vyřešení závislosti selhalo" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "Balíček nebyl nalezen v žádném zdroji software." -msgstr[1] "Balíčky nebyly nalezeny v žádném zdroji software." -msgstr[2] "Balíčky nebyly nalezeny v žádném zdroji software." - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                                      %1
                                                                      Do " -"you want to search for a program to open this file type now?" -msgstr "" -"Je vyžadován dodatečný program k otevření tohoto typu souboru:
                                                                      %1
                                                                      Přejete si nyní vyhledat program k jeho otevření?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "Program vyžaduje nový MIME typ" -msgstr[1] "Program vyžaduje nové MIME typy" -msgstr[2] "Program vyžaduje nové MIME typy" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 vyžaduje nový MIME typ" -msgstr[1] "%1 vyžaduje nové MIME typy" -msgstr[2] "%1 vyžaduje nové MIME typy" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "Hledat" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "Vyhledání poskytovaných selhalo" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "Aplikace, která umí otevřít tento typ souboru" -msgstr[1] "Aplikace, které umějí otevřít tento typ souboru" -msgstr[2] "Aplikace, které umějí otevřít tento typ souboru" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "Nelze najít žádné další aplikace pro tento typ souboru" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "Vyhledání softwaru selhalo" +msgstr "Файл пакунка, який слід встановити" #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" -msgstr "Lukáš Tinkl" +msgstr "Юрій Чорноіван" #: rc.cpp:2 msgctxt "EMAIL OF TRANSLATORS" msgid "Your emails" -msgstr "ltinkl@redhat.com" +msgstr "yurchor@ukr.net" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" -msgstr "Vybrat všechny aktualizace" +msgstr "Позначити всі оновлення" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" -msgstr "Obnovit" +msgstr "Освіжити" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) #: rc.cpp:11 rc.cpp:14 msgid "History" -msgstr "Historie" +msgstr "Історія" #. i18n: file: Updater/KpkHistory.ui:22 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchLineKLE) #: rc.cpp:17 msgid "Type filter" -msgstr "Filtr typu" +msgstr "Фільтр типів" #. i18n: file: Updater/KpkHistory.ui:54 #. i18n: ectx: property (text), widget (QLabel, timeCacheLabel) #: rc.cpp:20 msgid "Time since last cache refresh: 5 hours" -msgstr "Čas od poslední aktualizace cache: 5 hodin" +msgstr "Час з останнього оновлення кешу: 5 годин" #. i18n: file: AddRm/KpkPackageDetails.ui:69 #. i18n: ectx: property (text), widget (QToolButton, fileListTB) #: rc.cpp:29 msgid "File List" -msgstr "Seznam souborů" +msgstr "Список файлів" #. i18n: file: AddRm/KpkPackageDetails.ui:85 #. i18n: ectx: property (text), widget (QToolButton, dependsOnTB) #: rc.cpp:32 msgid "Depends on" -msgstr "Závisí na" +msgstr "Залежить від" #. i18n: file: AddRm/KpkPackageDetails.ui:101 #. i18n: ectx: property (text), widget (QToolButton, requiredByTB) #: rc.cpp:35 msgid "Required by" -msgstr "Požadované" +msgstr "Потрібен для" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" -msgstr "Přidat a odebrat software" +msgstr "Додати або вилучити програми" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" -msgstr "Hledat balíčky" +msgstr "Шукати пакунки" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" -msgstr "Filtry" +msgstr "Фільтри" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" -msgstr "Všechny balíčky" +msgstr "Всі пакунки" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - Přenos" +msgid "Transaction" +msgstr "Операція" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +msgid "icon" +msgstr "піктограма" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" -msgstr "Stahují se balíčky" +msgstr "Звантаження пакунків" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "A library to do foo" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "TextLabel" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 -#, fuzzy -#| msgid "Additional media is required to complete the transaction." +#: rc.cpp:77 msgid "Additional changes are required to complete the task" -msgstr "Je vyžadováno další médium pro dokončení transakce." +msgstr "Для завершення завдання потрібно внести додаткові зміни" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 -#, fuzzy -#| msgid "Action" -msgid "Actions" -msgstr "Akce" - -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:80 -msgid "TextLabel" -msgstr "TextLabel" +msgid "Actions" +msgstr "Дії" #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" -msgstr "Název úložiště:" +msgstr "Назва сховища:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" -msgstr "URL podpisu:" +msgstr "Адреса підпису:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" -msgstr "Identifikátor podpisu uživatele:" +msgstr "Ідентифікатор користувача підпису:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" -msgstr "Identifikátor podpisu:" +msgstr "Ідентифікатор підпису:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" -msgstr "Poznáváte uživatele a věříte jeho klíči?" +msgstr "Ви впізнали користувача і довіряєте цьому ключу?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" -msgstr "Důvěřujete původu balíčků?" +msgstr "Ви довіряєте джерелу походження цих пакунків?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" -msgstr "Než budete pokračovat, přečtěte si prosím následující informace:" +msgstr "Будь ласка, прочитайте таку важливу інформацію перш ніж продовжувати:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" -msgstr "Nastavení" +msgstr "Параметри" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "Nastavení KPackageKit" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "Zkontrolovat aktualizace:" +msgid "Update settings" +msgstr "Параметри оновлень" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "Automaticky nainstalovat:" +msgid "Check for updates:" +msgstr "Перевіряти оновлення:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "Chytrá systémová ikona" +msgid "Automatically install:" +msgstr "Автоматично встановлювати:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" -msgstr "Upozornit na dostupné aktualizace" - -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "Informovat o dokončení dlouhých úloh" +msgstr "Сповіщати про наявність оновлень" -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" -msgstr "Původ balíčků" +#: rc.cpp:128 +msgid "Origin of packages" +msgstr "Походження пакунків" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" -msgstr "Z&obrazit původ vývojových a debugovacích balíčků" +msgstr "&Показувати походження пакунків зневаджування і розробки" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" -msgstr "O backendu" +msgstr "Про програму обробки" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" -msgstr "Název backendu:" +msgstr "Назва сервера:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" -msgstr "backend name here" +msgstr "назва сервера" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" -msgstr "Autor backendu:" +msgstr "Автор сервера:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +msgid "Backend description:" +msgstr "Опис сервера:" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" -msgstr "backend author name here" +msgstr "автор сервера" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +msgid "backend description here" +msgstr "опис сервера" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" -msgstr "Balíček je viditelný" +msgstr "Пакунок є видимим" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" -msgstr "Nejnovější" +msgstr "Найновіші" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" -msgstr "GUI" +msgstr "Інтерфейс" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" -msgstr "Svobodný software" +msgstr "Вільне програмне забезпечення" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" -msgstr "Podporováno" +msgstr "Підтримувані" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" -msgstr "Metody" +msgstr "Методи" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" -msgstr "Získat aktualizace" +msgstr "GetUpdates" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" -msgstr "Aktualizovat balíček" +msgstr "UpdatePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" -msgstr "Získat seznam úložišť" +msgstr "GetRepositoryList" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" -msgstr "Obnovit cache" +msgstr "RefreshCache" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" -msgstr "Nainstalovat balíček" +msgstr "InstallPackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" -msgstr "Povolit úložiště" +msgstr "RepositoryEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" -msgstr "Aktualizovat systém" +msgstr "UpdateSystem" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" -msgstr "Odstranit balíček" +msgstr "RemovePackage" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" -msgstr "Povolit sadu úložišť" +msgstr "RepositorySetEnable" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" -msgstr "Hledat podle názvu" +msgstr "SearchName" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" -msgstr "Získat závislosti" +msgstr "GetDepends" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" -msgstr "Co poskytuje" +msgstr "WhatProvides" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" -msgstr "Hledat detaily" +msgstr "SearchDetails" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" -msgstr "Získat požadavky" +msgstr "GetRequires" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" -msgstr "Získat balíčky" +msgstr "GetPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" -msgstr "Hledat skupiny" +msgstr "SearchGroup" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" -msgstr "Získat podrobnosti aktualizace" +msgstr "GetUpdateDetail" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" -msgstr "Hledat soubor" +msgstr "SearchFile" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" -msgstr "Získat popis" +msgstr "GetDescription" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" -msgstr "Získat soubory" +msgstr "GetFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" -msgstr "Vyřešit" +msgstr "Resolve" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" -msgstr "Instalovat soubor" +msgstr "InstallFIle" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 -#, fuzzy -#| msgid "InstallFIle" +#: rc.cpp:251 msgid "SimulateInstallFiles" -msgstr "Instalovat soubor" +msgstr "SimulateInstallFiles" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 -#, fuzzy -#| msgid "InstallPackage" +#: rc.cpp:254 msgid "SimulateInstallPackages" -msgstr "Nainstalovat balíček" +msgstr "SimulateInstallPackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 -#, fuzzy -#| msgid "RemovePackage" +#: rc.cpp:257 msgid "SimulateRemovePackages" -msgstr "Odstranit balíček" +msgstr "SimulateRemovePackages" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 -#, fuzzy -#| msgid "UpdatePackage" +#: rc.cpp:260 msgid "SimulateUpdatePackages" -msgstr "Aktualizovat balíček" +msgstr "SimulateUpdatePackages" + +#~ msgid "User canceled the installation" +#~ msgstr "Встановлення скасовано користувачем" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "Елемент не підтримується сервером вашої системи або не є файлом." +#~ msgstr[1] "Елементи не підтримуються сервером вашої системи або не є файлом" +#~ msgstr[2] "Елементи не підтримуються сервером вашої системи або не є файлом" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "Слід встановити додатковий пакунок:" +#~ msgstr[1] "Слід встановити додаткові пакунки:" +#~ msgstr[2] "Слід встановити додаткові пакунки:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "Бажаєте знайти і встановити цей пакунок зараз?" +#~ msgstr[1] "Бажаєте знайти і встановити ці пакунки зараз?" +#~ msgstr[2] "Бажаєте знайти і встановити ці пакунки зараз?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                                                      %1
                                                                      Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "Для відкриття файлів цього типу потрібна додаткова програма:
                                                                      %1
                                                                      Бажаєте знайти програму, призначену для відкриття файлів цього типу, " +#~ "зараз?" + +#~ msgid "All packages" +#~ msgstr "Всі пакунки" + +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "У вас недостатньо прав для виконання цієї дії." + +#~ msgid "Package Name" +#~ msgstr "Назва пакунка" + +#~ msgid "KPackageKit Settings" +#~ msgstr "Параметри KPackageKit" + +#~ msgid "Smart Tray Icon" +#~ msgstr "Кмітлива піктограма лотка" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "Сповіщати про завершення виконання тривалих завдань" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit — Дія" + +#~ msgid "A library to do foo" +#~ msgstr "Бібліотека для foo" #~ msgid "The following packages will also be installed as dependencies" -#~ msgstr "Následující balíčky budou rovněž nainstalovány jako závislosti" +#~ msgstr "" +#~ "Крім того, для задоволення залежностей буде встановлено такі пакунки:" #~ msgid "The following packages will also be removed for dependencies" -#~ msgstr "Následující balíčky budou rovněž odebrány jako závislosti" +#~ msgstr "Крім того, для задоволення залежностей буде вилучено такі пакунки" #~ msgid "Confirm" -#~ msgstr "Potvrdit" +#~ msgstr "Підтвердити" #~ msgid "The following packages also have to be removed/installed:" -#~ msgstr "Je potřeba rovněž odstranit/nainstalovat následující balíčky:" - -#~ msgid "Failed to update package lists" -#~ msgstr "Nepovedlo se aktualizovat seznamy balíčků" +#~ msgstr "Також буде вилучено/встановлено такі пакунки:" #~ msgid "Failed to refresh package lists" -#~ msgstr "Nepovedlo se obnovit seznam balíčků" +#~ msgstr "Не вдалося освіжити списки пакунків" + +#~ msgid "Installing updates." +#~ msgstr "Встановлення оновлень." + +#~ msgid "Apply all available updates" +#~ msgstr "Застосувати всі доступні оновлення" + +#~ msgid "Form" +#~ msgstr "Форма" + +#~ msgid "General" +#~ msgstr "Загальне" + +#~ msgid "name" +#~ msgstr "назва" + +#~ msgid "author" +#~ msgstr "автор" + +#~ msgid "Visible" +#~ msgstr "Видимий" + +#~ msgid "Free" +#~ msgstr "Вільні" + +#~ msgid "KPackageKit Update" +#~ msgstr "Оновлення KPackageKit" + +#~ msgid "A system restart is required" +#~ msgstr "Потрібно перезавантажити систему" + +#~ msgid "An application restart is required after this update" +#~ msgstr "Після цього оновлення слід перезапустити програму" + +#~ msgid "A system restart is required after this update" +#~ msgstr "Після цього оновлення слід буде перезавантажити систему" + +#~ msgid "You have a message" +#~ msgid_plural "You have messages" +#~ msgstr[0] "Для вас є повідомлення" +#~ msgstr[1] "Для вас є повідомлення" +#~ msgstr[2] "Для вас є повідомлення" + +#~ msgid "KPackageKit user interface" +#~ msgstr "Інтерфейс користувача KPackageKit" + +#~ msgid "CD" +#~ msgstr "КД" + +#~ msgid "DVD" +#~ msgstr "DVD" + +#~ msgid "disc" +#~ msgstr "диск" + +#~ msgid "Perform an automatic system update according to system settings." +#~ msgstr "" +#~ "Виконати автоматичне оновлення системи відповідно до системних параметрів." + +#~| msgid "Install" +#~ msgctxt "Search for a new mime type" +#~ msgid "Install" +#~ msgstr "Встановити" + +#~ msgid "(C) 2008 Daniel Nicoletti" +#~ msgstr "© 2008 Daniel Nicoletti" + +#~ msgctxt "The role of the transaction, in present tense" +#~ msgid "Applying service pack" +#~ msgstr "Застосування пакунка обслуговування" + +#~ msgctxt "The role of the transaction, in past tense" +#~ msgid "Applied service pack" +#~ msgstr "Застосовано пакунок обслуговування" + +#~ msgid "Downloading" +#~ msgstr "Звантаження" + +#~ msgid "Cleaning Up" +#~ msgstr "Очищення" + +#~ msgid "Obsoleting" +#~ msgstr "Визначення застарілих" + +#~ msgid "Downloading software changelogs" +#~ msgstr "Звантаження списків змін програм" + +#~ msgid "Error KPackageKit" +#~ msgstr "Помилка KPackageKit" + +#~ msgid "Find by &Name" +#~ msgstr "Знайти за &назвою" + +#~ msgid "Find by file name" +#~ msgstr "Знайти за назвою файла" diff -Nru kpackagekit-0.5.4/po/zh_CN/kpackagekit.po kpackagekit-0.6.0/po/zh_CN/kpackagekit.po --- kpackagekit-0.5.4/po/zh_CN/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/zh_CN/kpackagekit.po 2010-01-30 09:05:13.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kpackagekit\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-06-24 09:54+0000\n" "Last-Translator: Ni Hui \n" "Language-Team: 简体中文 \n" @@ -28,11 +28,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "详情" @@ -91,26 +91,26 @@ "is being performed." msgstr "" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "发行版升级完成。" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "发行版升级处理以代码 %1 退出。" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "发行版升级处理启动失败。" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "发行版升级处理在成功开始后某个时间崩溃。" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "发行版升级处理以未知错误失败。" @@ -190,28 +190,24 @@ msgid "Time since last cache refresh: %1" msgstr "自上次缓存刷新时间:%1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "软件包名称" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "主页" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "许可证" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "分组" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "主页" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "大小" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "未找到文件。" @@ -223,240 +219,253 @@ msgid "KDE interface for managing software" msgstr "管理软件的 KDE 界面" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "查找" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "全部软件包" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "更改列表" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "分组:" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "取消(&C)" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "按名称查找(&N)" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "按文件名查找(&I)" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "按描述查找(&D)" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "复查更改" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "集合" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "仅集合" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "排除集合" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "已安装" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "仅安装的" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "仅可用的" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "无过滤" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "开发" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "仅开发" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "仅最终用户文件" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "图像的" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "仅图像的" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "仅文本" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "自由软件" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "仅自由软件" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "仅非自由软件" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "构架" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "仅原生构架" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "仅非原生构架" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "源码" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "仅源码" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "仅非源码" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "隐藏子软件包" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "仅显示一个软件包,无子软件包" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "仅最新的软件包" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "仅显示最新的可用软件包" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "分组查看" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "根据状态分组显示软件包" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "将安装下列软件包:" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "立即安装" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "将删除下列软件包:" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "立即删除" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "将删除并安装下列软件包:" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "立即应用" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "更新软件包列表失败" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "当前后端不支持删除软件包。" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit 错误" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "更新软件包列表失败" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "当前后端不支持安装软件包。" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "删除软件包失败" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "安装软件包失败" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "删除软件包失败" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "隐藏" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "允许您隐藏窗口而保持运行变更交易任务。" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 msgid "" "You are about to install unsigned packages can compromise your system, as it " "is impossible to verify if the software came from a trusted source.\n" " Are you sure you want to continue installation?" msgstr "" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "正在安装未签名的软件" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "需要更改媒体" @@ -478,7 +487,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "需要同意许可证协议" @@ -493,13 +502,13 @@ msgid "Version" msgstr "新版本" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "取消" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "在 %1 内完成。" @@ -551,379 +560,486 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "需要软件签名" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "未知状态" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "正在等待服务启动" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "正在等待其它任务" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "正在运行任务" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "正在查询" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "正在获取信息" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "正在删除软件包" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "正在下载软件包" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "正在安装软件包" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "正在刷新软件列表" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "正在更新软件包" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "正在清理软件包" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "正在弃用软件包" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "正在解决依赖关系" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "正在检查签名" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "正在回滚" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "正在测试更改" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "正在提交更改" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "正在请求数据" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "已完成" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "正在取消" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "正在下载仓库信息" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "正在下载软件包列表" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "正在下载文件列表" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "正在下载更改列表" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "正在下载分组" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "正在下载更新信息" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "正在重新打包文件" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "正在装入缓存" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "正在扫描已安装的程序" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "正在生成软件包列表" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "正在等候软件包管理器锁定" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "正在等待其它任务" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "正在重新打包文件" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "已下载" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "已更新" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "已安装" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "已删除" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "已清理" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "已废弃" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "未知进度类型" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "正在获取依赖关系" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "正在获取更新详情" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "正在获取详情" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "正在获取所需" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "正在获取更新" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "正在搜索详情" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "正在搜索文件" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "正在搜索分组" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "正在搜索软件包名称" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "正在删除" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "正在安装" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "正在安装文件" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "正在刷新软件包缓存" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "正在更新软件包" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "正在更新系统" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "正在取消" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "正在回滚" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "正在获取仓库列表" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "正在启用仓库" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "正在设置仓库数据" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "正在解决" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "正在获取文件列表" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "正在获取所提供" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "正在安装签名" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "正在获取软件包列表" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "正在接受最终用户许可条例" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "正在下载软件包" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "正在获取发行版升级信息" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "正在获取分类" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "正在获取旧的变更交易" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -931,21 +1047,21 @@ msgid "Simulating the install of files" msgstr "安装文件失败" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Single file installer" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "单一文件安装器" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "单一软件包删除器" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -953,162 +1069,162 @@ msgid "Simulating the update" msgstr "%1 个重要更新" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "未知进度类型" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "已获取依赖关系" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "已获取更新详情" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "已获取详情" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "已获取所需" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "已获取更新" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "已搜索软件包名称" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "已搜索文件" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "已搜索分组" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "已搜索软件包名称" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "已删除软件包" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "已安装软件包" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "已安装本地文件" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "已刷新软件包缓存" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "已更新软件包" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "已更新系统" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "已取消" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "已回滚" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "已获取仓库列表" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "已启用仓库" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "已设置仓库数据" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "已解决" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "已获取文件列表" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "已获取所提供" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "已安装签名" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "已获取软件包列表" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "已接受最终用户许可条例" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "已下载软件包" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "已获取发行版升级" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "已获取分类" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "已获取旧的变更交易" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1116,284 +1232,290 @@ msgid "Simulated the install of files" msgstr "安装文件失败" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Mime type installer" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Mime 类型安装器" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "单一软件包删除器" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to update system" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "更新系统失败" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "无可用的网络连接" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "无软件包缓存可用" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "内存耗尽" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "创建线程失败" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "此后端不支持" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "发生内部系统错误" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "安全信任关系不存在" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "软件包未安装" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "软件包未找到" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "软件包已安装" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "软件包下载失败" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "分组未找到" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "分组列表无效" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "依赖关系解决失败" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "搜索过滤规则无效" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "软件包标识符未良好排列" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "变更交易错误" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "仓库名称未找到" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "无法删除受保护的系统软件包" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "任务已取消" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "任务已被强制取消" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "读取配置文件失败" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "任务无法取消" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "无法安装源码软件包" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "许可证同意失败" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "本地文件于软件包间冲突" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "软件包不兼容" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "连接到软件源有问题" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "初始化失败" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "完成化失败" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "无法获得锁定" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "没有可更新的软件包" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "无法写入仓库配置" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "本地安装失败" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "损坏的 GPG 签名" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "缺失的 GPG 签名" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "仓库配置无效" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "无效的软件包文件" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "软件包安装已屏蔽" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "软件包损坏" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "已经安装全部软件包" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "指定的文件未找到" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "无更多的镜像可用" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "无发行版升级数据可用" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "软件包与本系统不兼容" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "磁盘没有剩余空间" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "软件包未找到" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot install from untrusted origin" +msgstr "未在任何软件源中找到软件包" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot update from untrusted origin" +msgstr "未在任何软件源中找到软件包" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got file list" msgid "Cannot get the file list" msgstr "已获取文件列表" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "An additional package is required:" #| msgid_plural "Additional packages are required:" msgid "Cannot get package requires" msgstr "需要额外的软件包:" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "软件包下载失败" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "要安装的软件包文件" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "要安装的软件包文件" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "要安装的软件包文件" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "要安装的软件包文件" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "未知错误" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1401,7 +1523,7 @@ "没有可用的网络连接。\n" "请检查您的连接设置并重试" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1409,7 +1531,7 @@ "软件包列表需要重建。\n" "这应该由后端自动进行。" -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1418,11 +1540,11 @@ "负责处理用户请求的服务内存耗尽。\n" "请关闭一些程序和重启您的计算机。" -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "无法创建线程以应对用户请求。" -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1430,37 +1552,37 @@ "您的后端不支持该动作。\n" "请汇报错误,因为这不应该发生。" -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." msgstr "" -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "未在任何软件源中找到软件包" -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "尝试安装的软件包已经安装过了。" -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1468,7 +1590,7 @@ "软件包下载失败。\n" "请检查您的网络连接性。" -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1476,50 +1598,50 @@ "未找到分组类型。\n" "请检查您的分组列表并重试。" -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "" -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "不允许删除受保护的系统软件包。" -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "任务已成功取消并且未更改任何软件包。" -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1527,879 +1649,1037 @@ "任务已成功取消并且未更改任何软件包。\n" "后端未干净退出。" -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." msgstr "" -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "任务在此刻取消是不安全的。" -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." msgstr "" -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." msgstr "" -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." msgstr "" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." msgstr "" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." msgstr "" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "" -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "无法修改仓库配置。" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "无法验证软件包签名。" -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." msgstr "" -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "仓库配置无效且无法读取。" -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." msgstr "" -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "" -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "" -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." msgstr "" -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." msgstr "" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "未在任何软件源中找到软件包" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "未在任何软件源中找到软件包" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The file could not be found in any packages" #| msgid_plural "The files could not be found in any packages" msgid "The file list is not available for this package." msgstr "未在任何软件包中找到文件" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "指定的文件未找到" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 msgid "" "The download could not be done automatically and should be done manually.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 msgid "" "One of the selected packages failed to configure correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 msgid "" "One of the selected packages failed to build correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 msgid "" "One of the selected packages failed to install correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 msgid "" "One of the selected packages failed to be removed correctly.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." msgstr "" -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "辅助" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "附件" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "教育" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "游戏" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "图像" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "互联网" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "办公" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "其它" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "开发" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "多媒体" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "系统" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME 桌面" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE 桌面" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE 桌面" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "其它桌面" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "出版" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "服务器" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "字体" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "系统工具" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "继承" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "本地化" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "虚拟化" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "安全" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "电源管理" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "通讯" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "网络" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "地图" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "软件来源" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "科学" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "文档" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "电子学" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "软件包集合" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "最新的软件包" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "未知分组" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "次要更新" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "常规更新" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "重要更新" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "安全更新" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "错误修复更新" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "增强更新" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "已屏蔽的更新" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "已安装" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "可用" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "未知更新" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "%1 个次要更新" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" msgid_plural "%1 updates" msgstr[0] "%1 个更新" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "%1 个重要更新" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "%1 个安全更新" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "%1 个错误修复更新" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "%1 个增强更新" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 个已屏蔽的更新" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "%1 个已安装软件包" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "%1 个可用软件包" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 个未知更新" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "已选择 %1 个次要更新" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" msgid_plural "%1 updates selected" msgstr[0] "已选择 %1 个更新" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "已选择 %1 个重要更新" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "已选择 %1 个安全更新" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "已选择 %1 个错误修复更新" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "已选择 %1 个增强更新" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "已选择 %1 个要删除的已安装软件包" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "已选择 %1 个要安装的可用软件包" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 个次要更新,已选择 %2 个" -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" msgid_plural "%1 updates, %2 selected" msgstr[0] "%1 个更新,已选择 %2 个" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 个重要更新,已选择 %2 个" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 个安全更新,已选择 %2 个" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "%1 个错误修复更新,已选择 %2 个" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 个增强更新,已选择 %2 个" -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 个已屏蔽的更新" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 个已安装软件包,已选择 %2 个要删除的软件包" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 个可用软件包,已选择 %2 个要安装的软件包" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 个未知更新" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "不需要重启" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "您需要重启应用程序" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "您需要注销并再次登录" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "需要重启" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log out and back in" msgid "You will be required to log out and back in due to a security update." msgstr "您需要注销并再次登录" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "A restart will be required" msgid "A restart will be required due to a security update." msgstr "需要重启" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "不需要重启" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "需要重启" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "您需要注销并再次登录" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "您需要重启应用程序" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You need to log out and log back in" msgid "You need to log out and log back in to remain secure." msgstr "您需要注销并再次登录" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "A restart is required" msgid "A restart is required to remain secure." msgstr "需要重启" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "稳定" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "不稳定" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "测试" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "请插入标签为“%1”的 CD,并按继续。" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "请插入标签为“%1”的 DVD,并按继续。" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "请插入标签为“%1”的盘片,并按继续。" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "请插入标签为“%1”的媒体,并按继续。" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "连接被拒绝" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "参数无效" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "优先级无效" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "后端警告" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "守护进程警告" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "正在重建软件包列表缓存" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "安装了一个不受信任的软件包" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "存在新版本软件包" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "无法找到软件包" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "配置文件已更改" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "软件包已安装" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "软件包下载失败" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "您没有进行此操作的必需的权限。" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "无法删除受保护的系统软件包" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "无法验证软件包签名。" -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The priority was invalid" msgid "The query is not valid." msgstr "优先级无效" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "文件未安装" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Could not find package" msgid "Could not talk to packagekitd." msgstr "无法找到软件包" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "未知错误" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "忽略" -#: SmartIcon/KpkUpdateIcon.cpp:172 -#, kde-format -msgid "You have %1" -msgstr "您有 %1" - -#: SmartIcon/KpkUpdateIcon.cpp:181 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "
                                                                      And another update" -msgid_plural "
                                                                      And %1 more updates" -msgstr[0] "
                                                                      以及 %1 个其它更新" +msgid "" +"The following file is required:
                                                                      • %2
                                                                      Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                                      • %2
                                                                      Do you want to search " +"for these now?" +msgstr[0] "" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "复查并更新" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "一个程序想要安装文件" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "不是现在" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 想要安装文件" + +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "安装" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "启动文件变更交易搜索失败" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "软件包 %1 已提供该文件" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "安装文件失败" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "将安装下列软件包" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "未在任何软件包中找到文件" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "查找软件包失败" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "您有 %1" + +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                                                      And another update" +msgid_plural "
                                                                      And %1 more updates" +msgstr[0] "
                                                                      以及 %1 个其它更新" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "复查并更新" -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "不再询问" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "正在自动安装更新。" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "正在自动安装安全更新。" -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "系统已成功更新。" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "软件更新失败。" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "需要下列文件:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "您想要即刻搜索这些文件吗?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 想要安装文件" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "立即开始升级" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "发行版升级失败。" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "启动解决变更交易失败" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "已获取旧的变更交易" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "未知错误" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                                                                      • %2
                                                                      Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                                      • %2
                                                                      Do you want to search " +"for and install these packages now?" +msgstr[0] "您想要即刻搜索并安装这些软件包吗?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "一个程序想要安装软件包" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 想要安装软件包" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "安装" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "软件包已安装" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "安装软件包失败" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "未在任何软件源中找到软件包" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "无法找到 %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2424,214 +2704,443 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt 和其它工作" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "您想要即刻搜索并安装这些软件包吗?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "一个程序想要安装文件" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 想要安装文件" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "搜索" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "搜索所提供失败" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "能够打开此文件类型的应用程序" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "未找到能够处理此文件类型的新应用程序" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "查找软件失败" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "您的后端不支持这些项目,或者它们不是文件。" + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "无法安装" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "安装" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "您想要安装这些文件吗?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "安装吗?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "文件未安装" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "文件安装成功" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "发生错误。" + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                                      • %2
                                                                      Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                                      • %2
                                                                      Do you want to " +"search for these now?" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "一个程序需要新的 mime 类型" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "一个程序需要新的 mime 类型" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "一个程序需要新的 mime 类型" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "您想要即刻搜索并安装这些软件包吗?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "未在任何软件源中找到软件包" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "搜索所提供失败" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "未在任何软件源中找到软件包" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "变更交易" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "刷新软件包列表" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "显示消息" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "隐藏此图标" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "软件包:%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "软件包管理器发出 %1 条消息" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "系统更新已完成" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "重启" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "不是现在" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "注销" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "软件包管理器消息" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "消息" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "KPackageKit 设置" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "一个程序想要删除文件" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "每小时" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%1 想要删除文件" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "每天" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "将删除下列文件:" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "每周" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "您想要即刻搜索包含这些文件的软件包并删除它们吗?" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "每月" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "搜索" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "从不" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "将删除下列软件包" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "仅安全" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "未在任何已安装的软件包中找到文件" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "全部更新" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, kde-format +msgid "" +"An additional program is required to open this type of file:
                                                                      • %1
                                                                      • Do you want to search for a program to open this file type now?" +msgstr "" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "无" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "一个程序需要新的 mime 类型" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "您没有进行此操作的必需的权限。" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 需要新的 mime 类型" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "设定原始数据失败" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "搜索" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "需要下列文件:" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "未找到能够处理此文件类型的新应用程序" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "您想要即刻搜索这些文件吗?" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "查找软件失败" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "一个程序想要安装文件" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                                                        Do you want to install this catalog?

                                                                        • %2
                                                                        " +msgid_plural "" +"

                                                                        Do you want to install these catalogs?

                                                                        • %2
                                                                        " +msgstr[0] "您想要安装这些文件吗?" -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 想要安装文件" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "立即安装" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "安装" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "启动文件变更交易搜索失败" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "当前后端不支持安装软件包。" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "软件包 %1 已提供该文件" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "受支持" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "将安装下列软件包" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "要安装的软件包文件" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "未在任何软件包中找到文件" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "完成化失败" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "查找软件包失败" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "无法安装源码软件包" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "一个程序想要删除文件" +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "启动解决变更交易失败" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 想要删除文件" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "KPackageKit 设置" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "将删除下列文件:" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "每小时" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "您想要即刻搜索包含这些文件的软件包并删除它们吗?" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "每天" + +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "每周" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "每月" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "从不" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "搜索" +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "仅安全" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "将删除下列软件包" +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "全部更新" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "未在任何已安装的软件包中找到文件" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "无" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "无法找到 %1" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "设定原始数据失败" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2669,123 +3178,6 @@ msgid "Package file to install" msgstr "要安装的软件包文件" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "您的后端不支持这些项目,或者它们不是文件。" - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "无法安装" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "安装" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "您想要安装这些文件吗?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "安装吗?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "文件未安装" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "安装文件失败" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "文件安装成功" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "发生错误。" - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "需要额外的软件包:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "您想要即刻搜索并安装这些软件包吗?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "一个程序想要安装软件包" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 想要安装软件包" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "安装" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "启动解决变更交易失败" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "未在任何软件源中找到软件包" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                                        %1
                                                                        Do " -"you want to search for a program to open this file type now?" -msgstr "" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "一个程序需要新的 mime 类型" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 需要新的 mime 类型" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "搜索" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "搜索所提供失败" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "能够打开此文件类型的应用程序" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "未找到能够处理此文件类型的新应用程序" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "查找软件失败" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2796,19 +3188,19 @@ msgid "Your emails" msgstr "kde-china@kde.org,shuizhuyuanluo@126.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "选择全部更新" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "刷新" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2846,402 +3238,462 @@ msgid "Required by" msgstr "被需要于" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "添加和删除软件" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "搜索软件包" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "过滤" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "全部软件包" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - 变更交易" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "变更交易" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "动作" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "正在下载软件包" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "文本标签" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 msgid "Additional changes are required to complete the task" msgstr "" #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "动作" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "文本标签" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "仓库名称:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "签名 URL:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "签名用户标识符:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "签名标识符:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "您认识该用户并信任此密钥吗?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "您信任软件包根源吗?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "在继续前请阅读以下重要信息:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "设置" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit 设置" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "检查更新:" +#, fuzzy +#| msgid "Show settings" +msgid "Update settings" +msgstr "显示设置" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "自动安装:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "检查更新:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "智能托盘图标" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "自动安装:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "当更新可用时通知" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "当长时间任务完成时通知" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "软件包根源" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "显示调试和开发软件包根源(&S)" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "关于后端" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "后端名称:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "这里是后端名称" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "后端作者:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "按描述查找(&D)" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "这里是后端作者" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "这里是后端名称" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "软件包不可见" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "最新" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "图形界面" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "自由软件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "受支持" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "方法" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "获取更新" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "更新软件包" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "获取仓库列表" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "刷新缓存" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "安装软件包" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "仓库启用" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "更新系统" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "删除软件包" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "仓库设为启用" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "搜索名称" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "获取依赖" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "所提供" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "搜索详情" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "所需" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "获取软件包" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "搜索分组" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "获取更新详情" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "搜索文件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "获取描述" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "获取文件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "解决" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "安装文件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "InstallFIle" msgid "SimulateInstallFiles" msgstr "安装文件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "InstallPackage" msgid "SimulateInstallPackages" msgstr "安装软件包" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "RemovePackage" msgid "SimulateRemovePackages" msgstr "删除软件包" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "UpdatePackage" msgid "SimulateUpdatePackages" msgstr "更新软件包" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "已获取旧的变更交易" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "您的后端不支持这些项目,或者它们不是文件。" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "需要额外的软件包:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "您想要即刻搜索并安装这些软件包吗?" + +#~ msgid "All packages" +#~ msgstr "全部软件包" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "您没有进行此操作的必需的权限。" + +#~ msgid "Package Name" +#~ msgstr "软件包名称" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKit 设置" + +#~ msgid "Smart Tray Icon" +#~ msgstr "智能托盘图标" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "当长时间任务完成时通知" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - 变更交易" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "下列软件包会因依赖关系而同时安装" @@ -3254,8 +3706,5 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "下列软件包要同时删除/安装:" -#~ msgid "Failed to update package lists" -#~ msgstr "更新软件包列表失败" - #~ msgid "Failed to refresh package lists" #~ msgstr "刷新软件包列表失败" diff -Nru kpackagekit-0.5.4/po/zh_TW/kpackagekit.po kpackagekit-0.6.0/po/zh_TW/kpackagekit.po --- kpackagekit-0.5.4/po/zh_TW/kpackagekit.po 2009-11-17 18:25:48.000000000 +0000 +++ kpackagekit-0.6.0/po/zh_TW/kpackagekit.po 2010-01-30 09:05:21.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: kpackagekit.pot\n" "Report-Msgid-Bugs-To: http://bugs.kde.org\n" -"POT-Creation-Date: 2009-10-06 06:11+0200\n" +"POT-Creation-Date: 2010-01-19 06:58+0100\n" "PO-Revision-Date: 2009-07-22 8:21\n" "Last-Translator: Tryneeds-Chinese \n" "Language-Team: Chinese (traditional) \n" @@ -27,11 +27,11 @@ #. i18n: file: Updater/KpkUpdateDetails.ui:20 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#. i18n: file: libkpackagekit/KpkTransaction.ui:103 +#. i18n: file: libkpackagekit/KpkTransaction.ui:109 #. i18n: ectx: property (title), widget (QGroupBox, detailGroup) -#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:133 -#: SmartIcon/KpkTransactionWatcher.cpp:95 -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 rc.cpp:23 rc.cpp:71 +#: Updater/KpkSimpleTransactionModel.cpp:48 AddRm/KpkPackageDetails.cpp:124 +#: SmartIcon/KpkTransactionWatcher.cpp:102 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 rc.cpp:23 rc.cpp:71 msgid "Details" msgstr "細節" @@ -90,26 +90,26 @@ "is being performed." msgstr "建議您在執行升級的這段期間,都不要拔除電源線。" -#: Updater/KpkDistroUpgrade.cpp:102 +#: Updater/KpkDistroUpgrade.cpp:105 msgid "Distribution upgrade complete." msgstr "發行版升級完成。" -#: Updater/KpkDistroUpgrade.cpp:104 SmartIcon/KpkDistroUpgrade.cpp:114 +#: Updater/KpkDistroUpgrade.cpp:107 SmartIcon/KpkDistroUpgrade.cpp:116 #, kde-format msgid "Distribution upgrade process exited with code %1." msgstr "發行版升級程序關閉,伴隨輸出碼 %1。" -#: Updater/KpkDistroUpgrade.cpp:119 SmartIcon/KpkDistroUpgrade.cpp:131 +#: Updater/KpkDistroUpgrade.cpp:122 SmartIcon/KpkDistroUpgrade.cpp:133 msgid "The distribution upgrade process failed to start." msgstr "發行版升級程序啟動失敗。" -#: Updater/KpkDistroUpgrade.cpp:123 SmartIcon/KpkDistroUpgrade.cpp:134 +#: Updater/KpkDistroUpgrade.cpp:126 SmartIcon/KpkDistroUpgrade.cpp:136 msgid "" "The distribution upgrade process crashed some time after starting " "successfully." msgstr "發行版升級程序在成功啟動後一段時間內當掉了。" -#: Updater/KpkDistroUpgrade.cpp:127 SmartIcon/KpkDistroUpgrade.cpp:137 +#: Updater/KpkDistroUpgrade.cpp:130 SmartIcon/KpkDistroUpgrade.cpp:139 msgid "The distribution upgrade process failed with an unknown error." msgstr "發行版升級程序由於未知的錯誤而失敗。" @@ -189,28 +189,24 @@ msgid "Time since last cache refresh: %1" msgstr "離上次重新載入快取的時間:%1" -#: AddRm/KpkPackageDetails.cpp:123 -msgid "Package Name" -msgstr "套件名稱" +#: AddRm/KpkPackageDetails.cpp:129 +msgid "Home Page" +msgstr "首頁" -#: AddRm/KpkPackageDetails.cpp:125 +#: AddRm/KpkPackageDetails.cpp:134 msgid "License" msgstr "授權條款" -#: AddRm/KpkPackageDetails.cpp:129 +#: AddRm/KpkPackageDetails.cpp:139 msgctxt "Group of the package" msgid "Group" msgstr "群組" -#: AddRm/KpkPackageDetails.cpp:137 -msgid "Home Page" -msgstr "首頁" - -#: AddRm/KpkPackageDetails.cpp:141 +#: AddRm/KpkPackageDetails.cpp:145 msgid "Size" msgstr "大小" -#: AddRm/KpkPackageDetails.cpp:193 +#: AddRm/KpkPackageDetails.cpp:198 msgid "No files were found." msgstr "找不到檔案。" @@ -222,229 +218,242 @@ msgid "KDE interface for managing software" msgstr "用來管理軟體的 KDE 介面" -#: AddRm/KpkAddRm.cpp:80 AddRm/KpkAddRm.cpp:224 +#: AddRm/KpkAddRm.cpp:75 AddRm/KpkAddRm.cpp:219 msgid "Find" msgstr "尋找" -#: AddRm/KpkAddRm.cpp:127 -msgid "All packages" -msgstr "所有套件" +#: AddRm/KpkAddRm.cpp:122 +msgid "Text search" +msgstr "" -#: AddRm/KpkAddRm.cpp:130 +#: AddRm/KpkAddRm.cpp:125 msgid "List of changes" msgstr "變更清單" -#: AddRm/KpkAddRm.cpp:139 +#: AddRm/KpkAddRm.cpp:134 msgctxt "Groups of packages" msgid "Group:" msgid_plural "Groups:" msgstr[0] "" -#: AddRm/KpkAddRm.cpp:201 AddRm/KpkAddRm.cpp:202 AddRm/KpkAddRm.cpp:203 -#: AddRm/KpkAddRm.cpp:204 +#: AddRm/KpkAddRm.cpp:196 AddRm/KpkAddRm.cpp:197 AddRm/KpkAddRm.cpp:198 +#: AddRm/KpkAddRm.cpp:199 msgid "&Cancel" msgstr "取消(&C)" -#. i18n: file: AddRm/KpkAddRm.ui:146 +#. i18n: file: AddRm/KpkAddRm.ui:150 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:211 rc.cpp:50 +#: AddRm/KpkAddRm.cpp:206 rc.cpp:50 msgid "Find by &name" msgstr "用名稱來尋找(&n)" -#. i18n: file: AddRm/KpkAddRm.ui:156 +#. i18n: file: AddRm/KpkAddRm.ui:160 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:212 rc.cpp:56 +#: AddRm/KpkAddRm.cpp:207 rc.cpp:56 msgid "Find by f&ile name" msgstr "用檔案名稱來尋找(&I)" -#. i18n: file: AddRm/KpkAddRm.ui:151 +#. i18n: file: AddRm/KpkAddRm.ui:155 #. i18n: ectx: property (text), widget (KpkTransactionBar, transactionBar) -#: AddRm/KpkAddRm.cpp:213 rc.cpp:53 +#: AddRm/KpkAddRm.cpp:208 rc.cpp:53 msgid "Find by &description" msgstr "用描述來尋找(&D)" -#: AddRm/KpkAddRm.cpp:415 +#: AddRm/KpkAddRm.cpp:420 msgid "Review Changes" msgstr "檢閱變更" -#: AddRm/KpkAddRm.cpp:452 +#: AddRm/KpkAddRm.cpp:457 msgid "Collections" msgstr "合集" -#: AddRm/KpkAddRm.cpp:457 +#: AddRm/KpkAddRm.cpp:462 msgid "Only collections" msgstr "只有合集" -#: AddRm/KpkAddRm.cpp:464 +#: AddRm/KpkAddRm.cpp:469 msgid "Exclude collections" msgstr "排除合集" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:72 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:86 #. i18n: ectx: property (text), widget (QCheckBox, installedCB) -#: AddRm/KpkAddRm.cpp:473 rc.cpp:155 +#: AddRm/KpkAddRm.cpp:478 rc.cpp:158 msgid "Installed" msgstr "已安裝" -#: AddRm/KpkAddRm.cpp:479 +#: AddRm/KpkAddRm.cpp:484 msgid "Only installed" msgstr "只有已安裝" -#: AddRm/KpkAddRm.cpp:488 +#: AddRm/KpkAddRm.cpp:493 msgid "Only available" msgstr "只有可取得" -#: AddRm/KpkAddRm.cpp:496 AddRm/KpkAddRm.cpp:528 AddRm/KpkAddRm.cpp:560 -#: AddRm/KpkAddRm.cpp:592 AddRm/KpkAddRm.cpp:624 AddRm/KpkAddRm.cpp:656 +#: AddRm/KpkAddRm.cpp:501 AddRm/KpkAddRm.cpp:533 AddRm/KpkAddRm.cpp:565 +#: AddRm/KpkAddRm.cpp:597 AddRm/KpkAddRm.cpp:629 AddRm/KpkAddRm.cpp:661 msgid "No filter" msgstr "不過濾" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:88 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:102 #. i18n: ectx: property (text), widget (QCheckBox, developmentCB) -#: AddRm/KpkAddRm.cpp:505 rc.cpp:158 +#: AddRm/KpkAddRm.cpp:510 rc.cpp:161 msgid "Development" msgstr "開發" -#: AddRm/KpkAddRm.cpp:511 +#: AddRm/KpkAddRm.cpp:516 msgid "Only development" msgstr "只有開發用" -#: AddRm/KpkAddRm.cpp:520 +#: AddRm/KpkAddRm.cpp:525 msgid "Only end user files" msgstr "只有終端使用者檔案" -#: AddRm/KpkAddRm.cpp:537 +#: AddRm/KpkAddRm.cpp:542 msgid "Graphical" msgstr "圖像" -#: AddRm/KpkAddRm.cpp:543 +#: AddRm/KpkAddRm.cpp:548 msgid "Only graphical" msgstr "只有圖形介面" -#: AddRm/KpkAddRm.cpp:552 +#: AddRm/KpkAddRm.cpp:557 msgid "Only text" msgstr "只有文字介面" -#: AddRm/KpkAddRm.cpp:569 +#: AddRm/KpkAddRm.cpp:574 msgctxt "Filter for free packages" msgid "Free" msgstr "自由" -#: AddRm/KpkAddRm.cpp:575 +#: AddRm/KpkAddRm.cpp:580 msgid "Only free software" msgstr "只有自由軟體" -#: AddRm/KpkAddRm.cpp:584 +#: AddRm/KpkAddRm.cpp:589 msgid "Only non-free software" msgstr "只有非自由軟體" -#: AddRm/KpkAddRm.cpp:601 +#: AddRm/KpkAddRm.cpp:606 msgid "Architectures" msgstr "架構" -#: AddRm/KpkAddRm.cpp:607 +#: AddRm/KpkAddRm.cpp:612 msgid "Only native architectures" msgstr "只有原生架構" -#: AddRm/KpkAddRm.cpp:616 +#: AddRm/KpkAddRm.cpp:621 msgid "Only non-native architectures" msgstr "只有非原生架構" -#: AddRm/KpkAddRm.cpp:633 +#: AddRm/KpkAddRm.cpp:638 msgctxt "Filter for source packages" msgid "Source" msgstr "源碼" -#: AddRm/KpkAddRm.cpp:639 +#: AddRm/KpkAddRm.cpp:644 msgid "Only sourcecode" msgstr "只有源碼" -#: AddRm/KpkAddRm.cpp:648 +#: AddRm/KpkAddRm.cpp:653 msgid "Only non-sourcecode" msgstr "只有非源碼" -#: AddRm/KpkAddRm.cpp:665 +#: AddRm/KpkAddRm.cpp:670 msgid "Hide subpackages" msgstr "隱藏子套件" -#: AddRm/KpkAddRm.cpp:667 +#: AddRm/KpkAddRm.cpp:672 msgid "Only show one package, not subpackages" msgstr "只顯示一個套件,不包括子套件" -#: AddRm/KpkAddRm.cpp:675 +#: AddRm/KpkAddRm.cpp:680 msgid "Only newest packages" msgstr "只有最新的套件" -#: AddRm/KpkAddRm.cpp:677 +#: AddRm/KpkAddRm.cpp:683 msgid "Only show the newest available package" msgstr "只顯示最新的可用套件" -#: AddRm/KpkAddRm.cpp:686 +#: AddRm/KpkAddRm.cpp:692 msgid "View in groups" msgstr "依群組檢視" -#: AddRm/KpkAddRm.cpp:689 +#: AddRm/KpkAddRm.cpp:695 msgid "Display packages in groups according to status" msgstr "根據狀態顯示群組內的套件" -#: libkpackagekit/KpkReviewChanges.cpp:70 +#: libkpackagekit/KpkReviewChanges.cpp:75 msgid "The following package will be installed:" msgid_plural "The following packages will be installed:" msgstr[0] "" -#: libkpackagekit/KpkReviewChanges.cpp:72 +#: libkpackagekit/KpkReviewChanges.cpp:77 msgid "Install Now" msgstr "現在安裝" -#: libkpackagekit/KpkReviewChanges.cpp:74 +#: libkpackagekit/KpkReviewChanges.cpp:79 msgid "The following package will be removed:" msgid_plural "The following packages will be removed:" msgstr[0] "" -#: libkpackagekit/KpkReviewChanges.cpp:76 +#: libkpackagekit/KpkReviewChanges.cpp:81 msgid "Remove Now" msgstr "現在移除" -#: libkpackagekit/KpkReviewChanges.cpp:78 +#: libkpackagekit/KpkReviewChanges.cpp:83 msgid "The following package will be removed and installed:" msgid_plural "The following packages will be removed and installed:" msgstr[0] "" -#: libkpackagekit/KpkReviewChanges.cpp:80 +#: libkpackagekit/KpkReviewChanges.cpp:85 msgid "Apply Now" msgstr "現在套用" -#: libkpackagekit/KpkReviewChanges.cpp:153 +#: libkpackagekit/KpkReviewChanges.cpp:164 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package removal" +msgstr "更新套件清單失敗" + +#: libkpackagekit/KpkReviewChanges.cpp:187 msgid "The current backend does not support removing packages." msgstr "現在使用的後端程式無法支援移除套件。" -#: libkpackagekit/KpkReviewChanges.cpp:153 -#: libkpackagekit/KpkReviewChanges.cpp:177 KPackageKit/KpkInstallFiles.cpp:197 +#: libkpackagekit/KpkReviewChanges.cpp:187 +#: libkpackagekit/KpkReviewChanges.cpp:224 +#: SmartIcon/PkInstallPackageFiles.cpp:236 msgid "KPackageKit Error" msgstr "KPackageKit 發生錯誤" -#: libkpackagekit/KpkReviewChanges.cpp:177 +#: libkpackagekit/KpkReviewChanges.cpp:201 +#, fuzzy +#| msgid "Failed to update package lists" +msgid "Failed to simulate package install" +msgstr "更新套件清單失敗" + +#: libkpackagekit/KpkReviewChanges.cpp:224 msgid "Current backend does not support installing packages." msgstr "現在的後端程式不支援安裝套件。" -#: libkpackagekit/KpkReviewChanges.cpp:217 -msgid "Failed to remove package" -msgstr "移除套件失敗" - -#: libkpackagekit/KpkReviewChanges.cpp:258 -#: KPackageKit/KpkInstallProvideFile.cpp:103 +#: libkpackagekit/KpkReviewChanges.cpp:285 +#: SmartIcon/KpkInstallProvideFile.cpp:103 msgid "Failed to install package" msgstr "安裝套件失敗" -#: libkpackagekit/KpkTransaction.cpp:68 +#: libkpackagekit/KpkReviewChanges.cpp:313 +msgid "Failed to remove package" +msgstr "移除套件失敗" + +#: libkpackagekit/KpkTransaction.cpp:71 msgid "Hide" msgstr "隱藏" -#: libkpackagekit/KpkTransaction.cpp:69 +#: libkpackagekit/KpkTransaction.cpp:72 msgid "" "Allows you to hide the window whilst keeping the transaction task running." msgstr "允許您正當執行處理事項工作項目的同時隱藏住此視窗。" -#: libkpackagekit/KpkTransaction.cpp:330 +#: libkpackagekit/KpkTransaction.cpp:374 #, fuzzy #| msgid "" #| "
                                                                        Installing unsigned packages can compromise your system, as it is " @@ -458,11 +467,11 @@ "
                                                                        由於無法驗證未簽署套件其是否源自可信賴的來源,所以安裝它們可能會危害您" "的電腦。您確定您想要繼續進行安裝嗎?" -#: libkpackagekit/KpkTransaction.cpp:333 +#: libkpackagekit/KpkTransaction.cpp:377 msgid "Installing unsigned software" msgstr "安裝未簽署的軟體" -#: libkpackagekit/KpkTransaction.cpp:409 libkpackagekit/KpkStrings.cpp:380 +#: libkpackagekit/KpkTransaction.cpp:453 libkpackagekit/KpkStrings.cpp:419 msgid "A media change is required" msgstr "需要更換媒體" @@ -482,7 +491,7 @@ #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkLicenseAgreement) -#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:104 +#: libkpackagekit/KpkLicenseAgreement.cpp:35 rc.cpp:107 msgid "License Agreement Required" msgstr "需要接受授權條款" @@ -497,13 +506,13 @@ msgid "Version" msgstr "新版本" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:500 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:514 #. i18n: ectx: property (text), widget (QCheckBox, cancelCB) -#: libkpackagekit/KpkTransactionBar.cpp:39 rc.cpp:236 +#: libkpackagekit/KpkTransactionBar.cpp:42 rc.cpp:239 msgid "Cancel" msgstr "取消" -#: libkpackagekit/KpkTransactionBar.cpp:128 +#: libkpackagekit/KpkTransactionBar.cpp:129 #, kde-format msgid "Finished in %1." msgstr "在 %1 內完成。" @@ -555,379 +564,486 @@ #. i18n: file: libkpackagekit/KpkRepoSig.ui:25 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkRepoSig) -#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:83 +#: libkpackagekit/KpkRepoSig.cpp:36 rc.cpp:86 msgid "Software signature is required" msgstr "需要軟體簽章" -#: libkpackagekit/KpkStrings.cpp:31 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:32 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Unknown state" +msgctxt "This is when the transaction status is not known" msgid "Unknown state" msgstr "未知的狀態" -#: libkpackagekit/KpkStrings.cpp:33 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:35 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for service to start" +msgctxt "transaction state, the daemon is in the process of starting" msgid "Waiting for service to start" msgstr "等待服務啟動中" -#: libkpackagekit/KpkStrings.cpp:35 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:38 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for other tasks" +msgctxt "transaction state, the transaction is waiting for another to complete" msgid "Waiting for other tasks" msgstr "等待其他工作事項中" -#: libkpackagekit/KpkStrings.cpp:37 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:41 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Running task" +msgctxt "transaction state, just started" msgid "Running task" msgstr "執行工作事項中" -#: libkpackagekit/KpkStrings.cpp:39 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:44 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Querying" +msgctxt "transaction state, is querying data" msgid "Querying" msgstr "查詢中" -#: libkpackagekit/KpkStrings.cpp:41 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:47 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Getting information" +msgctxt "transaction state, getting data from a server" msgid "Getting information" msgstr "取得資訊中" -#: libkpackagekit/KpkStrings.cpp:43 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:50 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Removing packages" +msgctxt "transaction state, removing packages" msgid "Removing packages" msgstr "移除套件中" -#: libkpackagekit/KpkStrings.cpp:45 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:53 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading packages" +msgctxt "transaction state, downloading package files" msgid "Downloading packages" msgstr "下載套件中" -#: libkpackagekit/KpkStrings.cpp:47 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:56 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Installing packages" +msgctxt "transaction state, installing packages" msgid "Installing packages" msgstr "安裝套件中" -#: libkpackagekit/KpkStrings.cpp:49 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:59 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Refreshing software list" +msgctxt "transaction state, refreshing internal lists" msgid "Refreshing software list" msgstr "重新載入軟體清單中" -#: libkpackagekit/KpkStrings.cpp:51 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:62 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Updating packages" +msgctxt "transaction state, installing updates" msgid "Updating packages" msgstr "更新套件中" -#: libkpackagekit/KpkStrings.cpp:53 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:65 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cleaning up packages" +msgctxt "transaction state, removing old packages, and cleaning config files" msgid "Cleaning up packages" msgstr "清理套件中" -#: libkpackagekit/KpkStrings.cpp:55 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:68 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Obsoleting packages" +msgctxt "transaction state, obsoleting old packages" msgid "Obsoleting packages" msgstr "淘汰套件中" -#: libkpackagekit/KpkStrings.cpp:57 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:71 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Resolving dependencies" +msgctxt "transaction state, checking the transaction before we do it" msgid "Resolving dependencies" msgstr "解決相依性中" -#: libkpackagekit/KpkStrings.cpp:59 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:74 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Checking signatures" +msgctxt "" +"transaction state, checking if we have all the security keys for the " +"operation" msgid "Checking signatures" msgstr "檢查簽章中" -#: libkpackagekit/KpkStrings.cpp:61 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:77 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Rolling back" +msgctxt "transaction state, when we return to a previous system state" msgid "Rolling back" msgstr "回復中" -#: libkpackagekit/KpkStrings.cpp:63 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:80 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Testing changes" +msgctxt "transaction state, when we're doing a test transaction" msgid "Testing changes" msgstr "測試變更中" -#: libkpackagekit/KpkStrings.cpp:65 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:83 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Committing changes" +msgctxt "transaction state, when we're writing to the system package database" msgid "Committing changes" msgstr "提交變更中" -#: libkpackagekit/KpkStrings.cpp:67 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:86 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Requesting data" +msgctxt "transaction state, requesting data from a server" msgid "Requesting data" msgstr "索求資料中" -#: libkpackagekit/KpkStrings.cpp:69 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:89 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Finished" +msgctxt "transaction state, all done!" msgid "Finished" msgstr "完成" -#: libkpackagekit/KpkStrings.cpp:71 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:92 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Cancelling" +msgctxt "transaction state, in the process of cancelling" msgid "Cancelling" msgstr "取消中" -#: libkpackagekit/KpkStrings.cpp:73 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:95 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading repository information" +msgctxt "transaction state, downloading metadata" msgid "Downloading repository information" msgstr "下載套件庫資訊中" -#: libkpackagekit/KpkStrings.cpp:75 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:98 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading list of packages" +msgctxt "transaction state, downloading metadata" msgid "Downloading list of packages" msgstr "下載套件清單中" -#: libkpackagekit/KpkStrings.cpp:77 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:101 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading file lists" +msgctxt "transaction state, downloading metadata" msgid "Downloading file lists" msgstr "下載檔案清單中" -#: libkpackagekit/KpkStrings.cpp:79 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:104 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading lists of changes" +msgctxt "transaction state, downloading metadata" msgid "Downloading lists of changes" msgstr "下載清單的變更中" -#: libkpackagekit/KpkStrings.cpp:81 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:107 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading groups" +msgctxt "transaction state, downloading metadata" msgid "Downloading groups" msgstr "下載群組中" -#: libkpackagekit/KpkStrings.cpp:83 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:110 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Downloading update information" +msgctxt "transaction state, downloading metadata" msgid "Downloading update information" msgstr "下載更新資訊中" -#: libkpackagekit/KpkStrings.cpp:85 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:113 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "transaction state, repackaging delta files" msgid "Repackaging files" msgstr "重新包裝檔案中" -#: libkpackagekit/KpkStrings.cpp:87 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:116 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Loading cache" +msgctxt "transaction state, loading databases" msgid "Loading cache" msgstr "載入快取中" -#: libkpackagekit/KpkStrings.cpp:89 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:119 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Scanning installed applications" +msgctxt "transaction state, scanning for running processes" msgid "Scanning installed applications" msgstr "掃描已安裝的應用程式中" -#: libkpackagekit/KpkStrings.cpp:91 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:122 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Generating package lists" +msgctxt "" +"transaction state, generating a list of packages installed on the system" msgid "Generating package lists" msgstr "產生套件清單中" -#: libkpackagekit/KpkStrings.cpp:93 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:125 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Waiting for package manager lock" +msgctxt "transaction state, when we're waiting for the native tools to exit" msgid "Waiting for package manager lock" msgstr "等待套件管理程式還鎖" -#: libkpackagekit/KpkStrings.cpp:95 +#: libkpackagekit/KpkStrings.cpp:128 #, fuzzy #| msgctxt "The transaction state" #| msgid "Waiting for other tasks" -msgctxt "The transaction state" +msgctxt "waiting for user to type in a password" msgid "Waiting for authentication" msgstr "等待其他工作事項中" -#: libkpackagekit/KpkStrings.cpp:97 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:131 +msgctxt "we are updating the list of processes" msgid "Updating the list of running applications" msgstr "" -#: libkpackagekit/KpkStrings.cpp:99 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:134 +msgctxt "we are checking executable files in use" msgid "Checking for applications currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:101 -msgctxt "The transaction state" +#: libkpackagekit/KpkStrings.cpp:137 +msgctxt "we are checking for libraries in use" msgid "Checking for libraries currently in use" msgstr "" -#: libkpackagekit/KpkStrings.cpp:111 +#: libkpackagekit/KpkStrings.cpp:140 +#, fuzzy +#| msgctxt "The transaction state" +#| msgid "Repackaging files" +msgctxt "we are copying package files to prepare to install" +msgid "Copying files" +msgstr "重新包裝檔案中" + +#: libkpackagekit/KpkStrings.cpp:150 msgctxt "The action of the package, in past tense" msgid "Downloaded" msgstr "已下載" -#: libkpackagekit/KpkStrings.cpp:113 +#: libkpackagekit/KpkStrings.cpp:152 msgctxt "The action of the package, in past tense" msgid "Updated" msgstr "已更新" -#: libkpackagekit/KpkStrings.cpp:115 +#: libkpackagekit/KpkStrings.cpp:154 msgctxt "The action of the package, in past tense" msgid "Installed" msgstr "已安裝" -#: libkpackagekit/KpkStrings.cpp:117 +#: libkpackagekit/KpkStrings.cpp:156 msgctxt "The action of the package, in past tense" msgid "Removed" msgstr "已移除" -#: libkpackagekit/KpkStrings.cpp:119 +#: libkpackagekit/KpkStrings.cpp:158 msgctxt "The action of the package, in past tense" msgid "Cleaned Up" msgstr "已清理" -#: libkpackagekit/KpkStrings.cpp:121 +#: libkpackagekit/KpkStrings.cpp:160 msgctxt "The action of the package, in past tense" msgid "Obsoleted" msgstr "已淘汰" -#: libkpackagekit/KpkStrings.cpp:132 +#: libkpackagekit/KpkStrings.cpp:171 msgctxt "The role of the transaction, in present tense" msgid "Unknown role type" msgstr "未知的任務種類" -#: libkpackagekit/KpkStrings.cpp:134 +#: libkpackagekit/KpkStrings.cpp:173 msgctxt "The role of the transaction, in present tense" msgid "Getting dependencies" msgstr "取得相依性中" -#: libkpackagekit/KpkStrings.cpp:136 +#: libkpackagekit/KpkStrings.cpp:175 msgctxt "The role of the transaction, in present tense" msgid "Getting update detail" msgstr "取得更新細節中" -#: libkpackagekit/KpkStrings.cpp:138 +#: libkpackagekit/KpkStrings.cpp:177 msgctxt "The role of the transaction, in present tense" msgid "Getting details" msgstr "取得細節中" -#: libkpackagekit/KpkStrings.cpp:140 +#: libkpackagekit/KpkStrings.cpp:179 msgctxt "The role of the transaction, in present tense" msgid "Getting requires" msgstr "取得需求中" -#: libkpackagekit/KpkStrings.cpp:142 +#: libkpackagekit/KpkStrings.cpp:181 msgctxt "The role of the transaction, in present tense" msgid "Getting updates" msgstr "取得更新中" -#: libkpackagekit/KpkStrings.cpp:144 +#: libkpackagekit/KpkStrings.cpp:183 msgctxt "The role of the transaction, in present tense" msgid "Searching details" msgstr "搜尋細節中" -#: libkpackagekit/KpkStrings.cpp:146 +#: libkpackagekit/KpkStrings.cpp:185 msgctxt "The role of the transaction, in present tense" msgid "Searching for file" msgstr "搜尋檔案中" -#: libkpackagekit/KpkStrings.cpp:148 +#: libkpackagekit/KpkStrings.cpp:187 msgctxt "The role of the transaction, in present tense" msgid "Searching groups" msgstr "搜尋群組中" -#: libkpackagekit/KpkStrings.cpp:150 +#: libkpackagekit/KpkStrings.cpp:189 msgctxt "The role of the transaction, in present tense" msgid "Searching by package name" msgstr "藉由套件名稱搜尋中" -#: libkpackagekit/KpkStrings.cpp:152 +#: libkpackagekit/KpkStrings.cpp:191 msgctxt "The role of the transaction, in present tense" msgid "Removing" msgstr "移除中" -#: libkpackagekit/KpkStrings.cpp:154 +#: libkpackagekit/KpkStrings.cpp:193 msgctxt "The role of the transaction, in present tense" msgid "Installing" msgstr "安裝中" -#: libkpackagekit/KpkStrings.cpp:156 +#: libkpackagekit/KpkStrings.cpp:195 msgctxt "The role of the transaction, in present tense" msgid "Installing file" msgstr "安裝檔案中" -#: libkpackagekit/KpkStrings.cpp:158 +#: libkpackagekit/KpkStrings.cpp:197 msgctxt "The role of the transaction, in present tense" msgid "Refreshing package cache" msgstr "重新載入套件快取中" -#: libkpackagekit/KpkStrings.cpp:160 +#: libkpackagekit/KpkStrings.cpp:199 msgctxt "The role of the transaction, in present tense" msgid "Updating packages" msgstr "更新套件中" -#: libkpackagekit/KpkStrings.cpp:162 +#: libkpackagekit/KpkStrings.cpp:201 msgctxt "The role of the transaction, in present tense" msgid "Updating system" msgstr "更新系統中" -#: libkpackagekit/KpkStrings.cpp:164 +#: libkpackagekit/KpkStrings.cpp:203 msgctxt "The role of the transaction, in present tense" msgid "Canceling" msgstr "取消中" -#: libkpackagekit/KpkStrings.cpp:166 +#: libkpackagekit/KpkStrings.cpp:205 msgctxt "The role of the transaction, in present tense" msgid "Rolling back" msgstr "回復中" -#: libkpackagekit/KpkStrings.cpp:168 +#: libkpackagekit/KpkStrings.cpp:207 msgctxt "The role of the transaction, in present tense" msgid "Getting list of repositories" msgstr "取得套件庫清單中" -#: libkpackagekit/KpkStrings.cpp:170 +#: libkpackagekit/KpkStrings.cpp:209 msgctxt "The role of the transaction, in present tense" msgid "Enabling repository" msgstr "啟用套件庫中" -#: libkpackagekit/KpkStrings.cpp:172 +#: libkpackagekit/KpkStrings.cpp:211 msgctxt "The role of the transaction, in present tense" msgid "Setting repository data" msgstr "設定套件庫資料中" -#: libkpackagekit/KpkStrings.cpp:174 +#: libkpackagekit/KpkStrings.cpp:213 msgctxt "The role of the transaction, in present tense" msgid "Resolving" msgstr "分析中" -#: libkpackagekit/KpkStrings.cpp:176 +#: libkpackagekit/KpkStrings.cpp:215 msgctxt "The role of the transaction, in present tense" msgid "Getting file list" msgstr "取得檔案清單中" -#: libkpackagekit/KpkStrings.cpp:178 +#: libkpackagekit/KpkStrings.cpp:217 msgctxt "The role of the transaction, in present tense" msgid "Getting what provides" msgstr "取得提供的資料中" -#: libkpackagekit/KpkStrings.cpp:180 +#: libkpackagekit/KpkStrings.cpp:219 msgctxt "The role of the transaction, in present tense" msgid "Installing signature" msgstr "安裝簽章中" -#: libkpackagekit/KpkStrings.cpp:182 +#: libkpackagekit/KpkStrings.cpp:221 msgctxt "The role of the transaction, in present tense" msgid "Getting package lists" msgstr "取得套件清單中" -#: libkpackagekit/KpkStrings.cpp:184 +#: libkpackagekit/KpkStrings.cpp:223 msgctxt "The role of the transaction, in present tense" msgid "Accepting EULA" msgstr "接受終端使用者授權條款協議中" -#: libkpackagekit/KpkStrings.cpp:186 +#: libkpackagekit/KpkStrings.cpp:225 msgctxt "The role of the transaction, in present tense" msgid "Downloading packages" msgstr "下載套件中" -#: libkpackagekit/KpkStrings.cpp:188 +#: libkpackagekit/KpkStrings.cpp:227 msgctxt "The role of the transaction, in present tense" msgid "Getting distribution upgrade information" msgstr "取得發行版升級資訊中" -#: libkpackagekit/KpkStrings.cpp:190 +#: libkpackagekit/KpkStrings.cpp:229 msgctxt "The role of the transaction, in present tense" msgid "Getting categories" msgstr "取得分類中" -#: libkpackagekit/KpkStrings.cpp:192 +#: libkpackagekit/KpkStrings.cpp:231 msgctxt "The role of the transaction, in present tense" msgid "Getting old transactions" msgstr "取得之前的處理事項中" -#: libkpackagekit/KpkStrings.cpp:194 +#: libkpackagekit/KpkStrings.cpp:233 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -935,21 +1051,21 @@ msgid "Simulating the install of files" msgstr "安裝檔案失敗" -#: libkpackagekit/KpkStrings.cpp:196 +#: libkpackagekit/KpkStrings.cpp:235 #, fuzzy #| msgid "Single file installer" msgctxt "The role of the transaction, in present tense" msgid "Simulating the install" msgstr "單一檔案安裝程式" -#: libkpackagekit/KpkStrings.cpp:198 +#: libkpackagekit/KpkStrings.cpp:237 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in present tense" msgid "Simulating the remove" msgstr "單一套件移除程式" -#: libkpackagekit/KpkStrings.cpp:200 +#: libkpackagekit/KpkStrings.cpp:239 #, fuzzy #| msgid "1 important update" #| msgid_plural "%1 important updates" @@ -957,162 +1073,162 @@ msgid "Simulating the update" msgstr "%1 個重大更新" -#: libkpackagekit/KpkStrings.cpp:210 +#: libkpackagekit/KpkStrings.cpp:249 msgctxt "The role of the transaction, in past tense" msgid "Unknown role type" msgstr "未知的任務種類" -#: libkpackagekit/KpkStrings.cpp:212 +#: libkpackagekit/KpkStrings.cpp:251 msgctxt "The role of the transaction, in past tense" msgid "Got dependencies" msgstr "已取得相依性" -#: libkpackagekit/KpkStrings.cpp:214 +#: libkpackagekit/KpkStrings.cpp:253 msgctxt "The role of the transaction, in past tense" msgid "Got update detail" msgstr "已取得更新細節" -#: libkpackagekit/KpkStrings.cpp:216 +#: libkpackagekit/KpkStrings.cpp:255 msgctxt "The role of the transaction, in past tense" msgid "Got details" msgstr "已取得細節" -#: libkpackagekit/KpkStrings.cpp:218 +#: libkpackagekit/KpkStrings.cpp:257 msgctxt "The role of the transaction, in past tense" msgid "Got requires" msgstr "已取得需求" -#: libkpackagekit/KpkStrings.cpp:220 +#: libkpackagekit/KpkStrings.cpp:259 msgctxt "The role of the transaction, in past tense" msgid "Got updates" msgstr "已取得更新" -#: libkpackagekit/KpkStrings.cpp:222 +#: libkpackagekit/KpkStrings.cpp:261 msgctxt "The role of the transaction, in past tense" msgid "Searched for package details" msgstr "已搜尋套件細節" -#: libkpackagekit/KpkStrings.cpp:224 +#: libkpackagekit/KpkStrings.cpp:263 msgctxt "The role of the transaction, in past tense" msgid "Searched for file" msgstr "已搜尋檔案" -#: libkpackagekit/KpkStrings.cpp:226 +#: libkpackagekit/KpkStrings.cpp:265 msgctxt "The role of the transaction, in past tense" msgid "Searched groups" msgstr "已搜尋群組" -#: libkpackagekit/KpkStrings.cpp:228 +#: libkpackagekit/KpkStrings.cpp:267 msgctxt "The role of the transaction, in past tense" msgid "Searched for package name" msgstr "已搜尋套件名稱" -#: libkpackagekit/KpkStrings.cpp:230 +#: libkpackagekit/KpkStrings.cpp:269 msgctxt "The role of the transaction, in past tense" msgid "Removed packages" msgstr "已移除套件" -#: libkpackagekit/KpkStrings.cpp:232 +#: libkpackagekit/KpkStrings.cpp:271 msgctxt "The role of the transaction, in past tense" msgid "Installed packages" msgstr "已安裝套件" -#: libkpackagekit/KpkStrings.cpp:234 +#: libkpackagekit/KpkStrings.cpp:273 msgctxt "The role of the transaction, in past tense" msgid "Installed local files" msgstr "已安裝本地檔案" -#: libkpackagekit/KpkStrings.cpp:236 +#: libkpackagekit/KpkStrings.cpp:275 msgctxt "The role of the transaction, in past tense" msgid "Refreshed package cache" msgstr "已重新載入套件快取" -#: libkpackagekit/KpkStrings.cpp:238 +#: libkpackagekit/KpkStrings.cpp:277 msgctxt "The role of the transaction, in past tense" msgid "Updated packages" msgstr "已更新套件" -#: libkpackagekit/KpkStrings.cpp:240 +#: libkpackagekit/KpkStrings.cpp:279 msgctxt "The role of the transaction, in past tense" msgid "Updated system" msgstr "已更新系統" -#: libkpackagekit/KpkStrings.cpp:242 +#: libkpackagekit/KpkStrings.cpp:281 msgctxt "The role of the transaction, in past tense" msgid "Canceled" msgstr "已取消" -#: libkpackagekit/KpkStrings.cpp:244 +#: libkpackagekit/KpkStrings.cpp:283 msgctxt "The role of the transaction, in past tense" msgid "Rolled back" msgstr "已回復" -#: libkpackagekit/KpkStrings.cpp:246 +#: libkpackagekit/KpkStrings.cpp:285 msgctxt "The role of the transaction, in past tense" msgid "Got list of repositories" msgstr "已取得套件庫清單" -#: libkpackagekit/KpkStrings.cpp:248 +#: libkpackagekit/KpkStrings.cpp:287 msgctxt "The role of the transaction, in past tense" msgid "Enabled repository" msgstr "已啟用套件庫" -#: libkpackagekit/KpkStrings.cpp:250 +#: libkpackagekit/KpkStrings.cpp:289 msgctxt "The role of the transaction, in past tense" msgid "Set repository data" msgstr "已設定套件庫資料" -#: libkpackagekit/KpkStrings.cpp:252 +#: libkpackagekit/KpkStrings.cpp:291 msgctxt "The role of the transaction, in past tense" msgid "Resolved" msgstr "已解析" -#: libkpackagekit/KpkStrings.cpp:254 +#: libkpackagekit/KpkStrings.cpp:293 msgctxt "The role of the transaction, in past tense" msgid "Got file list" msgstr "已取得檔案清單" -#: libkpackagekit/KpkStrings.cpp:256 +#: libkpackagekit/KpkStrings.cpp:295 msgctxt "The role of the transaction, in past tense" msgid "Got what provides" msgstr "已取得提供的資料" -#: libkpackagekit/KpkStrings.cpp:258 +#: libkpackagekit/KpkStrings.cpp:297 msgctxt "The role of the transaction, in past tense" msgid "Installed signature" msgstr "已安裝簽章" -#: libkpackagekit/KpkStrings.cpp:260 +#: libkpackagekit/KpkStrings.cpp:299 msgctxt "The role of the transaction, in past tense" msgid "Got package lists" msgstr "已取得套件清單" -#: libkpackagekit/KpkStrings.cpp:262 +#: libkpackagekit/KpkStrings.cpp:301 msgctxt "The role of the transaction, in past tense" msgid "Accepted EULA" msgstr "已接受終端使用者授權條款協議" -#: libkpackagekit/KpkStrings.cpp:264 +#: libkpackagekit/KpkStrings.cpp:303 msgctxt "The role of the transaction, in past tense" msgid "Downloaded packages" msgstr "已下載套件" -#: libkpackagekit/KpkStrings.cpp:266 +#: libkpackagekit/KpkStrings.cpp:305 msgctxt "The role of the transaction, in past tense" msgid "Got distribution upgrades" msgstr "已取得發行版升級" -#: libkpackagekit/KpkStrings.cpp:268 +#: libkpackagekit/KpkStrings.cpp:307 msgctxt "The role of the transaction, in past tense" msgid "Got categories" msgstr "已取得分類" -#: libkpackagekit/KpkStrings.cpp:270 +#: libkpackagekit/KpkStrings.cpp:309 msgctxt "The role of the transaction, in past tense" msgid "Got old transactions" msgstr "已取得之前的處理事項" -#: libkpackagekit/KpkStrings.cpp:272 +#: libkpackagekit/KpkStrings.cpp:311 #, fuzzy #| msgid "Failed to install file" #| msgid_plural "Failed to install files" @@ -1120,284 +1236,290 @@ msgid "Simulated the install of files" msgstr "安裝檔案失敗" -#: libkpackagekit/KpkStrings.cpp:274 +#: libkpackagekit/KpkStrings.cpp:313 #, fuzzy #| msgid "Mime type installer" msgctxt "The role of the transaction, in past tense" msgid "Simulated the install" msgstr "Mime 類型安裝器" -#: libkpackagekit/KpkStrings.cpp:276 +#: libkpackagekit/KpkStrings.cpp:315 #, fuzzy #| msgid "Single package remover" msgctxt "The role of the transaction, in past tense" msgid "Simulated the remove" msgstr "單一套件移除程式" -#: libkpackagekit/KpkStrings.cpp:278 +#: libkpackagekit/KpkStrings.cpp:317 #, fuzzy #| msgid "Failed to update system" msgctxt "The role of the transaction, in past tense" msgid "Simulated the update" msgstr "更新系統失敗" -#: libkpackagekit/KpkStrings.cpp:288 +#: libkpackagekit/KpkStrings.cpp:327 msgid "No network connection available" msgstr "沒有可用的網路連結" -#: libkpackagekit/KpkStrings.cpp:290 +#: libkpackagekit/KpkStrings.cpp:329 msgid "No package cache is available" msgstr "沒有可用的套件快取" -#: libkpackagekit/KpkStrings.cpp:292 +#: libkpackagekit/KpkStrings.cpp:331 msgid "Out of memory" msgstr "記憶體耗盡" -#: libkpackagekit/KpkStrings.cpp:294 +#: libkpackagekit/KpkStrings.cpp:333 msgid "Failed to create a thread" msgstr "建立執行緒失敗" -#: libkpackagekit/KpkStrings.cpp:296 +#: libkpackagekit/KpkStrings.cpp:335 msgid "Not supported by this backend" msgstr "此後端程式並不支援" -#: libkpackagekit/KpkStrings.cpp:298 +#: libkpackagekit/KpkStrings.cpp:337 msgid "An internal system error has occurred" msgstr "發生了系統內部錯誤" -#: libkpackagekit/KpkStrings.cpp:300 +#: libkpackagekit/KpkStrings.cpp:339 msgid "A security trust relationship is not present" msgstr "某個安全信任關係不存在" -#: libkpackagekit/KpkStrings.cpp:302 +#: libkpackagekit/KpkStrings.cpp:341 msgid "The package is not installed" msgstr "未安裝此套件" -#: libkpackagekit/KpkStrings.cpp:304 +#: libkpackagekit/KpkStrings.cpp:343 msgid "The package was not found" msgstr "尋找不到此套件" -#: libkpackagekit/KpkStrings.cpp:306 +#: libkpackagekit/KpkStrings.cpp:345 msgid "The package is already installed" msgstr "此套件已經安裝" -#: libkpackagekit/KpkStrings.cpp:308 +#: libkpackagekit/KpkStrings.cpp:347 msgid "The package download failed" msgstr "此套件下載失敗" -#: libkpackagekit/KpkStrings.cpp:310 +#: libkpackagekit/KpkStrings.cpp:349 msgid "The group was not found" msgstr "找不到此群組" -#: libkpackagekit/KpkStrings.cpp:312 +#: libkpackagekit/KpkStrings.cpp:351 msgid "The group list was invalid" msgstr "無效的群組清單" -#: libkpackagekit/KpkStrings.cpp:314 +#: libkpackagekit/KpkStrings.cpp:353 msgid "Dependency resolution failed" msgstr "相依性解決失敗" -#: libkpackagekit/KpkStrings.cpp:316 +#: libkpackagekit/KpkStrings.cpp:355 msgid "Search filter was invalid" msgstr "搜尋過濾無效" -#: libkpackagekit/KpkStrings.cpp:318 +#: libkpackagekit/KpkStrings.cpp:357 msgid "The package identifier was not well formed" msgstr "套件識別符設置不良" -#: libkpackagekit/KpkStrings.cpp:320 +#: libkpackagekit/KpkStrings.cpp:359 msgid "Transaction error" msgstr "執行事項錯誤" -#: libkpackagekit/KpkStrings.cpp:322 +#: libkpackagekit/KpkStrings.cpp:361 msgid "Repository name was not found" msgstr "找不到套件庫名稱" -#: libkpackagekit/KpkStrings.cpp:324 +#: libkpackagekit/KpkStrings.cpp:363 msgid "Could not remove a protected system package" msgstr "無法移除受保護的系統套件" -#: libkpackagekit/KpkStrings.cpp:326 +#: libkpackagekit/KpkStrings.cpp:365 msgid "The task was canceled" msgstr "此工作項目已取消" -#: libkpackagekit/KpkStrings.cpp:328 +#: libkpackagekit/KpkStrings.cpp:367 msgid "The task was forcibly canceled" msgstr "此工作項目已強迫取消" -#: libkpackagekit/KpkStrings.cpp:330 +#: libkpackagekit/KpkStrings.cpp:369 msgid "Reading the config file failed" msgstr "設定檔讀取失敗" -#: libkpackagekit/KpkStrings.cpp:332 +#: libkpackagekit/KpkStrings.cpp:371 msgid "The task cannot be cancelled" msgstr "此工作項目無法取消" -#: libkpackagekit/KpkStrings.cpp:334 +#: libkpackagekit/KpkStrings.cpp:373 msgid "Source packages cannot be installed" msgstr "無法安裝源碼套件" -#: libkpackagekit/KpkStrings.cpp:336 +#: libkpackagekit/KpkStrings.cpp:375 msgid "The license agreement failed" msgstr "授權條款協議失敗" -#: libkpackagekit/KpkStrings.cpp:338 +#: libkpackagekit/KpkStrings.cpp:377 msgid "Local file conflict between packages" msgstr "本地檔案在套件間產生衝突" -#: libkpackagekit/KpkStrings.cpp:340 +#: libkpackagekit/KpkStrings.cpp:379 msgid "Packages are not compatible" msgstr "套件不相容" -#: libkpackagekit/KpkStrings.cpp:342 +#: libkpackagekit/KpkStrings.cpp:381 #, fuzzy #| msgid "Problem connecting to a software source" -msgid "Problem connecting to a software orign" +msgid "Problem connecting to a software origin" msgstr "連接到套件來源發生問題" -#: libkpackagekit/KpkStrings.cpp:344 +#: libkpackagekit/KpkStrings.cpp:383 msgid "Failed to initialize" msgstr "初始化失敗" -#: libkpackagekit/KpkStrings.cpp:346 +#: libkpackagekit/KpkStrings.cpp:385 msgid "Failed to finalize" msgstr "無法結束" -#: libkpackagekit/KpkStrings.cpp:348 +#: libkpackagekit/KpkStrings.cpp:387 msgid "Cannot get lock" msgstr "無法取鎖" -#: libkpackagekit/KpkStrings.cpp:350 +#: libkpackagekit/KpkStrings.cpp:389 msgid "No packages to update" msgstr "沒有套件需要更新" -#: libkpackagekit/KpkStrings.cpp:352 +#: libkpackagekit/KpkStrings.cpp:391 msgid "Cannot write repository configuration" msgstr "無法寫入套件庫設定" -#: libkpackagekit/KpkStrings.cpp:354 +#: libkpackagekit/KpkStrings.cpp:393 msgid "Local install failed" msgstr "本地安裝失敗" -#: libkpackagekit/KpkStrings.cpp:356 +#: libkpackagekit/KpkStrings.cpp:395 msgid "Bad GPG signature" msgstr "不良的 GPG 簽章" -#: libkpackagekit/KpkStrings.cpp:358 +#: libkpackagekit/KpkStrings.cpp:397 msgid "Missing GPG signature" msgstr "遺失了 GPG 簽章" -#: libkpackagekit/KpkStrings.cpp:360 +#: libkpackagekit/KpkStrings.cpp:399 msgid "Repository configuration invalid" msgstr "無效的套件庫設定" -#: libkpackagekit/KpkStrings.cpp:362 +#: libkpackagekit/KpkStrings.cpp:401 msgid "Invalid package file" msgstr "無效的套件檔案" -#: libkpackagekit/KpkStrings.cpp:364 +#: libkpackagekit/KpkStrings.cpp:403 msgid "Package install blocked" msgstr "套件安裝受阻" -#: libkpackagekit/KpkStrings.cpp:366 +#: libkpackagekit/KpkStrings.cpp:405 msgid "Package is corrupt" msgstr "套件損毀" -#: libkpackagekit/KpkStrings.cpp:368 +#: libkpackagekit/KpkStrings.cpp:407 msgid "All packages are already installed" msgstr "已安裝所有套件" -#: libkpackagekit/KpkStrings.cpp:370 +#: libkpackagekit/KpkStrings.cpp:409 msgid "The specified file could not be found" msgstr "找不到指定的檔案" -#: libkpackagekit/KpkStrings.cpp:372 +#: libkpackagekit/KpkStrings.cpp:411 msgid "No more mirrors are available" msgstr "沒有其他可用的鏡像站" -#: libkpackagekit/KpkStrings.cpp:374 +#: libkpackagekit/KpkStrings.cpp:413 msgid "No distribution upgrade data is available" msgstr "沒有可用的發行版升級資料" -#: libkpackagekit/KpkStrings.cpp:376 +#: libkpackagekit/KpkStrings.cpp:415 msgid "Package is incompatible with this system" msgstr "套件與本系統不相容" -#: libkpackagekit/KpkStrings.cpp:378 +#: libkpackagekit/KpkStrings.cpp:417 msgid "No space is left on the disk" msgstr "磁碟空間不足" -#: libkpackagekit/KpkStrings.cpp:382 +#: libkpackagekit/KpkStrings.cpp:421 msgid "Authorization failed" msgstr "" -#: libkpackagekit/KpkStrings.cpp:384 +#: libkpackagekit/KpkStrings.cpp:423 #, fuzzy #| msgid "The package was not found" msgid "Update not found" msgstr "尋找不到此套件" -#: libkpackagekit/KpkStrings.cpp:386 -msgid "Cannot install from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:425 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot install from untrusted origin" +msgstr "在任何軟體來源內都找不到這些套件" -#: libkpackagekit/KpkStrings.cpp:388 -msgid "Cannot update from untrusted orign" -msgstr "" +#: libkpackagekit/KpkStrings.cpp:427 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Cannot update from untrusted origin" +msgstr "在任何軟體來源內都找不到這些套件" -#: libkpackagekit/KpkStrings.cpp:390 +#: libkpackagekit/KpkStrings.cpp:429 #, fuzzy #| msgctxt "The role of the transaction, in past tense" #| msgid "Got file list" msgid "Cannot get the file list" msgstr "已取得檔案清單" -#: libkpackagekit/KpkStrings.cpp:392 +#: libkpackagekit/KpkStrings.cpp:431 #, fuzzy #| msgid "An additional package is required:" #| msgid_plural "Additional packages are required:" msgid "Cannot get package requires" msgstr "需要額外的套件:" -#: libkpackagekit/KpkStrings.cpp:394 -msgid "Cannot disable orign" +#: libkpackagekit/KpkStrings.cpp:433 +msgid "Cannot disable origin" msgstr "" -#: libkpackagekit/KpkStrings.cpp:396 +#: libkpackagekit/KpkStrings.cpp:435 #, fuzzy #| msgid "The package download failed" msgid "The download failed" msgstr "此套件下載失敗" -#: libkpackagekit/KpkStrings.cpp:398 +#: libkpackagekit/KpkStrings.cpp:437 #, fuzzy #| msgid "Package file to install" msgid "Package failed to configure" msgstr "要安裝的套件檔案" -#: libkpackagekit/KpkStrings.cpp:400 +#: libkpackagekit/KpkStrings.cpp:439 #, fuzzy #| msgid "Package file to install" msgid "Package failed to build" msgstr "要安裝的套件檔案" -#: libkpackagekit/KpkStrings.cpp:402 +#: libkpackagekit/KpkStrings.cpp:441 #, fuzzy #| msgid "Package file to install" msgid "Package failed to install" msgstr "要安裝的套件檔案" -#: libkpackagekit/KpkStrings.cpp:404 +#: libkpackagekit/KpkStrings.cpp:443 #, fuzzy #| msgid "Package file to install" msgid "Package failed to be removed" msgstr "要安裝的套件檔案" -#: libkpackagekit/KpkStrings.cpp:406 +#: libkpackagekit/KpkStrings.cpp:445 msgid "Unknown error" msgstr "未知的錯誤" -#: libkpackagekit/KpkStrings.cpp:416 +#: libkpackagekit/KpkStrings.cpp:455 msgid "" "There is no network connection available.\n" "Please check your connection settings and try again" @@ -1405,7 +1527,7 @@ "沒有可用的網路連結。\n" "請檢查您的連結設定並且再試一次" -#: libkpackagekit/KpkStrings.cpp:419 +#: libkpackagekit/KpkStrings.cpp:458 msgid "" "The package list needs to be rebuilt.\n" "This should have been done by the backend automatically." @@ -1413,7 +1535,7 @@ "套件清單需要重建。\n" "這應該已經被後端程式自動處理完成。" -#: libkpackagekit/KpkStrings.cpp:422 +#: libkpackagekit/KpkStrings.cpp:461 msgid "" "The service that is responsible for handling user requests is out of " "memory.\n" @@ -1422,11 +1544,11 @@ "負責處理使用者要求的服務已記憶體耗盡。\n" "請關閉一些程式或是重新啟動您的電腦。" -#: libkpackagekit/KpkStrings.cpp:425 +#: libkpackagekit/KpkStrings.cpp:464 msgid "A thread could not be created to service the user request." msgstr "無法建立執行緒以服務使用者要求。" -#: libkpackagekit/KpkStrings.cpp:427 +#: libkpackagekit/KpkStrings.cpp:466 msgid "" "The action is not supported by this backend.\n" "Please report a bug as this should not have happened." @@ -1434,7 +1556,7 @@ "這個後端程式無法支援此動作。\n" "不應該發生這種狀況,請回報此錯誤。" -#: libkpackagekit/KpkStrings.cpp:430 +#: libkpackagekit/KpkStrings.cpp:469 msgid "" "A problem that we were not expecting has occurred.\n" "Please report this bug with the error description." @@ -1442,39 +1564,39 @@ "發生了我們無法預期的問題。\n" "請回報此問題並附上錯誤描述。" -#: libkpackagekit/KpkStrings.cpp:433 +#: libkpackagekit/KpkStrings.cpp:472 #, fuzzy #| msgid "" #| "A security trust relationship could not be made with the software " #| "source.\n" #| "Please check your software signature settings." msgid "" -"A security trust relationship could not be made with the software orign.\n" +"A security trust relationship could not be made with the software origin.\n" "Please check your software signature settings." msgstr "" "無法與此軟體來源建立安全信任關係。\n" "請檢查您的軟體簽章設定。" -#: libkpackagekit/KpkStrings.cpp:436 +#: libkpackagekit/KpkStrings.cpp:475 msgid "" "The package that is trying to be removed or updated is not already installed." msgstr "您正嘗試要移除或更新的套件並未安裝。" -#: libkpackagekit/KpkStrings.cpp:438 +#: libkpackagekit/KpkStrings.cpp:477 #, fuzzy #| msgid "" #| "The package that is being modified was not found on your system or in any " #| "software source." msgid "" "The package that is being modified was not found on your system or in any " -"software orign." +"software origin." msgstr "在您的系統上或是任何軟體來源內都找不到正要修改的套件" -#: libkpackagekit/KpkStrings.cpp:440 +#: libkpackagekit/KpkStrings.cpp:479 msgid "The package that is trying to be installed is already installed." msgstr "嘗試要安裝的套件已經安裝過了。" -#: libkpackagekit/KpkStrings.cpp:442 +#: libkpackagekit/KpkStrings.cpp:481 msgid "" "The package download failed.\n" "Please check your network connectivity." @@ -1482,7 +1604,7 @@ "套件下載失敗。\n" "請檢查您的網路連結。" -#: libkpackagekit/KpkStrings.cpp:445 +#: libkpackagekit/KpkStrings.cpp:484 msgid "" "The group type was not found.\n" "Please check your group list and try again." @@ -1490,7 +1612,7 @@ "找不到此群組種類。\n" "請檢查您的群組清單並重試一次。" -#: libkpackagekit/KpkStrings.cpp:448 +#: libkpackagekit/KpkStrings.cpp:487 #, fuzzy #| msgid "" #| "The group list could not be loaded.\n" @@ -1498,13 +1620,13 @@ #| "source error." msgid "" "The group list could not be loaded.\n" -"Refreshing your cache may help, although this is normally a software orign " +"Refreshing your cache may help, although this is normally a software origin " "error." msgstr "" "無法載入此群組清單。\n" "雖然這一般是軟體來源的錯誤,但是重新載入快取可能會有所幫助。" -#: libkpackagekit/KpkStrings.cpp:452 +#: libkpackagekit/KpkStrings.cpp:491 msgid "" "A package dependency could not be found.\n" "More information is available in the detailed report." @@ -1512,11 +1634,11 @@ "找不到其中一個套件相依性。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:455 +#: libkpackagekit/KpkStrings.cpp:494 msgid "The search filter was not correctly formed." msgstr "搜尋過濾設置不正確。" -#: libkpackagekit/KpkStrings.cpp:457 +#: libkpackagekit/KpkStrings.cpp:496 msgid "" "The package identifier was not well formed when sent to the system daemon.\n" "This normally indicates an internal bug and should be reported." @@ -1524,7 +1646,7 @@ "當套件識別符傳送至系統守護程式時發現設置不良。\n" "這一般可能是程式內部錯誤並且應該回報。" -#: libkpackagekit/KpkStrings.cpp:460 +#: libkpackagekit/KpkStrings.cpp:499 msgid "" "An error occurred while running the transaction.\n" "More information is available in the detailed report." @@ -1532,27 +1654,27 @@ "正當執行處理事項時發生了錯誤。\n" "在這詳細的報告中有更多資訊。 " -#: libkpackagekit/KpkStrings.cpp:463 +#: libkpackagekit/KpkStrings.cpp:502 #, fuzzy #| msgid "" #| "The remote software source name was not found.\n" #| "You may need to enable an item in Software Sources." msgid "" -"The remote software orign name was not found.\n" -"You may need to enable an item in Software Origns." +"The remote software origin name was not found.\n" +"You may need to enable an item in Software Origins." msgstr "" "找不到遠端的軟體來源名稱。\n" "您可能需要啟用軟體來源內的某個項目。" -#: libkpackagekit/KpkStrings.cpp:466 +#: libkpackagekit/KpkStrings.cpp:505 msgid "Removing a protected system package is not allowed." msgstr "不允許移除受保護的系統套件。" -#: libkpackagekit/KpkStrings.cpp:468 +#: libkpackagekit/KpkStrings.cpp:507 msgid "The task was canceled successfully and no packages were changed." msgstr "此工作項目已成功取消,沒有任何套件被變更。" -#: libkpackagekit/KpkStrings.cpp:470 +#: libkpackagekit/KpkStrings.cpp:509 msgid "" "The task was canceled successfully and no packages were changed.\n" "The backend did not exit cleanly." @@ -1560,7 +1682,7 @@ "工作事項已成功取消並且沒有套件被變更。\n" "但後端程式沒有乾淨地關閉。" -#: libkpackagekit/KpkStrings.cpp:473 +#: libkpackagekit/KpkStrings.cpp:512 msgid "" "The native package configuration file could not be opened.\n" "Please make sure your system's configuration is valid." @@ -1568,11 +1690,11 @@ "無法開啟原生套件設定檔。\n" "請確認您系統的設定是否有效。" -#: libkpackagekit/KpkStrings.cpp:476 +#: libkpackagekit/KpkStrings.cpp:515 msgid "The task is not safe to be cancelled at this time." msgstr "在此刻取消工作事項並不安全。" -#: libkpackagekit/KpkStrings.cpp:478 +#: libkpackagekit/KpkStrings.cpp:517 msgid "" "Source packages are not normally installed this way.\n" "Check the extension of the file you are trying to install." @@ -1580,7 +1702,7 @@ "源碼套件一般不是這樣安裝的。\n" "請檢查您嘗試安裝的檔案其延伸檔名。" -#: libkpackagekit/KpkStrings.cpp:481 +#: libkpackagekit/KpkStrings.cpp:520 msgid "" "The license agreement was not agreed to.\n" "To use this software you have to accept the license." @@ -1588,44 +1710,44 @@ "授權條款協議不被同意。\n" "您必須接受此授權條款以使用此軟體。" -#: libkpackagekit/KpkStrings.cpp:484 +#: libkpackagekit/KpkStrings.cpp:523 #, fuzzy #| msgid "" #| "Two packages provide the same file.\n" #| "This is usually due to mixing packages for different software sources." msgid "" "Two packages provide the same file.\n" -"This is usually due to mixing packages for different software origns." +"This is usually due to mixing packages for different software origins." msgstr "" "兩個套件提供了相同的檔案。\n" "這通常是因為混用了不同軟體來源提供的套件。" -#: libkpackagekit/KpkStrings.cpp:487 +#: libkpackagekit/KpkStrings.cpp:526 #, fuzzy #| msgid "" #| "Multiple packages exist that are not compatible with each other.\n" #| "This is usually due to mixing packages from different software sources." msgid "" "Multiple packages exist that are not compatible with each other.\n" -"This is usually due to mixing packages from different software origns." +"This is usually due to mixing packages from different software origins." msgstr "" "有多個彼此不相容的套件存在。\n" "這通常是因為混用了不同軟體來源提供的套件。" -#: libkpackagekit/KpkStrings.cpp:490 +#: libkpackagekit/KpkStrings.cpp:529 #, fuzzy #| msgid "" #| "There was a (possibly temporary) problem connecting to a software " #| "source.\n" #| "Please check the detailed error for further details." msgid "" -"There was a (possibly temporary) problem connecting to a software origns.\n" +"There was a (possibly temporary) problem connecting to a software origins.\n" "Please check the detailed error for further details." msgstr "" "連結到軟體來源時發生(可能是暫時性的)錯誤。\n" "請檢查此詳細的錯誤敘述以取得更多細節。" -#: libkpackagekit/KpkStrings.cpp:493 +#: libkpackagekit/KpkStrings.cpp:532 msgid "" "Failed to initialize packaging backend.\n" "This may occur if other packaging tools are being used simultaneously." @@ -1633,7 +1755,7 @@ "初始化套件包裝後端程式失敗。\n" "這可能起因於其他的套件包裝工具正同時間被使用著。" -#: libkpackagekit/KpkStrings.cpp:496 +#: libkpackagekit/KpkStrings.cpp:535 msgid "" "Failed to close down the backend instance.\n" "This error can normally be ignored." @@ -1641,7 +1763,7 @@ "無法立即關閉後端程式。\n" "一般來說可以忽略這個錯誤。" -#: libkpackagekit/KpkStrings.cpp:499 +#: libkpackagekit/KpkStrings.cpp:538 msgid "" "Cannot get the exclusive lock on the packaging backend.\n" "Please close any other legacy packaging tools that may be open." @@ -1649,15 +1771,15 @@ "無法在套件包裝後端程式上取得獨佔性的鎖。\n" "請關閉任何其他可能開啟卻仍在使用的套件包裝工具。" -#: libkpackagekit/KpkStrings.cpp:502 +#: libkpackagekit/KpkStrings.cpp:541 msgid "None of the selected packages could be updated." msgstr "所選的套件都不能更新。" -#: libkpackagekit/KpkStrings.cpp:504 +#: libkpackagekit/KpkStrings.cpp:543 msgid "The repository configuration could not be modified." msgstr "無法修改套件庫設定。" -#: libkpackagekit/KpkStrings.cpp:506 +#: libkpackagekit/KpkStrings.cpp:545 msgid "" "Installing the local file failed.\n" "More information is available in the detailed report." @@ -1665,11 +1787,11 @@ "安裝本地檔案失敗。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:509 +#: libkpackagekit/KpkStrings.cpp:548 msgid "The package signature could not be verified." msgstr "無法檢查此套件簽章。" -#: libkpackagekit/KpkStrings.cpp:511 +#: libkpackagekit/KpkStrings.cpp:550 msgid "" "The package signature was missing and this package is untrusted.\n" "This package was not signed with a GPG key when created." @@ -1677,11 +1799,11 @@ "套件簽章遺失並且此套件不被信任。\n" "此套件在建立時沒有用 GPG 金鑰簽署。" -#: libkpackagekit/KpkStrings.cpp:514 +#: libkpackagekit/KpkStrings.cpp:553 msgid "Repository configuration was invalid and could not be read." msgstr "套件庫設定無效並且無法讀取。" -#: libkpackagekit/KpkStrings.cpp:516 +#: libkpackagekit/KpkStrings.cpp:555 msgid "" "The package you are attempting to install is not valid.\n" "The package file could be corrupt, or not a proper package." @@ -1689,23 +1811,23 @@ "您企圖要安裝的套件是無效的。\n" "這個套件檔案可能損毀,或不是正確的套件。" -#: libkpackagekit/KpkStrings.cpp:519 +#: libkpackagekit/KpkStrings.cpp:558 msgid "" "Installation of this package was prevented by your packaging system's " "configuration." msgstr "您套件包裝系統的設定阻止此套件的安裝。" -#: libkpackagekit/KpkStrings.cpp:521 +#: libkpackagekit/KpkStrings.cpp:560 msgid "" "The package that was downloaded is corrupt and needs to be downloaded again." msgstr "已下載的套件損毀並且需要重新下載。" -#: libkpackagekit/KpkStrings.cpp:523 +#: libkpackagekit/KpkStrings.cpp:562 msgid "" "All of the packages selected for install are already installed on the system." msgstr "所有選取的要安裝的套件在此系統上已經安裝好了。" -#: libkpackagekit/KpkStrings.cpp:525 +#: libkpackagekit/KpkStrings.cpp:564 msgid "" "The specified file could not be found on the system.\n" "Check that the file still exists and has not been deleted." @@ -1713,20 +1835,20 @@ "無法在此系統上找到所指定的檔案。\n" "請檢查此檔案是否仍然存在並且尚未被刪除。" -#: libkpackagekit/KpkStrings.cpp:528 +#: libkpackagekit/KpkStrings.cpp:567 #, fuzzy #| msgid "" #| "Required data could not be found on any of the configured software " #| "sources.\n" #| "There were no more download mirrors that could be tried." msgid "" -"Required data could not be found on any of the configured software origns.\n" +"Required data could not be found on any of the configured software origins.\n" "There were no more download mirrors that could be tried." msgstr "" "無法在任何設定好的軟體來源中找到索求的資料。\n" "沒有其他的下載鏡像站可供嘗試。" -#: libkpackagekit/KpkStrings.cpp:531 +#: libkpackagekit/KpkStrings.cpp:570 #, fuzzy #| msgid "" #| "Required upgrade data could not be found in any of the configured " @@ -1734,18 +1856,18 @@ #| "The list of distribution upgrades will be unavailable." msgid "" "Required upgrade data could not be found in any of the configured software " -"origns.\n" +"origins.\n" "The list of distribution upgrades will be unavailable." msgstr "" "在任何設置的軟體來源中皆找不到索求的升級資料。\n" "發行版升級清單將不可用。" -#: libkpackagekit/KpkStrings.cpp:534 +#: libkpackagekit/KpkStrings.cpp:573 msgid "" "The package that is trying to be installed is incompatible with this system." msgstr "正嘗試要安裝的套件與此系統不相容。" -#: libkpackagekit/KpkStrings.cpp:536 +#: libkpackagekit/KpkStrings.cpp:575 msgid "" "There is insufficient space on the device.\n" "Free some space on the system disk to perform this operation." @@ -1753,55 +1875,55 @@ "在這個裝置上沒有足夠的空間了。\n" "請釋放一些系統磁碟上的空間來執行此操作。" -#: libkpackagekit/KpkStrings.cpp:539 +#: libkpackagekit/KpkStrings.cpp:578 msgid "Additional media is required to complete the transaction." msgstr "要完成這個處理事項需要額外的媒體。" -#: libkpackagekit/KpkStrings.cpp:541 +#: libkpackagekit/KpkStrings.cpp:580 msgid "" "You have failed to provide correct authentication.\n" "Please check any passwords or account settings." msgstr "" -#: libkpackagekit/KpkStrings.cpp:544 +#: libkpackagekit/KpkStrings.cpp:583 msgid "" "The specified update could not be found.\n" "It could have already been installed or no longer available on the remote " "server." msgstr "" -#: libkpackagekit/KpkStrings.cpp:547 +#: libkpackagekit/KpkStrings.cpp:586 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be installed from untrusted orign." +msgid "The package could not be installed from untrusted origin." msgstr "在任何軟體來源內都找不到這些套件" -#: libkpackagekit/KpkStrings.cpp:549 +#: libkpackagekit/KpkStrings.cpp:588 #, fuzzy #| msgid "The package could not be found in any software source" #| msgid_plural "The packages could not be found in any software source" -msgid "The package could not be updated from untrusted orign." +msgid "The package could not be updated from untrusted origin." msgstr "在任何軟體來源內都找不到這些套件" -#: libkpackagekit/KpkStrings.cpp:551 +#: libkpackagekit/KpkStrings.cpp:590 #, fuzzy #| msgid "The file could not be found in any packages" #| msgid_plural "The files could not be found in any packages" msgid "The file list is not available for this package." msgstr "在任何套件內都找不到這些檔案" -#: libkpackagekit/KpkStrings.cpp:553 +#: libkpackagekit/KpkStrings.cpp:592 msgid "The information about what requires this package could not be obtained." msgstr "" -#: libkpackagekit/KpkStrings.cpp:555 +#: libkpackagekit/KpkStrings.cpp:594 #, fuzzy #| msgid "The specified file could not be found" -msgid "The specified software orign could not be disabled." +msgid "The specified software origin could not be disabled." msgstr "找不到指定的檔案" -#: libkpackagekit/KpkStrings.cpp:557 +#: libkpackagekit/KpkStrings.cpp:596 #, fuzzy #| msgid "" #| "A package dependency could not be found.\n" @@ -1813,7 +1935,7 @@ "找不到其中一個套件相依性。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:560 +#: libkpackagekit/KpkStrings.cpp:599 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1825,7 +1947,7 @@ "安裝本地檔案失敗。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:563 +#: libkpackagekit/KpkStrings.cpp:602 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1837,7 +1959,7 @@ "安裝本地檔案失敗。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:566 +#: libkpackagekit/KpkStrings.cpp:605 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1849,7 +1971,7 @@ "安裝本地檔案失敗。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:569 +#: libkpackagekit/KpkStrings.cpp:608 #, fuzzy #| msgid "" #| "Installing the local file failed.\n" @@ -1861,7 +1983,7 @@ "安裝本地檔案失敗。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:572 +#: libkpackagekit/KpkStrings.cpp:611 msgid "" "Unknown error, please report a bug.\n" "More information is available in the detailed report." @@ -1869,657 +1991,815 @@ "未知的錯誤,請回報錯誤。\n" "在這詳細的報告中有更多資訊。" -#: libkpackagekit/KpkStrings.cpp:583 +#: libkpackagekit/KpkStrings.cpp:622 msgctxt "The group type" msgid "Accessibility" msgstr "無障礙環境" -#: libkpackagekit/KpkStrings.cpp:585 +#: libkpackagekit/KpkStrings.cpp:624 msgctxt "The group type" msgid "Accessories" msgstr "附屬應用程式" -#: libkpackagekit/KpkStrings.cpp:587 +#: libkpackagekit/KpkStrings.cpp:626 msgctxt "The group type" msgid "Education" msgstr "教育" -#: libkpackagekit/KpkStrings.cpp:589 +#: libkpackagekit/KpkStrings.cpp:628 msgctxt "The group type" msgid "Games" msgstr "遊戲" -#: libkpackagekit/KpkStrings.cpp:591 +#: libkpackagekit/KpkStrings.cpp:630 msgctxt "The group type" msgid "Graphics" msgstr "圖形" -#: libkpackagekit/KpkStrings.cpp:593 +#: libkpackagekit/KpkStrings.cpp:632 msgctxt "The group type" msgid "Internet" msgstr "網際網路" -#: libkpackagekit/KpkStrings.cpp:595 +#: libkpackagekit/KpkStrings.cpp:634 msgctxt "The group type" msgid "Office" msgstr "辦公" -#: libkpackagekit/KpkStrings.cpp:597 +#: libkpackagekit/KpkStrings.cpp:636 msgctxt "The group type" msgid "Other" msgstr "其他" -#: libkpackagekit/KpkStrings.cpp:599 +#: libkpackagekit/KpkStrings.cpp:638 msgctxt "The group type" msgid "Development" msgstr "開發" -#: libkpackagekit/KpkStrings.cpp:601 +#: libkpackagekit/KpkStrings.cpp:640 msgctxt "The group type" msgid "Multimedia" msgstr "多媒體" -#: libkpackagekit/KpkStrings.cpp:603 +#: libkpackagekit/KpkStrings.cpp:642 msgctxt "The group type" msgid "System" msgstr "系統" -#: libkpackagekit/KpkStrings.cpp:605 +#: libkpackagekit/KpkStrings.cpp:644 msgctxt "The group type" msgid "GNOME desktop" msgstr "GNOME 桌面" -#: libkpackagekit/KpkStrings.cpp:607 +#: libkpackagekit/KpkStrings.cpp:646 msgctxt "The group type" msgid "KDE desktop" msgstr "KDE 桌面" -#: libkpackagekit/KpkStrings.cpp:609 +#: libkpackagekit/KpkStrings.cpp:648 msgctxt "The group type" msgid "XFCE desktop" msgstr "XFCE 桌面" -#: libkpackagekit/KpkStrings.cpp:611 +#: libkpackagekit/KpkStrings.cpp:650 msgctxt "The group type" msgid "Other desktops" msgstr "其他桌面" -#: libkpackagekit/KpkStrings.cpp:613 +#: libkpackagekit/KpkStrings.cpp:652 msgctxt "The group type" msgid "Publishing" msgstr "出版" -#: libkpackagekit/KpkStrings.cpp:615 +#: libkpackagekit/KpkStrings.cpp:654 msgctxt "The group type" msgid "Servers" msgstr "伺服器" -#: libkpackagekit/KpkStrings.cpp:617 +#: libkpackagekit/KpkStrings.cpp:656 msgctxt "The group type" msgid "Fonts" msgstr "字型" -#: libkpackagekit/KpkStrings.cpp:619 +#: libkpackagekit/KpkStrings.cpp:658 msgctxt "The group type" msgid "Admin tools" msgstr "管理工具" -#: libkpackagekit/KpkStrings.cpp:621 +#: libkpackagekit/KpkStrings.cpp:660 msgctxt "The group type" msgid "Legacy" msgstr "舊套件" -#: libkpackagekit/KpkStrings.cpp:623 +#: libkpackagekit/KpkStrings.cpp:662 msgctxt "The group type" msgid "Localization" msgstr "本地化" -#: libkpackagekit/KpkStrings.cpp:625 +#: libkpackagekit/KpkStrings.cpp:664 msgctxt "The group type" msgid "Virtualization" msgstr "虛擬化" -#: libkpackagekit/KpkStrings.cpp:627 +#: libkpackagekit/KpkStrings.cpp:666 msgctxt "The group type" msgid "Security" msgstr "安全" -#: libkpackagekit/KpkStrings.cpp:629 +#: libkpackagekit/KpkStrings.cpp:668 msgctxt "The group type" msgid "Power management" msgstr "電源管理" -#: libkpackagekit/KpkStrings.cpp:631 +#: libkpackagekit/KpkStrings.cpp:670 msgctxt "The group type" msgid "Communication" msgstr "通訊" -#: libkpackagekit/KpkStrings.cpp:633 +#: libkpackagekit/KpkStrings.cpp:672 msgctxt "The group type" msgid "Network" msgstr "網路" -#: libkpackagekit/KpkStrings.cpp:635 +#: libkpackagekit/KpkStrings.cpp:674 msgctxt "The group type" msgid "Maps" msgstr "地圖" -#: libkpackagekit/KpkStrings.cpp:637 +#: libkpackagekit/KpkStrings.cpp:676 msgctxt "The group type" msgid "Software sources" msgstr "軟體源碼" -#: libkpackagekit/KpkStrings.cpp:639 +#: libkpackagekit/KpkStrings.cpp:678 msgctxt "The group type" msgid "Science" msgstr "科學" -#: libkpackagekit/KpkStrings.cpp:641 +#: libkpackagekit/KpkStrings.cpp:680 msgctxt "The group type" msgid "Documentation" msgstr "文件" -#: libkpackagekit/KpkStrings.cpp:643 +#: libkpackagekit/KpkStrings.cpp:682 msgctxt "The group type" msgid "Electronics" msgstr "電子學" -#: libkpackagekit/KpkStrings.cpp:645 +#: libkpackagekit/KpkStrings.cpp:684 msgctxt "The group type" msgid "Package collections" msgstr "套件合集" -#: libkpackagekit/KpkStrings.cpp:647 +#: libkpackagekit/KpkStrings.cpp:686 msgctxt "The group type" msgid "Vendor" msgstr "廠商" -#: libkpackagekit/KpkStrings.cpp:649 +#: libkpackagekit/KpkStrings.cpp:688 msgctxt "The group type" msgid "Newest packages" msgstr "最新的套件" -#: libkpackagekit/KpkStrings.cpp:651 +#: libkpackagekit/KpkStrings.cpp:690 msgctxt "The group type" msgid "Unknown group" msgstr "未知的群組" -#: libkpackagekit/KpkStrings.cpp:661 +#: libkpackagekit/KpkStrings.cpp:700 msgctxt "The type of update" msgid "Trivial update" msgstr "小更新" -#: libkpackagekit/KpkStrings.cpp:663 +#: libkpackagekit/KpkStrings.cpp:702 msgctxt "The type of update" msgid "Normal update" msgstr "一般更新" -#: libkpackagekit/KpkStrings.cpp:665 +#: libkpackagekit/KpkStrings.cpp:704 msgctxt "The type of update" msgid "Important update" msgstr "重大更新" -#: libkpackagekit/KpkStrings.cpp:667 +#: libkpackagekit/KpkStrings.cpp:706 msgctxt "The type of update" msgid "Security update" msgstr "安全更新" -#: libkpackagekit/KpkStrings.cpp:669 +#: libkpackagekit/KpkStrings.cpp:708 msgctxt "The type of update" msgid "Bug fix update" msgstr "臭蟲修正更新" -#: libkpackagekit/KpkStrings.cpp:671 +#: libkpackagekit/KpkStrings.cpp:710 msgctxt "The type of update" msgid "Enhancement update" msgstr "增強性更新" -#: libkpackagekit/KpkStrings.cpp:673 +#: libkpackagekit/KpkStrings.cpp:712 msgctxt "The type of update" msgid "Blocked update" msgstr "被封鎖的更新" -#: libkpackagekit/KpkStrings.cpp:676 +#: libkpackagekit/KpkStrings.cpp:715 msgctxt "The type of update" msgid "Installed" msgstr "已安裝" -#: libkpackagekit/KpkStrings.cpp:679 +#: libkpackagekit/KpkStrings.cpp:718 msgctxt "The type of update" msgid "Available" msgstr "可用" -#: libkpackagekit/KpkStrings.cpp:681 +#: libkpackagekit/KpkStrings.cpp:720 msgctxt "The type of update" msgid "Unknown update" msgstr "未知類型的更新" -#: libkpackagekit/KpkStrings.cpp:692 +#: libkpackagekit/KpkStrings.cpp:731 #, kde-format msgid "1 trivial update" msgid_plural "%1 trivial updates" msgstr[0] "%1 個小更新" -#: libkpackagekit/KpkStrings.cpp:694 +#: libkpackagekit/KpkStrings.cpp:733 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update" msgid_plural "%1 updates" msgstr[0] "%1 個更新" -#: libkpackagekit/KpkStrings.cpp:696 +#: libkpackagekit/KpkStrings.cpp:735 #, kde-format msgid "1 important update" msgid_plural "%1 important updates" msgstr[0] "%1 個重大更新" -#: libkpackagekit/KpkStrings.cpp:698 +#: libkpackagekit/KpkStrings.cpp:737 #, kde-format msgid "1 security update" msgid_plural "%1 security updates" msgstr[0] "%1 個安全性更新" -#: libkpackagekit/KpkStrings.cpp:700 +#: libkpackagekit/KpkStrings.cpp:739 #, kde-format msgid "1 bug fix update" msgid_plural "%1 bug fix updates" msgstr[0] "%1 個錯誤修正更新" -#: libkpackagekit/KpkStrings.cpp:702 +#: libkpackagekit/KpkStrings.cpp:741 #, kde-format msgid "1 enhancement update" msgid_plural "%1 enhancement updates" msgstr[0] "%1 個加強性更新" -#: libkpackagekit/KpkStrings.cpp:704 +#: libkpackagekit/KpkStrings.cpp:743 #, kde-format msgid "1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 個被封鎖的更新" -#: libkpackagekit/KpkStrings.cpp:706 +#: libkpackagekit/KpkStrings.cpp:745 #, kde-format msgid "1 installed package" msgid_plural "%1 installed packages" msgstr[0] "%1 個已安裝套件" -#: libkpackagekit/KpkStrings.cpp:708 +#: libkpackagekit/KpkStrings.cpp:747 #, kde-format msgid "1 available package" msgid_plural "%1 available packages" msgstr[0] "%1 個可用的套件" -#: libkpackagekit/KpkStrings.cpp:711 libkpackagekit/KpkStrings.cpp:741 +#: libkpackagekit/KpkStrings.cpp:750 libkpackagekit/KpkStrings.cpp:780 #, kde-format msgid "1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 個未知的更新" -#: libkpackagekit/KpkStrings.cpp:720 +#: libkpackagekit/KpkStrings.cpp:759 #, kde-format msgid "1 trivial update selected" msgid_plural "%1 trivial updates selected" msgstr[0] "已選取 %1 個小更新" -#: libkpackagekit/KpkStrings.cpp:723 +#: libkpackagekit/KpkStrings.cpp:762 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "1 update selected" msgid_plural "%1 updates selected" msgstr[0] "已選取 %1 個更新" -#: libkpackagekit/KpkStrings.cpp:726 +#: libkpackagekit/KpkStrings.cpp:765 #, kde-format msgid "1 important update selected" msgid_plural "%1 important updates selected" msgstr[0] "已選取 %1 個重大更新" -#: libkpackagekit/KpkStrings.cpp:728 +#: libkpackagekit/KpkStrings.cpp:767 #, kde-format msgid "1 security update selected" msgid_plural "%1 security updates selected" msgstr[0] "已選取 %1 個安全更新" -#: libkpackagekit/KpkStrings.cpp:730 +#: libkpackagekit/KpkStrings.cpp:769 #, kde-format msgid "1 bug fix update selected" msgid_plural "%1 bug fix updates selected" msgstr[0] "已選取 %1 個錯誤修正更新" -#: libkpackagekit/KpkStrings.cpp:732 +#: libkpackagekit/KpkStrings.cpp:771 #, kde-format msgid "1 enhancement update selected" msgid_plural "%1 enhancement updates selected" msgstr[0] "已選取 %1 個加強性更新" -#: libkpackagekit/KpkStrings.cpp:734 +#: libkpackagekit/KpkStrings.cpp:773 #, kde-format msgid "1 installed package selected to be removed" msgid_plural "%1 installed packages selected to be removed" msgstr[0] "已選取 %1 個已安裝套件,準備移除" -#: libkpackagekit/KpkStrings.cpp:737 +#: libkpackagekit/KpkStrings.cpp:776 #, kde-format msgid "1 available package selected to be installed" msgid_plural "%1 available packages selected to be installed" msgstr[0] "已選取 %1 個可用的套件,準備安裝" -#: libkpackagekit/KpkStrings.cpp:748 +#: libkpackagekit/KpkStrings.cpp:787 #, kde-format msgid "%1 trivial update" msgid_plural "%1 trivial updates, %2 selected" msgstr[0] "%1 個小更新,%2 個已選取 " -#: libkpackagekit/KpkStrings.cpp:751 +#: libkpackagekit/KpkStrings.cpp:790 #, kde-format msgctxt "Type of update, in the case it's just an update" msgid "%1 update" msgid_plural "%1 updates, %2 selected" msgstr[0] "%1 個更新,%2 個已選取" -#: libkpackagekit/KpkStrings.cpp:753 +#: libkpackagekit/KpkStrings.cpp:792 #, kde-format msgid "%1 important update" msgid_plural "%1 important updates, %2 selected" msgstr[0] "%1 個重大更新,%2 個已選取" -#: libkpackagekit/KpkStrings.cpp:755 +#: libkpackagekit/KpkStrings.cpp:794 #, kde-format msgid "%1 security update" msgid_plural "%1 security updates, %2 selected" msgstr[0] "%1 個安全更新,%2 個已選取" -#: libkpackagekit/KpkStrings.cpp:757 +#: libkpackagekit/KpkStrings.cpp:796 #, kde-format msgid "%1 bug fix update" msgid_plural "%1 bug fix updates, %2 selected" msgstr[0] "" -#: libkpackagekit/KpkStrings.cpp:759 +#: libkpackagekit/KpkStrings.cpp:798 #, kde-format msgid "%1 enhancement update" msgid_plural "%1 enhancement updates, %2 selected" msgstr[0] "%1 個增強性更新,%2 個已選取 " -#: libkpackagekit/KpkStrings.cpp:762 +#: libkpackagekit/KpkStrings.cpp:801 #, kde-format msgid "%1 blocked update" msgid_plural "%1 blocked updates" msgstr[0] "%1 個被封鎖的更新" -#: libkpackagekit/KpkStrings.cpp:764 +#: libkpackagekit/KpkStrings.cpp:803 #, kde-format msgid "%1 installed package" msgid_plural "%1 installed packages, %2 selected to be removed" msgstr[0] "%1 個已安裝套件,%2 個已選取將被移除" -#: libkpackagekit/KpkStrings.cpp:766 +#: libkpackagekit/KpkStrings.cpp:805 #, kde-format msgid "%1 available package" msgid_plural "%1 available packages, %2 selected to be installed" msgstr[0] "%1 個可用套件,%2 個已選取將被安裝" -#: libkpackagekit/KpkStrings.cpp:769 +#: libkpackagekit/KpkStrings.cpp:808 #, kde-format msgid "%1 unknown update" msgid_plural "%1 unknown updates" msgstr[0] "%1 個未知類型的更新" -#: libkpackagekit/KpkStrings.cpp:778 +#: libkpackagekit/KpkStrings.cpp:817 msgid "No restart is necessary" msgstr "無需重新開機" -#: libkpackagekit/KpkStrings.cpp:780 +#: libkpackagekit/KpkStrings.cpp:819 msgid "You will be required to restart this application" msgstr "您必須重新啟動此應用程式" -#: libkpackagekit/KpkStrings.cpp:782 +#: libkpackagekit/KpkStrings.cpp:821 msgid "You will be required to log out and back in" msgstr "您將需要登出並重新登入" -#: libkpackagekit/KpkStrings.cpp:784 +#: libkpackagekit/KpkStrings.cpp:823 msgid "A restart will be required" msgstr "需要重新開機" -#: libkpackagekit/KpkStrings.cpp:786 +#: libkpackagekit/KpkStrings.cpp:825 #, fuzzy #| msgid "You will be required to log out and back in" msgid "You will be required to log out and back in due to a security update." msgstr "您將需要登出並重新登入" -#: libkpackagekit/KpkStrings.cpp:788 +#: libkpackagekit/KpkStrings.cpp:827 #, fuzzy #| msgid "A restart will be required" msgid "A restart will be required due to a security update." msgstr "需要重新開機" -#: libkpackagekit/KpkStrings.cpp:801 +#: libkpackagekit/KpkStrings.cpp:840 msgid "No restart is required" msgstr "不需要重新開機" -#: libkpackagekit/KpkStrings.cpp:803 +#: libkpackagekit/KpkStrings.cpp:842 msgid "A restart is required" msgstr "需要重新開機" -#: libkpackagekit/KpkStrings.cpp:805 +#: libkpackagekit/KpkStrings.cpp:844 msgid "You need to log out and log back in" msgstr "您必須登出並重新登入" -#: libkpackagekit/KpkStrings.cpp:807 +#: libkpackagekit/KpkStrings.cpp:846 msgid "You need to restart the application" msgstr "您需要重新啟動這個應用程式" -#: libkpackagekit/KpkStrings.cpp:809 +#: libkpackagekit/KpkStrings.cpp:848 #, fuzzy #| msgid "You need to log out and log back in" msgid "You need to log out and log back in to remain secure." msgstr "您必須登出並重新登入" -#: libkpackagekit/KpkStrings.cpp:811 +#: libkpackagekit/KpkStrings.cpp:850 #, fuzzy #| msgid "A restart is required" msgid "A restart is required to remain secure." msgstr "需要重新開機" -#: libkpackagekit/KpkStrings.cpp:824 +#: libkpackagekit/KpkStrings.cpp:863 msgid "Stable" msgstr "穩定版" -#: libkpackagekit/KpkStrings.cpp:826 +#: libkpackagekit/KpkStrings.cpp:865 msgid "Unstable" msgstr "不穩定版" -#: libkpackagekit/KpkStrings.cpp:828 +#: libkpackagekit/KpkStrings.cpp:867 msgid "Testing" msgstr "測試版" -#: libkpackagekit/KpkStrings.cpp:841 +#: libkpackagekit/KpkStrings.cpp:880 #, kde-format msgid "Please insert the CD labeled '%1', and press continue." msgstr "請放入標籤為 '%1' 的光碟,並按下繼續。" -#: libkpackagekit/KpkStrings.cpp:843 +#: libkpackagekit/KpkStrings.cpp:882 #, kde-format msgid "Please insert the DVD labeled '%1', and press continue." msgstr "請放入標籤為 '%1' 的 DVD,並按下繼續。" -#: libkpackagekit/KpkStrings.cpp:845 +#: libkpackagekit/KpkStrings.cpp:884 #, kde-format msgid "Please insert the disc labeled '%1', and press continue." msgstr "請插入標籤為 '%1' 的光碟,並按下繼續。" -#: libkpackagekit/KpkStrings.cpp:847 libkpackagekit/KpkStrings.cpp:850 +#: libkpackagekit/KpkStrings.cpp:886 libkpackagekit/KpkStrings.cpp:889 #, kde-format msgid "Please insert the medium labeled '%1', and press continue." msgstr "請插入標籤為 '%1' 的媒體,並按下繼續。" -#: libkpackagekit/KpkStrings.cpp:857 +#: libkpackagekit/KpkStrings.cpp:896 msgid "A mirror is possibly broken" msgstr "某個鏡像站可能壞了" -#: libkpackagekit/KpkStrings.cpp:859 +#: libkpackagekit/KpkStrings.cpp:898 msgid "The connection was refused" msgstr "連線被拒" -#: libkpackagekit/KpkStrings.cpp:861 +#: libkpackagekit/KpkStrings.cpp:900 msgid "The parameter was invalid" msgstr "參數無效" -#: libkpackagekit/KpkStrings.cpp:863 +#: libkpackagekit/KpkStrings.cpp:902 msgid "The priority was invalid" msgstr "優先權無效" -#: libkpackagekit/KpkStrings.cpp:865 +#: libkpackagekit/KpkStrings.cpp:904 msgid "Backend warning" msgstr "後端介面警告" -#: libkpackagekit/KpkStrings.cpp:867 +#: libkpackagekit/KpkStrings.cpp:906 msgid "Daemon warning" msgstr "守護程式警告" -#: libkpackagekit/KpkStrings.cpp:869 +#: libkpackagekit/KpkStrings.cpp:908 msgid "The package list cache is being rebuilt" msgstr "套件清單快取正重新建立中" -#: libkpackagekit/KpkStrings.cpp:871 +#: libkpackagekit/KpkStrings.cpp:910 msgid "An untrusted package was installed" msgstr "已安裝一個不被信任的套件" -#: libkpackagekit/KpkStrings.cpp:873 +#: libkpackagekit/KpkStrings.cpp:912 msgid "A newer package exists" msgstr "有一個較新的套件" -#: libkpackagekit/KpkStrings.cpp:875 +#: libkpackagekit/KpkStrings.cpp:914 msgid "Could not find package" msgstr "找不到套件" -#: libkpackagekit/KpkStrings.cpp:877 +#: libkpackagekit/KpkStrings.cpp:916 msgid "Configuration files were changed" msgstr "設定檔已變更" -#: libkpackagekit/KpkStrings.cpp:879 +#: libkpackagekit/KpkStrings.cpp:918 msgid "Package is already installed" msgstr "套件已安裝" -#: libkpackagekit/KpkStrings.cpp:881 +#: libkpackagekit/KpkStrings.cpp:920 msgid "Automatic cleanup is being ignored" msgstr "" -#: libkpackagekit/KpkStrings.cpp:883 +#: libkpackagekit/KpkStrings.cpp:922 #, fuzzy #| msgid "The package download failed" msgid "Software source download failed" msgstr "此套件下載失敗" -#: libkpackagekit/KpkStrings.cpp:896 -#, fuzzy -#| msgid "You do not have the necessary privileges to perform this action." -msgid "You don't have the necessary privileges to perform this action." +#: libkpackagekit/KpkStrings.cpp:935 Settings/KpkSettings.cpp:166 +msgid "You do not have the necessary privileges to perform this action." msgstr "您沒有執行此動作的必要特權。" -#: libkpackagekit/KpkStrings.cpp:898 +#: libkpackagekit/KpkStrings.cpp:937 #, fuzzy #| msgid "Could not remove a protected system package" msgid "Could not get a transaction id from packagekitd." msgstr "無法移除受保護的系統套件" -#: libkpackagekit/KpkStrings.cpp:900 +#: libkpackagekit/KpkStrings.cpp:939 msgid "Cannot connect to this transaction id." msgstr "" -#: libkpackagekit/KpkStrings.cpp:902 +#: libkpackagekit/KpkStrings.cpp:941 msgid "This action is unknown." msgstr "" -#: libkpackagekit/KpkStrings.cpp:904 +#: libkpackagekit/KpkStrings.cpp:943 #, fuzzy #| msgid "The package signature could not be verified." msgid "The packagekitd service could not be started." msgstr "無法檢查此套件簽章。" -#: libkpackagekit/KpkStrings.cpp:906 +#: libkpackagekit/KpkStrings.cpp:945 #, fuzzy #| msgid "The priority was invalid" msgid "The query is not valid." msgstr "優先權無效" -#: libkpackagekit/KpkStrings.cpp:908 +#: libkpackagekit/KpkStrings.cpp:947 #, fuzzy #| msgid "The file was not installed" #| msgid_plural "The files were not installed" msgid "The file is not valid." msgstr "這些檔案未被安裝" -#: libkpackagekit/KpkStrings.cpp:910 +#: libkpackagekit/KpkStrings.cpp:949 msgid "This function is not yet supported." msgstr "" -#: libkpackagekit/KpkStrings.cpp:912 +#: libkpackagekit/KpkStrings.cpp:951 #, fuzzy #| msgid "Could not find package" msgid "Could not talk to packagekitd." msgstr "找不到套件" -#: libkpackagekit/KpkStrings.cpp:916 libkpackagekit/KpkStrings.cpp:919 +#: libkpackagekit/KpkStrings.cpp:955 libkpackagekit/KpkStrings.cpp:958 #, fuzzy #| msgid "Unknown error" msgid "An unknown error happened." msgstr "未知的錯誤" -#: SmartIcon/KpkTransactionWatcher.cpp:95 +#: SmartIcon/KpkTransactionWatcher.cpp:102 msgid "Ignore" msgstr "忽略" -#: SmartIcon/KpkUpdateIcon.cpp:172 +#: SmartIcon/PkInstallProvideFiles.cpp:49 #, kde-format -msgid "You have %1" -msgstr "您有 %1" +msgid "" +"The following file is required:
                                                                        • %2
                                                                        Do you want to search " +"for this now?" +msgid_plural "" +"The following files are required:
                                                                        • %2
                                                                        Do you want to search " +"for these now?" +msgstr[0] "" -#: SmartIcon/KpkUpdateIcon.cpp:181 -#, kde-format -msgid "
                                                                        And another update" -msgid_plural "
                                                                        And %1 more updates" -msgstr[0] "
                                                                        還有 %1 個更新" +#: SmartIcon/PkInstallProvideFiles.cpp:58 +#: SmartIcon/KpkInstallProvideFile.cpp:57 +msgid "A program wants to install a file" +msgid_plural "A program wants to install files" +msgstr[0] "某程式想要安裝檔案" -#. i18np("%1 update available", "%1 updates available", m_updateList.size())); -#. m_icon->show(); -#: SmartIcon/KpkUpdateIcon.cpp:189 -msgid "Review and update" -msgstr "檢視並安裝" +#: SmartIcon/PkInstallProvideFiles.cpp:62 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a file" +msgid_plural "%2 wants to install files" +msgstr[0] "%1 想要安裝檔案" -#: SmartIcon/KpkUpdateIcon.cpp:190 SmartIcon/KpkTransactionTrayIcon.cpp:254 -#: SmartIcon/KpkTransactionTrayIcon.cpp:260 -msgid "Not now" -msgstr "現在不要" +#: SmartIcon/PkInstallProvideFiles.cpp:70 +#: SmartIcon/KpkInstallProvideFile.cpp:68 +msgctxt "Search for a package that provides these files and install it" +msgid "Install" +msgstr "安裝" + +#: SmartIcon/PkInstallProvideFiles.cpp:86 +#: SmartIcon/KpkInstallProvideFile.cpp:80 SmartIcon/PkSearchFile.cpp:60 +#: SmartIcon/PkRemovePackageByFiles.cpp:85 +msgid "Failed to start search file transaction" +msgstr "搜尋檔案處理事項啟動失敗" + +#: SmartIcon/PkInstallProvideFiles.cpp:102 +#: SmartIcon/PkInstallFontconfigResources.cpp:116 +#: SmartIcon/PkInstallGStreamerResources.cpp:144 +#: SmartIcon/PkInstallMimeTypes.cpp:100 +msgid "did not agree to search" +msgstr "" + +#: SmartIcon/PkInstallProvideFiles.cpp:113 +#: SmartIcon/KpkInstallProvideFile.cpp:101 +#, kde-format +msgid "The %1 package already provides this file" +msgstr "%1 套件已提供了這個檔案" + +#: SmartIcon/PkInstallProvideFiles.cpp:115 +#: SmartIcon/PkInstallPackageFiles.cpp:126 +#: SmartIcon/PkInstallPackageFiles.cpp:192 +msgid "Failed to install file" +msgid_plural "Failed to install files" +msgstr[0] "安裝檔案失敗" + +#: SmartIcon/PkInstallProvideFiles.cpp:120 +#: SmartIcon/KpkInstallProvideFile.cpp:106 +#: SmartIcon/PkInstallPackageNames.cpp:125 SmartIcon/PkInstallCatalogs.cpp:153 +msgid "The following package will be installed" +msgid_plural "The following packages will be installed" +msgstr[0] "下列套件將被安裝" + +#: SmartIcon/PkInstallProvideFiles.cpp:131 +#: SmartIcon/KpkInstallProvideFile.cpp:116 +msgid "The file could not be found in any packages" +msgid_plural "The files could not be found in any packages" +msgstr[0] "在任何套件內都找不到這些檔案" + +#: SmartIcon/PkInstallProvideFiles.cpp:134 +#: SmartIcon/KpkInstallProvideFile.cpp:118 +msgid "Failed to find package" +msgstr "尋找套件失敗" + +#: SmartIcon/KpkUpdateIcon.cpp:201 +#, kde-format +msgid "You have %1" +msgstr "您有 %1" -#: SmartIcon/KpkUpdateIcon.cpp:191 +#: SmartIcon/KpkUpdateIcon.cpp:210 +#, kde-format +msgid "
                                                                        And another update" +msgid_plural "
                                                                        And %1 more updates" +msgstr[0] "
                                                                        還有 %1 個更新" + +#: SmartIcon/KpkUpdateIcon.cpp:216 +msgid "Review and update" +msgstr "檢視並安裝" + +#: SmartIcon/KpkUpdateIcon.cpp:217 msgid "Do not ask again" msgstr "不要再詢問" -#: SmartIcon/KpkUpdateIcon.cpp:235 +#: SmartIcon/KpkUpdateIcon.cpp:263 msgid "Updates are being automatically installed." msgstr "正自動化安裝更新中。" -#: SmartIcon/KpkUpdateIcon.cpp:262 +#: SmartIcon/KpkUpdateIcon.cpp:292 msgid "Security updates are being automatically installed." msgstr "安全更新正自動化安裝中。" -#: SmartIcon/KpkUpdateIcon.cpp:289 +#: SmartIcon/KpkUpdateIcon.cpp:319 msgid "System update was successful." msgstr "系統更新成功。" -#: SmartIcon/KpkUpdateIcon.cpp:298 +#: SmartIcon/KpkUpdateIcon.cpp:328 msgid "The software update failed." msgstr "這個軟體更新失敗。" +#: SmartIcon/KpkInstallProvideFile.cpp:47 +msgid "The following file is required:" +msgid_plural "The following files are required:" +msgstr[0] "需要下列檔案:" + +#: SmartIcon/KpkInstallProvideFile.cpp:50 +msgid "Do you want to search for this now?" +msgid_plural "Do you want to search for these now?" +msgstr[0] "您現在想要搜尋這些嗎?" + +#: SmartIcon/KpkInstallProvideFile.cpp:61 +#, kde-format +msgid "%1 wants to install a file" +msgid_plural "%1 wants to install files" +msgstr[0] "%1 想要安裝檔案" + #: SmartIcon/KpkDistroUpgrade.cpp:68 msgid "Start upgrade now" msgstr "現在開始升級" -#: SmartIcon/KpkDistroUpgrade.cpp:111 +#: SmartIcon/KpkDistroUpgrade.cpp:113 msgid "Distribution upgrade finished. " msgstr "發行版升級完成。" +#: SmartIcon/PkIsInstalled.cpp:52 SmartIcon/PkInstallPackageNames.cpp:84 +msgid "Failed to start resolve transaction" +msgstr "處理事項解析啟動失敗" + +#: SmartIcon/PkIsInstalled.cpp:76 +#, fuzzy +#| msgctxt "The role of the transaction, in past tense" +#| msgid "Got old transactions" +msgid "User canceled the transaction" +msgstr "已取得之前的處理事項" + +#: SmartIcon/PkIsInstalled.cpp:78 +#, fuzzy +#| msgid "Unknown error" +msgid "An unknown error happened" +msgstr "未知的錯誤" + +#: SmartIcon/PkInstallPackageNames.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "" +"An additional package is required:
                                                                        • %2
                                                                        Do you want to search " +"for and install this package now?" +msgid_plural "" +"Additional packages are required:
                                                                        • %2
                                                                        Do you want to search " +"for and install these packages now?" +msgstr[0] "您現在想要搜尋這些套件並安裝它們嗎?" + +#: SmartIcon/PkInstallPackageNames.cpp:60 +msgid "A program wants to install a package" +msgid_plural "A program wants to install packages" +msgstr[0] "某程式想要安裝套件" + +#: SmartIcon/PkInstallPackageNames.cpp:64 +#, fuzzy, kde-format +#| msgid "%1 wants to install a package" +#| msgid_plural "%1 wants to install packages" +msgid "%2 wants to install a package" +msgid_plural "%2 wants to install packages" +msgstr[0] "%1 想要安裝套件" + +#: SmartIcon/PkInstallPackageNames.cpp:71 +msgctxt "Search for a package and install it" +msgid "Install" +msgstr "安裝" + +#: SmartIcon/PkInstallPackageNames.cpp:116 +#, fuzzy, kde-format +#| msgid "The package is already installed" +msgid "The package %2 is already installed" +msgid_plural "The packages %2 are already installed" +msgstr[0] "此套件已經安裝" + +#: SmartIcon/PkInstallPackageNames.cpp:120 +#, fuzzy +#| msgid "Failed to install package" +msgid "Failed to install packages" +msgstr "安裝套件失敗" + +#: SmartIcon/PkInstallPackageNames.cpp:129 +#: SmartIcon/PkRemovePackageByFiles.cpp:120 +#: SmartIcon/PkInstallMimeTypes.cpp:114 SmartIcon/PkInstallCatalogs.cpp:157 +msgid "Transaction did not finish with success" +msgstr "" + +#: SmartIcon/PkInstallPackageNames.cpp:136 +msgid "The package could not be found in any software source" +msgid_plural "The packages could not be found in any software source" +msgstr[0] "在任何軟體來源內都找不到這些套件" + +#: SmartIcon/PkInstallPackageNames.cpp:139 SmartIcon/PkSearchFile.cpp:94 +#: SmartIcon/PkRemovePackageByFiles.cpp:130 +#, kde-format +msgid "Could not find %1" +msgstr "找不到 %1" + #: SmartIcon/main.cpp:34 KPackageKit/main.cpp:34 msgid "KPackageKit" msgstr "KPackageKit" @@ -2544,214 +2824,451 @@ msgid "libpackagekit-qt and other stuff" msgstr "libpackagekit-qt 與其他東西" -#: SmartIcon/KpkTransactionTrayIcon.cpp:55 +#: SmartIcon/PkInstallFontconfigResources.cpp:63 +#, fuzzy +#| msgid "" +#| "An additional program is required to open this type of file:
                                                                        %1
                                                                        Do you want to search for a program to open this file type now?" +msgid "" +"An additional font is required to view this document correctly. Do you want " +"to search for a suitable package now?" +msgid_plural "" +"Additional fonts are required to view this document correctly. Do you want " +"to search for suitable packages now?" +msgstr[0] "" +"要打開此類型的檔案必須有額外的程式:
                                                                        %1
                                                                        您想要現在搜尋可以開啟此檔案" +"類型的程式嗎?" + +#: SmartIcon/PkInstallFontconfigResources.cpp:72 +#, fuzzy +#| msgid "A program wants to install a file" +#| msgid_plural "A program wants to install files" +msgid "A program wants to install a font" +msgid_plural "A program wants to install fonts" +msgstr[0] "某程式想要安裝檔案" + +#: SmartIcon/PkInstallFontconfigResources.cpp:76 +#, fuzzy, kde-format +#| msgid "%1 wants to install a file" +#| msgid_plural "%1 wants to install files" +msgid "%2 wants to install a font" +msgid_plural "%2 wants to install fonts" +msgstr[0] "%1 想要安裝檔案" + +#: SmartIcon/PkInstallFontconfigResources.cpp:83 +#: SmartIcon/PkInstallGStreamerResources.cpp:112 +#, fuzzy +#| msgctxt "Search for a package and remove" +#| msgid "Search" +msgctxt "Search for packages" +msgid "Search" +msgstr "搜尋" + +#: SmartIcon/PkInstallFontconfigResources.cpp:99 +#: SmartIcon/PkInstallFontconfigResources.cpp:147 +#: SmartIcon/PkInstallGStreamerResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:86 +msgid "Failed to search for provides" +msgstr "搜尋提供者失敗" + +#: SmartIcon/PkInstallFontconfigResources.cpp:127 +#: SmartIcon/PkInstallMimeTypes.cpp:111 +msgid "Application that can open this type of file" +msgid_plural "Applications that can open this type of file" +msgstr[0] "可以開啟這種檔案類型的應用程式" + +#: SmartIcon/PkInstallFontconfigResources.cpp:139 +#, fuzzy +#| msgid "No new applications can be found to handle this type of file" +msgid "No new fonts can be found for this document" +msgstr "找不到新的應用程式來處理這個類型的檔案" + +#: SmartIcon/PkInstallFontconfigResources.cpp:140 +#: SmartIcon/PkInstallFontconfigResources.cpp:148 +#, fuzzy +#| msgid "Failed to find software" +msgid "Failed to find font" +msgstr "找不到軟體" + +#: SmartIcon/PkInstallPackageFiles.cpp:83 +#, fuzzy +#| msgid "This item is not supported by your backend, or it is not a file." +#| msgid_plural "" +#| "These items are not supported by your backend, or they are not files." +msgid "This item is not supported by your backend, or it is not a file. " +msgid_plural "" +"These items are not supported by your backend, or they are not files." +msgstr[0] "您的後端程式並不支援這些項目,或者它們不是檔案。" + +#: SmartIcon/PkInstallPackageFiles.cpp:89 +msgid "Impossible to install" +msgstr "無法安裝" + +#: SmartIcon/PkInstallPackageFiles.cpp:104 +msgid "Install" +msgstr "安裝" + +#: SmartIcon/PkInstallPackageFiles.cpp:109 +msgid "Do you want to install this file?" +msgid_plural "Do you want to install these files?" +msgstr[0] "您想要安裝這些檔案嗎?" + +#: SmartIcon/PkInstallPackageFiles.cpp:113 +msgid "Install?" +msgstr "要安裝嗎?" + +#: SmartIcon/PkInstallPackageFiles.cpp:149 +msgid "The file was not installed" +msgid_plural "The files were not installed" +msgstr[0] "這些檔案未被安裝" + +#: SmartIcon/PkInstallPackageFiles.cpp:217 +#: SmartIcon/PkInstallPackageFiles.cpp:220 +msgid "File was installed successfully" +msgid_plural "Files were installed successfully" +msgstr[0] "檔案已成功安裝" + +#: SmartIcon/PkInstallPackageFiles.cpp:235 +msgid "An error occurred." +msgstr "發生錯誤。" + +#: SmartIcon/PkInstallGStreamerResources.cpp:63 +#, kde-format +msgid "" +"The following plugin is required:
                                                                        • %2
                                                                        Do you want to search " +"for this now?" +msgid_plural "" +"The following plugins are required:
                                                                        • %2
                                                                        Do you want to " +"search for these now?" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:75 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to decode this file" +msgid_plural "A program requires additional plugins to decode this file" +msgstr[0] "某程式需求新的 mime 類型" + +#: SmartIcon/PkInstallGStreamerResources.cpp:80 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin to encode this file" +msgid_plural "A program requires additional plugins to encode this file" +msgstr[0] "某程式需求新的 mime 類型" + +#: SmartIcon/PkInstallGStreamerResources.cpp:85 +#, fuzzy +#| msgid "A program requires a new mime type" +#| msgid_plural "A program requires new mime types" +msgid "A program requires an additional plugin for this operation" +msgid_plural "A program requires additional plugins for this operation" +msgstr[0] "某程式需求新的 mime 類型" + +#: SmartIcon/PkInstallGStreamerResources.cpp:92 +#, kde-format +msgid "%2 requires an additional plugin to decode this file" +msgid_plural "%2 requires additional plugins to decode this file" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:98 +#, kde-format +msgid "%2 requires an additional plugin to encode this file" +msgid_plural "%2 requires additional plugins to encode this file" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:104 +#, kde-format +msgid "%2 requires an additional plugin for this operation" +msgid_plural "%2 requires additional plugins for this operation" +msgstr[0] "" + +#: SmartIcon/PkInstallGStreamerResources.cpp:155 +#, fuzzy +#| msgid "Do you want to search for and install this package now?" +#| msgid_plural "Do you want to search for and install these packages now?" +msgid "Do you want to install this package now?" +msgid_plural "Do you want to install these packages now?" +msgstr[0] "您現在想要搜尋這些套件並安裝它們嗎?" + +#: SmartIcon/PkInstallGStreamerResources.cpp:165 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "Could not find plugin in any configured software source" +msgstr "在任何軟體來源內都找不到這些套件" + +#: SmartIcon/PkInstallGStreamerResources.cpp:167 +#, fuzzy +#| msgid "Failed to search for provides" +msgid "Failed to search for plugin" +msgstr "搜尋提供者失敗" + +#: SmartIcon/PkSearchFile.cpp:91 +#, fuzzy +#| msgid "The package could not be found in any software source" +#| msgid_plural "The packages could not be found in any software source" +msgid "The file name could not be found in any software source" +msgstr "在任何軟體來源內都找不到這些套件" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:54 msgid "Transactions" msgstr "處理事項" -#: SmartIcon/KpkTransactionTrayIcon.cpp:71 +#: SmartIcon/KpkTransactionTrayIcon.cpp:70 msgid "Refresh package list" msgstr "重新載入套件清單" -#: SmartIcon/KpkTransactionTrayIcon.cpp:78 +#: SmartIcon/KpkTransactionTrayIcon.cpp:77 msgid "Show messages" msgstr "顯示訊息" -#: SmartIcon/KpkTransactionTrayIcon.cpp:84 +#: SmartIcon/KpkTransactionTrayIcon.cpp:83 msgid "Hide this icon" msgstr "隱藏此圖示" -#: SmartIcon/KpkTransactionTrayIcon.cpp:188 -#, kde-format -msgid "Package: %1" -msgid_plural "Packages: %1" +#: SmartIcon/KpkTransactionTrayIcon.cpp:187 +#, fuzzy, kde-format +#| msgid "Package: %1" +#| msgid_plural "Packages: %1" +msgid "Package: %2" +msgid_plural "Packages: %2" msgstr[0] "套件:%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:201 +#: SmartIcon/KpkTransactionTrayIcon.cpp:200 #, kde-format msgid "One message from the package manager" msgid_plural "%1 messages from the package manager" msgstr[0] "來自套件管理程式的 %1 個訊息" -#: SmartIcon/KpkTransactionTrayIcon.cpp:241 +#: SmartIcon/KpkTransactionTrayIcon.cpp:238 msgid "The system update has completed" msgstr "系統更新已完成" -#: SmartIcon/KpkTransactionTrayIcon.cpp:253 -#: SmartIcon/KpkTransactionTrayIcon.cpp:255 +#: SmartIcon/KpkTransactionTrayIcon.cpp:250 +#: SmartIcon/KpkTransactionTrayIcon.cpp:252 msgctxt "Restart the computer" msgid "Restart" msgstr "重新啟動電腦" -#: SmartIcon/KpkTransactionTrayIcon.cpp:259 -#: SmartIcon/KpkTransactionTrayIcon.cpp:261 +#: SmartIcon/KpkTransactionTrayIcon.cpp:251 +#: SmartIcon/KpkTransactionTrayIcon.cpp:257 +msgid "Not now" +msgstr "現在不要" + +#: SmartIcon/KpkTransactionTrayIcon.cpp:256 +#: SmartIcon/KpkTransactionTrayIcon.cpp:258 msgid "Logout" msgstr "登出" -#: SmartIcon/KpkTransactionTrayIcon.cpp:293 -#: SmartIcon/KpkTransactionTrayIcon.cpp:306 +#: SmartIcon/KpkTransactionTrayIcon.cpp:296 #, kde-format msgid "%1% - %2" msgstr "%1% - %2" -#: SmartIcon/KpkTransactionTrayIcon.cpp:295 -#: SmartIcon/KpkTransactionTrayIcon.cpp:308 +#: SmartIcon/KpkTransactionTrayIcon.cpp:298 #, kde-format msgid "%1" msgstr "%1" -#: SmartIcon/KpkTransactionTrayIcon.cpp:325 +#: SmartIcon/KpkTransactionTrayIcon.cpp:315 msgid "Package Manager Messages" msgstr "套件管理程式訊息" -#: SmartIcon/KpkTransactionTrayIcon.cpp:339 +#: SmartIcon/KpkTransactionTrayIcon.cpp:329 msgid "Message" msgstr "訊息" -#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 -msgid "KPackageKit settings" -msgstr "KPackageKit 設定" +#: SmartIcon/PkRemovePackageByFiles.cpp:53 +msgid "A program wants to remove a file" +msgid_plural "A program wants to remove files" +msgstr[0] "某程式想要移除檔案" -#: Settings/KpkSettings.cpp:60 -msgctxt "Hourly refresh the package cache" -msgid "Hourly" -msgstr "每小時" +#: SmartIcon/PkRemovePackageByFiles.cpp:57 +#, fuzzy, kde-format +#| msgid "%1 wants to remove a file" +#| msgid_plural "%1 wants to remove files" +msgid "%2 wants to remove a file" +msgid_plural "%2 wants to remove files" +msgstr[0] "%1 想要移除檔案" -#: Settings/KpkSettings.cpp:61 -msgctxt "Daily refresh the package cache" -msgid "Daily" -msgstr "每日" +#: SmartIcon/PkRemovePackageByFiles.cpp:63 +msgid "The following file is going to be removed:" +msgid_plural "The following files are going to be removed:" +msgstr[0] "下列檔案將要被移除:" -#: Settings/KpkSettings.cpp:62 -msgctxt "Weekly refresh the package cache" -msgid "Weekly" -msgstr "每週" +#: SmartIcon/PkRemovePackageByFiles.cpp:67 +msgid "" +"Do you want to search for packages containing this file and remove it now?" +msgid_plural "" +"Do you want to search for packages containing these files and remove them " +"now?" +msgstr[0] "您現在想要搜尋包含這些檔案的套件並移除它們嗎?" -#: Settings/KpkSettings.cpp:63 -msgctxt "Monthly refresh the package cache" -msgid "Monthly" -msgstr "每月" +#: SmartIcon/PkRemovePackageByFiles.cpp:72 +msgctxt "Search for a package and remove" +msgid "Search" +msgstr "搜尋" -#: Settings/KpkSettings.cpp:64 -msgctxt "Never refresh package cache" -msgid "Never" -msgstr "永不" +#: SmartIcon/PkRemovePackageByFiles.cpp:116 +msgid "The following package will be removed" +msgid_plural "The following packages will be removed" +msgstr[0] "下列套件將被移除" -#: Settings/KpkSettings.cpp:66 -msgid "Security Only" -msgstr "只有安全性更新" +#: SmartIcon/PkRemovePackageByFiles.cpp:127 +msgid "The file could not be found in any installed package" +msgid_plural "The files could not be found in any installed package" +msgstr[0] "在任何已安裝的套件內都找不到這些檔案" -#: Settings/KpkSettings.cpp:67 -msgid "All Updates" -msgstr "所有類型的更新" +#: SmartIcon/PkInstallMimeTypes.cpp:50 +#, fuzzy, kde-format +#| msgid "" +#| "An additional program is required to open this type of file:
                                                                        %1
                                                                        Do you want to search for a program to open this file type now?" +msgid "" +"An additional program is required to open this type of file:
                                                                        • %1
                                                                        • Do you want to search for a program to open this file type now?" +msgstr "" +"要打開此類型的檔案必須有額外的程式:
                                                                          %1
                                                                          您想要現在搜尋可以開啟此檔案" +"類型的程式嗎?" -#: Settings/KpkSettings.cpp:68 -msgctxt "None updates will be automatically installed" -msgid "None" -msgstr "無" +#: SmartIcon/PkInstallMimeTypes.cpp:57 +msgid "A program requires a new mime type" +msgid_plural "A program requires new mime types" +msgstr[0] "某程式需求新的 mime 類型" -#: Settings/KpkSettings.cpp:163 -msgid "You do not have the necessary privileges to perform this action." -msgstr "您沒有執行此動作的必要特權。" +#: SmartIcon/PkInstallMimeTypes.cpp:61 +#, fuzzy, kde-format +#| msgid "%1 requires a new mime type" +#| msgid_plural "%1 requires new mime types" +msgid "%2 requires a new mime type" +msgid_plural "%2 requires new mime types" +msgstr[0] "%1 需求新的 mime 類型" -#: Settings/KpkSettings.cpp:164 -msgid "Failed to set origin data" -msgstr "設定原始資料失敗" +#: SmartIcon/PkInstallMimeTypes.cpp:68 +msgctxt "Search for a new mime type" +msgid "Search" +msgstr "搜尋" -#: KPackageKit/KpkInstallProvideFile.cpp:47 -msgid "The following file is required:" -msgid_plural "The following files are required:" -msgstr[0] "需要下列檔案:" +#: SmartIcon/PkInstallMimeTypes.cpp:121 +msgid "No new applications can be found to handle this type of file" +msgstr "找不到新的應用程式來處理這個類型的檔案" -#: KPackageKit/KpkInstallProvideFile.cpp:50 -msgid "Do you want to search for this now?" -msgid_plural "Do you want to search for these now?" -msgstr[0] "您現在想要搜尋這些嗎?" +#: SmartIcon/PkInstallMimeTypes.cpp:123 +msgid "Failed to find software" +msgstr "找不到軟體" -#: KPackageKit/KpkInstallProvideFile.cpp:57 -msgid "A program wants to install a file" -msgid_plural "A program wants to install files" -msgstr[0] "某程式想要安裝檔案" +#: SmartIcon/PkInstallCatalogs.cpp:51 +#, fuzzy, kde-format +#| msgid "Do you want to install this file?" +#| msgid_plural "Do you want to install these files?" +msgid "

                                                                          Do you want to install this catalog?

                                                                          • %2
                                                                          " +msgid_plural "" +"

                                                                          Do you want to install these catalogs?

                                                                          • %2
                                                                          " +msgstr[0] "您想要安裝這些檔案嗎?" -#: KPackageKit/KpkInstallProvideFile.cpp:61 -#, kde-format -msgid "%1 wants to install a file" -msgid_plural "%1 wants to install files" -msgstr[0] "%1 想要安裝檔案" +#: SmartIcon/PkInstallCatalogs.cpp:58 +#, fuzzy +#| msgid "Install Now" +msgid "Install catalog" +msgid_plural "Install catalogs" +msgstr[0] "現在安裝" -#: KPackageKit/KpkInstallProvideFile.cpp:68 -msgctxt "Search for a package that provides these files and install it" +#: SmartIcon/PkInstallCatalogs.cpp:62 +#, fuzzy +#| msgid "Install" +msgctxt "Parse the catalog search and install it" msgid "Install" msgstr "安裝" -#: KPackageKit/KpkInstallProvideFile.cpp:80 -#: KPackageKit/KpkRemovePackageByFile.cpp:86 -msgid "Failed to start search file transaction" -msgstr "搜尋檔案處理事項啟動失敗" +#: SmartIcon/PkInstallCatalogs.cpp:99 +#, fuzzy +#| msgid "Current backend does not support installing packages." +msgid "" +"Your backend does not support any of the needed methods to install a catalog" +msgstr "現在的後端程式不支援安裝套件。" -#: KPackageKit/KpkInstallProvideFile.cpp:101 -#, kde-format -msgid "The %1 package already provides this file" -msgstr "%1 套件已提供了這個檔案" +#: SmartIcon/PkInstallCatalogs.cpp:100 +#, fuzzy +#| msgid "Supported" +msgid "Not supported" +msgstr "受支援的" -#: KPackageKit/KpkInstallProvideFile.cpp:106 -#: KPackageKit/KpkInstallPackageName.cpp:102 -msgid "The following package will be installed" -msgid_plural "The following packages will be installed" -msgstr[0] "下列套件將被安裝" +#: SmartIcon/PkInstallCatalogs.cpp:144 +#, fuzzy, kde-format +#| msgid "Package file to install" +msgid "Catalog %2 failed to open" +msgid_plural "Catalogs %2 failed to open" +msgstr[0] "要安裝的套件檔案" -#: KPackageKit/KpkInstallProvideFile.cpp:116 -msgid "The file could not be found in any packages" -msgid_plural "The files could not be found in any packages" -msgstr[0] "在任何套件內都找不到這些檔案" +#: SmartIcon/PkInstallCatalogs.cpp:148 +#, fuzzy +#| msgid "Failed to finalize" +msgid "Failed to open" +msgstr "無法結束" -#: KPackageKit/KpkInstallProvideFile.cpp:118 -msgid "Failed to find package" -msgstr "尋找套件失敗" +#: SmartIcon/PkInstallCatalogs.cpp:165 SmartIcon/PkInstallCatalogs.cpp:166 +#, fuzzy +#| msgid "Source packages cannot be installed" +msgid "No package was found to be installed" +msgstr "無法安裝源碼套件" -#: KPackageKit/KpkRemovePackageByFile.cpp:54 -msgid "A program wants to remove a file" -msgid_plural "A program wants to remove files" -msgstr[0] "某程式想要移除檔案" +#: SmartIcon/PkInstallCatalogs.cpp:206 +#, fuzzy +#| msgid "Failed to start resolve transaction" +msgid "Failed to start setup transaction" +msgstr "處理事項解析啟動失敗" -#: KPackageKit/KpkRemovePackageByFile.cpp:58 -#, kde-format -msgid "%1 wants to remove a file" -msgid_plural "%1 wants to remove files" -msgstr[0] "%1 想要移除檔案" +#: Settings/KcmKpkSettings.cpp:37 Settings/KcmKpkSettings.cpp:39 +msgid "KPackageKit settings" +msgstr "KPackageKit 設定" -#: KPackageKit/KpkRemovePackageByFile.cpp:64 -msgid "The following file is going to be removed:" -msgid_plural "The following files are going to be removed:" -msgstr[0] "下列檔案將要被移除:" +#: Settings/KpkSettings.cpp:61 +msgctxt "Hourly refresh the package cache" +msgid "Hourly" +msgstr "每小時" -#: KPackageKit/KpkRemovePackageByFile.cpp:68 -msgid "" -"Do you want to search for packages containing this file and remove it now?" -msgid_plural "" -"Do you want to search for packages containing these files and remove them " -"now?" -msgstr[0] "您現在想要搜尋包含這些檔案的套件並移除它們嗎?" +#: Settings/KpkSettings.cpp:62 +msgctxt "Daily refresh the package cache" +msgid "Daily" +msgstr "每日" -#: KPackageKit/KpkRemovePackageByFile.cpp:73 -msgctxt "Search for a package and remove" -msgid "Search" -msgstr "搜尋" +#: Settings/KpkSettings.cpp:63 +msgctxt "Weekly refresh the package cache" +msgid "Weekly" +msgstr "每週" + +#: Settings/KpkSettings.cpp:64 +msgctxt "Monthly refresh the package cache" +msgid "Monthly" +msgstr "每月" + +#: Settings/KpkSettings.cpp:65 +msgctxt "Never refresh package cache" +msgid "Never" +msgstr "永不" + +#: Settings/KpkSettings.cpp:67 +#, fuzzy +#| msgid "Security Only" +msgid "Security only" +msgstr "只有安全性更新" -#: KPackageKit/KpkRemovePackageByFile.cpp:107 -msgid "The following package will be removed" -msgid_plural "The following packages will be removed" -msgstr[0] "下列套件將被移除" +#: Settings/KpkSettings.cpp:68 +#, fuzzy +#| msgid "All Updates" +msgid "All updates" +msgstr "所有類型的更新" -#: KPackageKit/KpkRemovePackageByFile.cpp:116 -msgid "The file could not be found in any installed package" -msgid_plural "The files could not be found in any installed package" -msgstr[0] "在任何已安裝的套件內都找不到這些檔案" +#: Settings/KpkSettings.cpp:69 +msgctxt "None updates will be automatically installed" +msgid "None" +msgstr "無" -#: KPackageKit/KpkRemovePackageByFile.cpp:118 -#: KPackageKit/KpkInstallPackageName.cpp:114 -#, kde-format -msgid "Could not find %1" -msgstr "找不到 %1" +#: Settings/KpkSettings.cpp:167 +msgid "Failed to set origin data" +msgstr "設定原始資料失敗" #: KPackageKit/main.cpp:36 msgid "KPackageKit is a tool to manage software" @@ -2789,125 +3306,6 @@ msgid "Package file to install" msgstr "要安裝的套件檔案" -#: KPackageKit/KpkInstallFiles.cpp:81 -msgid "This item is not supported by your backend, or it is not a file." -msgid_plural "" -"These items are not supported by your backend, or they are not files." -msgstr[0] "您的後端程式並不支援這些項目,或者它們不是檔案。" - -#: KPackageKit/KpkInstallFiles.cpp:85 -msgid "Impossible to install" -msgstr "無法安裝" - -#: KPackageKit/KpkInstallFiles.cpp:98 -msgid "Install" -msgstr "安裝" - -#: KPackageKit/KpkInstallFiles.cpp:102 -msgid "Do you want to install this file?" -msgid_plural "Do you want to install these files?" -msgstr[0] "您想要安裝這些檔案嗎?" - -#: KPackageKit/KpkInstallFiles.cpp:105 -msgid "Install?" -msgstr "要安裝嗎?" - -#: KPackageKit/KpkInstallFiles.cpp:129 KPackageKit/KpkInstallFiles.cpp:131 -msgid "The file was not installed" -msgid_plural "The files were not installed" -msgstr[0] "這些檔案未被安裝" - -#: KPackageKit/KpkInstallFiles.cpp:172 -msgid "Failed to install file" -msgid_plural "Failed to install files" -msgstr[0] "安裝檔案失敗" - -#: KPackageKit/KpkInstallFiles.cpp:186 KPackageKit/KpkInstallFiles.cpp:189 -msgid "File was installed successfully" -msgid_plural "Files were installed successfully" -msgstr[0] "檔案已成功安裝" - -#: KPackageKit/KpkInstallFiles.cpp:197 -msgid "An error occurred." -msgstr "發生錯誤。" - -#: KPackageKit/KpkInstallPackageName.cpp:47 -msgid "An additional package is required:" -msgid_plural "Additional packages are required:" -msgstr[0] "需要額外的套件:" - -#: KPackageKit/KpkInstallPackageName.cpp:50 -msgid "Do you want to search for and install this package now?" -msgid_plural "Do you want to search for and install these packages now?" -msgstr[0] "您現在想要搜尋這些套件並安裝它們嗎?" - -#: KPackageKit/KpkInstallPackageName.cpp:57 -msgid "A program wants to install a package" -msgid_plural "A program wants to install packages" -msgstr[0] "某程式想要安裝套件" - -#: KPackageKit/KpkInstallPackageName.cpp:61 -#, kde-format -msgid "%1 wants to install a package" -msgid_plural "%1 wants to install packages" -msgstr[0] "%1 想要安裝套件" - -#: KPackageKit/KpkInstallPackageName.cpp:68 -msgctxt "Search for a package and install it" -msgid "Install" -msgstr "安裝" - -#: KPackageKit/KpkInstallPackageName.cpp:81 -msgid "Failed to start resolve transaction" -msgstr "處理事項解析啟動失敗" - -#: KPackageKit/KpkInstallPackageName.cpp:112 -msgid "The package could not be found in any software source" -msgid_plural "The packages could not be found in any software source" -msgstr[0] "在任何軟體來源內都找不到這些套件" - -#: KPackageKit/KpkInstallMimeType.cpp:46 -#, kde-format -msgid "" -"An additional program is required to open this type of file:
                                                                          %1
                                                                          Do " -"you want to search for a program to open this file type now?" -msgstr "" -"要打開此類型的檔案必須有額外的程式:
                                                                          %1
                                                                          您想要現在搜尋可以開啟此檔案" -"類型的程式嗎?" - -#: KPackageKit/KpkInstallMimeType.cpp:53 -msgid "A program requires a new mime type" -msgid_plural "A program requires new mime types" -msgstr[0] "某程式需求新的 mime 類型" - -#: KPackageKit/KpkInstallMimeType.cpp:57 -#, kde-format -msgid "%1 requires a new mime type" -msgid_plural "%1 requires new mime types" -msgstr[0] "%1 需求新的 mime 類型" - -#: KPackageKit/KpkInstallMimeType.cpp:64 -msgctxt "Search for a new mime type" -msgid "Search" -msgstr "搜尋" - -#: KPackageKit/KpkInstallMimeType.cpp:78 -msgid "Failed to search for provides" -msgstr "搜尋提供者失敗" - -#: KPackageKit/KpkInstallMimeType.cpp:99 -msgid "Application that can open this type of file" -msgid_plural "Applications that can open this type of file" -msgstr[0] "可以開啟這種檔案類型的應用程式" - -#: KPackageKit/KpkInstallMimeType.cpp:107 -msgid "No new applications can be found to handle this type of file" -msgstr "找不到新的應用程式來處理這個類型的檔案" - -#: KPackageKit/KpkInstallMimeType.cpp:108 -msgid "Failed to find software" -msgstr "找不到軟體" - #: rc.cpp:1 msgctxt "NAME OF TRANSLATORS" msgid "Your names" @@ -2918,19 +3316,19 @@ msgid "Your emails" msgstr "tryneeds@gmail.com" -#. i18n: file: Updater/KpkUpdate.ui:71 +#. i18n: file: Updater/KpkUpdate.ui:74 #. i18n: ectx: property (text), widget (KPushButton, selectAllPB) #: rc.cpp:5 msgid "Select all updates" msgstr "選取所有更新" -#. i18n: file: Updater/KpkUpdate.ui:78 +#. i18n: file: Updater/KpkUpdate.ui:81 #. i18n: ectx: property (text), widget (KPushButton, refreshPB) #: rc.cpp:8 msgid "Refresh" msgstr "重新載入" -#. i18n: file: Updater/KpkUpdate.ui:85 +#. i18n: file: Updater/KpkUpdate.ui:88 #. i18n: ectx: property (text), widget (KPushButton, historyPB) #. i18n: file: Updater/KpkHistory.ui:13 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkHistory) @@ -2968,59 +3366,71 @@ msgid "Required by" msgstr "被需求於" -#. i18n: file: AddRm/KpkAddRm.ui:19 +#. i18n: file: AddRm/KpkAddRm.ui:20 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkAddRm) #: rc.cpp:38 msgid "Add and Remove Software" msgstr "新增與移除軟體" -#. i18n: file: AddRm/KpkAddRm.ui:33 +#. i18n: file: AddRm/KpkAddRm.ui:34 #. i18n: ectx: property (clickMessage), widget (KLineEdit, searchKLE) #: rc.cpp:41 msgid "Search packages" msgstr "搜尋套件" -#. i18n: file: AddRm/KpkAddRm.ui:67 +#. i18n: file: AddRm/KpkAddRm.ui:68 #. i18n: ectx: property (text), widget (QToolButton, filtersTB) -#. i18n: file: KPackageKit/KpkBackendDetails.ui:63 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:77 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) -#: rc.cpp:44 rc.cpp:152 +#: rc.cpp:44 rc.cpp:155 msgid "Filters" msgstr "過濾" -#. i18n: file: AddRm/KpkAddRm.ui:90 +#. i18n: file: AddRm/KpkAddRm.ui:91 #. i18n: ectx: property (text), item, widget (KComboBox, groupsCB) #: rc.cpp:47 msgid "All Packages" msgstr "所有套件" -#. i18n: file: libkpackagekit/KpkTransaction.ui:12 +#. i18n: file: libkpackagekit/KpkTransaction.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkTransaction) #: rc.cpp:59 -msgid "KPackageKit - Transaction" -msgstr "KPackageKit - 處理事項" +#, fuzzy +#| msgid "Transactions" +msgid "Transaction" +msgstr "處理事項" -#. i18n: file: libkpackagekit/KpkTransaction.ui:60 -#. i18n: ectx: property (text), widget (QLabel, currentL) +#. i18n: file: libkpackagekit/KpkTransaction.ui:31 +#. i18n: ectx: property (text), widget (QLabel, label) #: rc.cpp:62 +#, fuzzy +#| msgid "Action" +msgid "icon" +msgstr "動作" + +#. i18n: file: libkpackagekit/KpkTransaction.ui:69 +#. i18n: ectx: property (text), widget (QLabel, currentL) +#: rc.cpp:65 msgid "Downloading Packages" msgstr "下載套件中" -#. i18n: file: libkpackagekit/KpkTransaction.ui:89 +#. i18n: file: libkpackagekit/KpkTransaction.ui:102 #. i18n: ectx: property (text), widget (QLabel, descriptionL) -#: rc.cpp:65 -msgid "A library to do foo" -msgstr "執行 foo 的函式庫" +#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 +#. i18n: ectx: property (text), widget (QLabel, label) +#: rc.cpp:68 rc.cpp:83 +msgid "TextLabel" +msgstr "文字標籤" -#. i18n: file: libkpackagekit/KpkTransaction.ui:96 +#. i18n: file: libkpackagekit/KpkTransaction.ui:134 #. i18n: ectx: property (text), widget (QLabel, packageL) -#: rc.cpp:68 +#: rc.cpp:74 msgid "libfoo" msgstr "libfoo" #. i18n: file: libkpackagekit/KpkRequirements.ui:31 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:74 +#: rc.cpp:77 #, fuzzy #| msgid "Additional media is required to complete the transaction." msgid "Additional changes are required to complete the task" @@ -3028,344 +3438,402 @@ #. i18n: file: libkpackagekit/KpkRequirements.ui:57 #. i18n: ectx: property (windowTitle), widget (QDockWidget, dockWidget) -#: rc.cpp:77 +#: rc.cpp:80 #, fuzzy #| msgid "Action" msgid "Actions" msgstr "動作" -#. i18n: file: libkpackagekit/KpkReviewChanges.ui:25 -#. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:80 -msgid "TextLabel" -msgstr "文字標籤" - #. i18n: file: libkpackagekit/KpkRepoSig.ui:39 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:86 +#: rc.cpp:89 msgid "Repository name:" msgstr "套件庫名稱:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:65 #. i18n: ectx: property (text), widget (QLabel, label_3) -#: rc.cpp:89 +#: rc.cpp:92 msgid "Signature URL:" msgstr "簽章網址:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:91 #. i18n: ectx: property (text), widget (QLabel, label_4) -#: rc.cpp:92 +#: rc.cpp:95 msgid "Signature user identifier:" msgstr "簽章使用者識別:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:117 #. i18n: ectx: property (text), widget (QLabel, label_5) -#: rc.cpp:95 +#: rc.cpp:98 msgid "Signature identifier:" msgstr "簽章識別碼:" #. i18n: file: libkpackagekit/KpkRepoSig.ui:144 #. i18n: ectx: property (text), widget (QLabel, label_10) -#: rc.cpp:98 +#: rc.cpp:101 msgid "Do you recognise the user and trust this key?" msgstr "您認識這個使用者並且信任此金鑰嗎?" #. i18n: file: libkpackagekit/KpkRepoSig.ui:161 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:101 +#: rc.cpp:104 msgid "Do you trust the origin of packages?" msgstr "您信任這個套件來源嗎?" #. i18n: file: libkpackagekit/KpkLicenseAgreement.ui:33 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:107 +#: rc.cpp:110 msgid "Please read the following important information before continuing:" msgstr "請在繼續之前先閱讀下列重要資訊:" -#. i18n: file: Settings/KpkSettings.ui:13 +#. i18n: file: Settings/KpkSettings.ui:14 #. i18n: ectx: property (windowTitle), widget (QWidget, KpkSettings) -#: rc.cpp:110 +#: rc.cpp:113 msgid "Settings" msgstr "設定" -#. i18n: file: Settings/KpkSettings.ui:28 +#. i18n: file: Settings/KpkSettings.ui:29 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:113 -msgid "KPackageKit Settings" -msgstr "KPackageKit 設定" - -#. i18n: file: Settings/KpkSettings.ui:34 -#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:116 -msgid "Check for Updates:" -msgstr "檢查更新:" +#, fuzzy +#| msgid "Show settings" +msgid "Update settings" +msgstr "顯示設定" -#. i18n: file: Settings/KpkSettings.ui:51 -#. i18n: ectx: property (text), widget (QLabel, label_3) +#. i18n: file: Settings/KpkSettings.ui:38 +#. i18n: ectx: property (text), widget (QLabel, intervalL) #: rc.cpp:119 -msgid "Automatically Install:" -msgstr "自動化安裝:" +#, fuzzy +#| msgid "Check for Updates:" +msgid "Check for updates:" +msgstr "檢查更新:" -#. i18n: file: Settings/KpkSettings.ui:74 -#. i18n: ectx: property (title), widget (QGroupBox, groupBox_2) +#. i18n: file: Settings/KpkSettings.ui:55 +#. i18n: ectx: property (text), widget (QLabel, autoInsL) #: rc.cpp:122 -msgid "Smart Tray Icon" -msgstr "智慧系統匣圖示" +#, fuzzy +#| msgid "Automatically Install:" +msgid "Automatically install:" +msgstr "自動化安裝:" -#. i18n: file: Settings/KpkSettings.ui:83 +#. i18n: file: Settings/KpkSettings.ui:72 #. i18n: ectx: property (text), widget (QCheckBox, notifyUpdatesCB) #: rc.cpp:125 msgid "Notify when updates are available" msgstr "當有更新時給予通知" -#. i18n: file: Settings/KpkSettings.ui:99 -#. i18n: ectx: property (text), widget (QCheckBox, notifyLongTasksCB) -#: rc.cpp:128 -msgid "Notify when long tasks have been completed" -msgstr "當冗長的工作事項已經完成時給予通知" - -#. i18n: file: Settings/KpkSettings.ui:118 +#. i18n: file: Settings/KpkSettings.ui:94 #. i18n: ectx: property (title), widget (QGroupBox, originGB) -#: rc.cpp:131 -msgid "Origin of Packages" +#: rc.cpp:128 +#, fuzzy +#| msgid "Origin of Packages" +msgid "Origin of packages" msgstr "套件來源" -#. i18n: file: Settings/KpkSettings.ui:127 +#. i18n: file: Settings/KpkSettings.ui:106 #. i18n: ectx: property (text), widget (QCheckBox, showOriginsCB) -#: rc.cpp:134 +#: rc.cpp:131 msgid "&Show origins of debug and development packages" msgstr "顯示除錯與開發套件的對象(原始套件)(&S)" #. i18n: file: KPackageKit/KpkBackendDetails.ui:26 #. i18n: ectx: property (title), widget (QGroupBox, groupBox) -#: rc.cpp:137 +#: rc.cpp:134 msgid "About Backend" msgstr "關於後端介面" #. i18n: file: KPackageKit/KpkBackendDetails.ui:32 #. i18n: ectx: property (text), widget (QLabel, label) -#: rc.cpp:140 +#: rc.cpp:137 msgid "Backend name:" msgstr "後端介面名稱:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:39 #. i18n: ectx: property (text), widget (QLabel, nameL) -#: rc.cpp:143 +#: rc.cpp:140 msgid "backend name here" msgstr "這裡是後端介面名稱" #. i18n: file: KPackageKit/KpkBackendDetails.ui:46 #. i18n: ectx: property (text), widget (QLabel, label_2) -#: rc.cpp:146 +#: rc.cpp:143 msgid "Backend author:" msgstr "後端介面作者:" #. i18n: file: KPackageKit/KpkBackendDetails.ui:53 +#. i18n: ectx: property (text), widget (QLabel, label_3) +#: rc.cpp:146 +#, fuzzy +#| msgid "Find by &description" +msgid "Backend description:" +msgstr "用描述來尋找(&D)" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:60 #. i18n: ectx: property (text), widget (QLabel, authorL) #: rc.cpp:149 msgid "backend author name here" msgstr "這裡是後端介面作者名稱" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:104 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:67 +#. i18n: ectx: property (text), widget (QLabel, descriptionL) +#: rc.cpp:152 +#, fuzzy +#| msgid "backend name here" +msgid "backend description here" +msgstr "這裡是後端介面名稱" + +#. i18n: file: KPackageKit/KpkBackendDetails.ui:118 #. i18n: ectx: property (text), widget (QCheckBox, visibleCB) -#: rc.cpp:161 +#: rc.cpp:164 msgid "Package is visible" msgstr "套件可顯示" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:120 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:134 #. i18n: ectx: property (text), widget (QCheckBox, newestCB) -#: rc.cpp:164 +#: rc.cpp:167 msgid "Newest" msgstr "最新的" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:136 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:150 #. i18n: ectx: property (text), widget (QCheckBox, guiCB) -#: rc.cpp:167 +#: rc.cpp:170 msgid "GUI" msgstr "圖形使用者介面" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:152 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:166 #. i18n: ectx: property (text), widget (QCheckBox, freeCB) -#: rc.cpp:170 +#: rc.cpp:173 msgid "Free software" msgstr "自由軟體" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:168 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:182 #. i18n: ectx: property (text), widget (QCheckBox, supportedCB) -#: rc.cpp:173 +#: rc.cpp:176 msgid "Supported" msgstr "受支援的" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:187 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:201 #. i18n: ectx: property (title), widget (QGroupBox, groupBox_3) -#: rc.cpp:176 +#: rc.cpp:179 msgid "Methods" msgstr "方法" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:196 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:210 #. i18n: ectx: property (text), widget (QCheckBox, getUpdatesCB) -#: rc.cpp:179 +#: rc.cpp:182 msgid "GetUpdates" msgstr "取得更新" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:212 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:226 #. i18n: ectx: property (text), widget (QCheckBox, updatePackageCB) -#: rc.cpp:182 +#: rc.cpp:185 msgid "UpdatePackage" msgstr "更新套件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:228 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:242 #. i18n: ectx: property (text), widget (QCheckBox, getRepositoryListCB) -#: rc.cpp:185 +#: rc.cpp:188 msgid "GetRepositoryList" msgstr "取得套件庫清單" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:244 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:258 #. i18n: ectx: property (text), widget (QCheckBox, refreshCacheCB) -#: rc.cpp:188 +#: rc.cpp:191 msgid "RefreshCache" msgstr "重新載入快取" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:260 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:274 #. i18n: ectx: property (text), widget (QCheckBox, installPackageCB) -#: rc.cpp:191 +#: rc.cpp:194 msgid "InstallPackage" msgstr "安裝套件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:276 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:290 #. i18n: ectx: property (text), widget (QCheckBox, repositoryEnableCB) -#: rc.cpp:194 +#: rc.cpp:197 msgid "RepositoryEnable" msgstr "套件庫啟用" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:292 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:306 #. i18n: ectx: property (text), widget (QCheckBox, updateSystemCB) -#: rc.cpp:197 +#: rc.cpp:200 msgid "UpdateSystem" msgstr "更新系統" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:308 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:322 #. i18n: ectx: property (text), widget (QCheckBox, removePackageCB) -#: rc.cpp:200 +#: rc.cpp:203 msgid "RemovePackage" msgstr "移除套件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:324 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:338 #. i18n: ectx: property (text), widget (QCheckBox, repositorySetEnableCB) -#: rc.cpp:203 +#: rc.cpp:206 msgid "RepositorySetEnable" msgstr "套件庫設置啟用" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:340 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:354 #. i18n: ectx: property (text), widget (QCheckBox, searchNameCB) -#: rc.cpp:206 +#: rc.cpp:209 msgid "SearchName" msgstr "搜尋名稱" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:356 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:370 #. i18n: ectx: property (text), widget (QCheckBox, getDependsCB) -#: rc.cpp:209 +#: rc.cpp:212 msgid "GetDepends" msgstr "取得相依性" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:372 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:386 #. i18n: ectx: property (text), widget (QCheckBox, whatProvidesCB) -#: rc.cpp:212 +#: rc.cpp:215 msgid "WhatProvides" msgstr "提供的資料" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:388 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:402 #. i18n: ectx: property (text), widget (QCheckBox, searchDetailsCB) -#: rc.cpp:215 +#: rc.cpp:218 msgid "SearchDetails" msgstr "搜尋細節" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:404 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:418 #. i18n: ectx: property (text), widget (QCheckBox, getRequiresCB) -#: rc.cpp:218 +#: rc.cpp:221 msgid "GetRequires" msgstr "取得需求" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:420 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:434 #. i18n: ectx: property (text), widget (QCheckBox, getPackagesCB) -#: rc.cpp:221 +#: rc.cpp:224 msgid "GetPackages" msgstr "取得套件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:436 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:450 #. i18n: ectx: property (text), widget (QCheckBox, searchGroupCB) -#: rc.cpp:224 +#: rc.cpp:227 msgid "SearchGroup" msgstr "搜尋群組" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:452 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:466 #. i18n: ectx: property (text), widget (QCheckBox, getUpdateDetailCB) -#: rc.cpp:227 +#: rc.cpp:230 msgid "GetUpdateDetail" msgstr "取得更新細節" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:468 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:482 #. i18n: ectx: property (text), widget (QCheckBox, searchFileCB) -#: rc.cpp:230 +#: rc.cpp:233 msgid "SearchFile" msgstr "搜尋檔案" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:484 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:498 #. i18n: ectx: property (text), widget (QCheckBox, getDescriptionCB) -#: rc.cpp:233 +#: rc.cpp:236 msgid "GetDescription" msgstr "取得描述" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:516 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:530 #. i18n: ectx: property (text), widget (QCheckBox, getFilesCB) -#: rc.cpp:239 +#: rc.cpp:242 msgid "GetFiles" msgstr "取得檔案" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:532 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:546 #. i18n: ectx: property (text), widget (QCheckBox, resolveCB) -#: rc.cpp:242 +#: rc.cpp:245 msgid "Resolve" msgstr "解析" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:548 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:562 #. i18n: ectx: property (text), widget (QCheckBox, installFileCB) -#: rc.cpp:245 +#: rc.cpp:248 msgid "InstallFIle" msgstr "安裝檔案" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:564 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:578 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallFilesCB) -#: rc.cpp:248 +#: rc.cpp:251 #, fuzzy #| msgid "InstallFIle" msgid "SimulateInstallFiles" msgstr "安裝檔案" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:577 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:591 #. i18n: ectx: property (text), widget (QCheckBox, simulateInstallPackagesCB) -#: rc.cpp:251 +#: rc.cpp:254 #, fuzzy #| msgid "InstallPackage" msgid "SimulateInstallPackages" msgstr "安裝套件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:590 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:604 #. i18n: ectx: property (text), widget (QCheckBox, simulateRemovePackagesCB) -#: rc.cpp:254 +#: rc.cpp:257 #, fuzzy #| msgid "RemovePackage" msgid "SimulateRemovePackages" msgstr "移除套件" -#. i18n: file: KPackageKit/KpkBackendDetails.ui:603 +#. i18n: file: KPackageKit/KpkBackendDetails.ui:617 #. i18n: ectx: property (text), widget (QCheckBox, simulateUpdatePackagesCB) -#: rc.cpp:257 +#: rc.cpp:260 #, fuzzy #| msgid "UpdatePackage" msgid "SimulateUpdatePackages" msgstr "更新套件" +#, fuzzy +#~| msgctxt "The role of the transaction, in past tense" +#~| msgid "Got old transactions" +#~ msgid "User canceled the installation" +#~ msgstr "已取得之前的處理事項" + +#~ msgid "This item is not supported by your backend, or it is not a file." +#~ msgid_plural "" +#~ "These items are not supported by your backend, or they are not files." +#~ msgstr[0] "您的後端程式並不支援這些項目,或者它們不是檔案。" + +#~ msgid "An additional package is required:" +#~ msgid_plural "Additional packages are required:" +#~ msgstr[0] "需要額外的套件:" + +#~ msgid "Do you want to search for and install this package now?" +#~ msgid_plural "Do you want to search for and install these packages now?" +#~ msgstr[0] "您現在想要搜尋這些套件並安裝它們嗎?" + +#~ msgid "" +#~ "An additional program is required to open this type of file:
                                                                          %1
                                                                          Do you want to search for a program to open this file type now?" +#~ msgstr "" +#~ "要打開此類型的檔案必須有額外的程式:
                                                                          %1
                                                                          您想要現在搜尋可以開啟此" +#~ "檔案類型的程式嗎?" + +#~ msgid "All packages" +#~ msgstr "所有套件" + +#, fuzzy +#~| msgid "You do not have the necessary privileges to perform this action." +#~ msgid "You don't have the necessary privileges to perform this action." +#~ msgstr "您沒有執行此動作的必要特權。" + +#~ msgid "Package Name" +#~ msgstr "套件名稱" + +#~ msgid "KPackageKit Settings" +#~ msgstr "KPackageKit 設定" + +#~ msgid "Smart Tray Icon" +#~ msgstr "智慧系統匣圖示" + +#~ msgid "Notify when long tasks have been completed" +#~ msgstr "當冗長的工作事項已經完成時給予通知" + +#~ msgid "KPackageKit - Transaction" +#~ msgstr "KPackageKit - 處理事項" + +#~ msgid "A library to do foo" +#~ msgstr "執行 foo 的函式庫" + #~ msgid "The following packages will also be installed as dependencies" #~ msgstr "下列套件因相依性的關係而將被安裝" @@ -3378,8 +3846,5 @@ #~ msgid "The following packages also have to be removed/installed:" #~ msgstr "下列套件也必須被移除/安裝:" -#~ msgid "Failed to update package lists" -#~ msgstr "更新套件清單失敗" - #~ msgid "Failed to refresh package lists" #~ msgstr "重新載入套件清單失敗" diff -Nru kpackagekit-0.5.4/Settings/KcmKpkSettings.cpp kpackagekit-0.6.0/Settings/KcmKpkSettings.cpp --- kpackagekit-0.5.4/Settings/KcmKpkSettings.cpp 2009-11-17 12:32:04.000000000 +0000 +++ kpackagekit-0.6.0/Settings/KcmKpkSettings.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -19,6 +19,7 @@ ***************************************************************************/ #include "KcmKpkSettings.h" +#include "KpkSettings.h" #include #include diff -Nru kpackagekit-0.5.4/Settings/KcmKpkSettings.h kpackagekit-0.6.0/Settings/KcmKpkSettings.h --- kpackagekit-0.5.4/Settings/KcmKpkSettings.h 2009-11-17 12:32:04.000000000 +0000 +++ kpackagekit-0.6.0/Settings/KcmKpkSettings.h 2010-03-19 21:14:58.000000000 +0000 @@ -23,8 +23,8 @@ #include #include -#include "KpkSettings.h" +class KpkSettings; class KcmKpkSettings : public KCModule { Q_OBJECT diff -Nru kpackagekit-0.5.4/Settings/KpkModelOrigin.cpp kpackagekit-0.6.0/Settings/KpkModelOrigin.cpp --- kpackagekit-0.5.4/Settings/KpkModelOrigin.cpp 2009-11-17 12:32:04.000000000 +0000 +++ kpackagekit-0.6.0/Settings/KpkModelOrigin.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -20,8 +20,9 @@ #include "KpkModelOrigin.h" +#include + #include -#include #include #include @@ -44,7 +45,7 @@ } if (role == Qt::CheckStateRole) { - return m_actualState[ m_items.at( index.row() ).value(Qt::UserRole).toString() ]; + return m_actualState[m_items.at(index.row()).value(Qt::UserRole).toString()]; } return QVariant(); @@ -96,7 +97,7 @@ { for (int i = 0; i < m_items.size(); i++) { m_actualState[m_items.at(i).value(Qt::UserRole).toString()] - = (Qt::CheckState) m_items.at(i).value(Qt::CheckStateRole).toInt(); + = static_cast(m_items.at(i).value(Qt::CheckStateRole).toInt()); } emit layoutChanged(); } @@ -104,7 +105,7 @@ bool KpkModelOrigin::changed() const { for (int i = 0; i < m_items.size(); i++) { - if ( m_items.at(i).value(Qt::CheckStateRole) != m_actualState.value( m_items.at(i).value(Qt::UserRole).toString() ) ) { + if (m_items.at(i).value(Qt::CheckStateRole) != m_actualState.value(m_items.at(i).value(Qt::UserRole).toString())) { return true; } } @@ -117,7 +118,7 @@ for (int i = 0; i < m_items.size(); i++) { if (m_items.at(i).value(Qt::CheckStateRole) != m_actualState.value(m_items.at(i).value(Qt::UserRole).toString())) { repoId = m_items.at(i).value(Qt::UserRole).toString(); - Transaction *t = m_client->repoEnable(repoId, (bool) m_actualState.value(repoId)); + Transaction *t = m_client->repoEnable(repoId, static_cast(m_actualState.value(repoId))); if (t->error()) { KMessageBox::sorry(0, KpkStrings::daemonError(t->error())); return false; @@ -131,7 +132,7 @@ { if (index.isValid() && role == Qt::CheckStateRole) { m_actualState[m_items.at(index.row()).value(Qt::UserRole).toString()] - = (Qt::CheckState) value.toUInt(); + = static_cast(value.toUInt()); emit stateChanged(); return true; } else { diff -Nru kpackagekit-0.5.4/Settings/KpkModelOrigin.h kpackagekit-0.6.0/Settings/KpkModelOrigin.h --- kpackagekit-0.5.4/Settings/KpkModelOrigin.h 2009-11-17 12:32:04.000000000 +0000 +++ kpackagekit-0.6.0/Settings/KpkModelOrigin.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -18,15 +18,14 @@ * Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef KPKMODELORIGIN_H -#define KPKMODELORIGIN_H +#ifndef KPK_MODEL_ORIGIN_H +#define KPK_MODEL_ORIGIN_H #include -#include -#include using namespace PackageKit; +class QAbstractListModel; class KpkModelOrigin : public QAbstractListModel { Q_OBJECT diff -Nru kpackagekit-0.5.4/Settings/KpkSettings.cpp kpackagekit-0.6.0/Settings/KpkSettings.cpp --- kpackagekit-0.5.4/Settings/KpkSettings.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/Settings/KpkSettings.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -19,13 +19,16 @@ ***************************************************************************/ #include "KpkSettings.h" -#include "../libkpackagekit/KpkEnum.h" -#include +#include "KpkModelOrigin.h" + +#include +#include + #include #include #include -#include +#include using namespace PackageKit; @@ -37,20 +40,20 @@ transactionBar->setBehaviors(KpkTransactionBar::AutoHide); QString locale(KGlobal::locale()->language() + '.' + KGlobal::locale()->encoding()); Client::instance()->setHints("locale=" + locale); - m_actions = Client::instance()->actions(); + m_roles = Client::instance()->actions(); - if (!(m_actions & Client::ActionRefreshCache)) { + if (!(m_roles & Enum::RoleRefreshCache)) { intervalL->setEnabled(false); intervalCB->setEnabled(false); } m_originModel = new KpkModelOrigin(this); originLW->setModel(m_originModel); - if (m_actions & Client::ActionGetRepoList) { - m_trasaction = Client::instance()->getRepoList(PackageKit::Client::FilterNotDevelopment); + if (m_roles & Enum::RoleGetRepoList) { + m_trasaction = Client::instance()->getRepoList(PackageKit::Enum::FilterNotDevelopment); connect(m_trasaction, SIGNAL(repoDetail(const QString &, const QString &, bool)), m_originModel, SLOT(addOriginItem(const QString &, const QString &, bool))); - connect(m_trasaction, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + connect(m_trasaction, SIGNAL(finished(PackageKit::Enum::Exit, uint)), m_originModel, SLOT(finished())); connect(m_originModel, SIGNAL(stateChanged()), this, SLOT(checkChanges())); } @@ -73,13 +76,14 @@ connect(autoCB, SIGNAL(currentIndexChanged(int)), this, SLOT(checkChanges())); } +// TODO update the repo list connecting to repo changed signal void KpkSettings::on_showOriginsCB_stateChanged(int state) { m_trasaction = Client::instance()->getRepoList( - state == Qt::Checked ? Client::NoFilter : Client::FilterNotDevelopment ); + state == Qt::Checked ? Enum::NoFilter : Enum::FilterNotDevelopment); connect(m_trasaction, SIGNAL(repoDetail(const QString &, const QString &, bool)), m_originModel, SLOT(addOriginItem(const QString &, const QString &, bool))); - connect(m_trasaction, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + connect(m_trasaction, SIGNAL(finished(PackageKit::Enum::Exit, uint)), m_originModel, SLOT(finished())); connect(m_originModel, SIGNAL(stateChanged()), this, SLOT(checkChanges())); transactionBar->addTransaction(m_trasaction); @@ -91,15 +95,15 @@ KConfigGroup notifyGroup( &config, "Notify" ); KConfigGroup checkUpdateGroup( &config, "CheckUpdate" ); if (notifyUpdatesCB->checkState() != - (Qt::CheckState) notifyGroup.readEntry("notifyUpdates", (int) Qt::Checked) + static_cast(notifyGroup.readEntry("notifyUpdates", (int) Qt::Checked)) || intervalCB->itemData(intervalCB->currentIndex()).toUInt() != - (uint) checkUpdateGroup.readEntry("interval", KpkEnum::TimeIntervalDefault) + static_cast(checkUpdateGroup.readEntry("interval", KpkEnum::TimeIntervalDefault)) || autoCB->itemData(autoCB->currentIndex()).toUInt() != - (uint) checkUpdateGroup.readEntry("autoUpdate", KpkEnum::AutoUpdateDefault) + static_cast(checkUpdateGroup.readEntry("autoUpdate", KpkEnum::AutoUpdateDefault)) || - ((m_actions & Client::ActionGetRepoList) ? m_originModel->changed() : false)) { + ((m_roles & Enum::RoleGetRepoList) ? m_originModel->changed() : false)) { emit(changed(true)); } else { emit(changed(false)); @@ -116,8 +120,8 @@ { KConfig config("KPackageKit"); KConfigGroup notifyGroup( &config, "Notify" ); - notifyUpdatesCB->setCheckState((Qt::CheckState) notifyGroup.readEntry("notifyUpdates", - (int) Qt::Checked)); + notifyUpdatesCB->setCheckState(static_cast(notifyGroup.readEntry("notifyUpdates", + static_cast(Qt::Checked)))); KConfigGroup checkUpdateGroup(&config, "CheckUpdate"); uint interval = checkUpdateGroup.readEntry("interval", KpkEnum::TimeIntervalDefault); @@ -132,17 +136,18 @@ uint autoUpdate = checkUpdateGroup.readEntry("autoUpdate", KpkEnum::AutoUpdateDefault); ret = autoCB->findData(autoUpdate); - if (ret == -1) + if (ret == -1) { // this is if someone change the file by hand... autoCB->setCurrentIndex( autoCB->findData(KpkEnum::AutoUpdateDefault) ); - else + } else { autoCB->setCurrentIndex(ret); + } - if (m_actions & Client::ActionGetRepoList) { - m_trasaction = Client::instance()->getRepoList(PackageKit::Client::FilterNotDevelopment); + if (m_roles & Enum::RoleGetRepoList) { + m_trasaction = Client::instance()->getRepoList(PackageKit::Enum::FilterNotDevelopment); connect(m_trasaction, SIGNAL(repoDetail(const QString &, const QString &, bool)), m_originModel, SLOT(addOriginItem(const QString &, const QString &, bool))); - connect(m_trasaction, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + connect(m_trasaction, SIGNAL(finished(PackageKit::Enum::Exit, uint)), m_originModel, SLOT(finished())); connect(m_originModel, SIGNAL(stateChanged()), this, SLOT(checkChanges())); transactionBar->addTransaction(m_trasaction); @@ -155,13 +160,13 @@ KConfigGroup notifyGroup(&config, "Notify"); // not used anymore notifyGroup.deleteEntry("notifyLongTasks"); - notifyGroup.writeEntry("notifyUpdates", (int) notifyUpdatesCB->checkState()); - KConfigGroup checkUpdateGroup( &config, "CheckUpdate"); + notifyGroup.writeEntry("notifyUpdates", static_cast(notifyUpdatesCB->checkState())); + KConfigGroup checkUpdateGroup(&config, "CheckUpdate"); checkUpdateGroup.writeEntry("interval", intervalCB->itemData(intervalCB->currentIndex()).toUInt()); checkUpdateGroup.writeEntry("autoUpdate", autoCB->itemData(autoCB->currentIndex()).toUInt()); // check to see if the backend support this - if (m_actions & Client::ActionGetRepoList) { - if ( !m_originModel->save() ) { + if (m_roles & Enum::RoleGetRepoList) { + if (!m_originModel->save()) { KMessageBox::sorry(this, i18n("You do not have the necessary privileges to perform this action."), i18n("Failed to set origin data")); diff -Nru kpackagekit-0.5.4/Settings/KpkSettings.h kpackagekit-0.6.0/Settings/KpkSettings.h --- kpackagekit-0.5.4/Settings/KpkSettings.h 2009-11-17 12:32:04.000000000 +0000 +++ kpackagekit-0.6.0/Settings/KpkSettings.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -24,10 +24,10 @@ #include #include "ui_KpkSettings.h" -#include "KpkModelOrigin.h" using namespace PackageKit; +class KpkModelOrigin; class KpkSettings : public QWidget, public Ui::KpkSettings { Q_OBJECT @@ -50,7 +50,7 @@ private: Transaction *m_trasaction; KpkModelOrigin *m_originModel; - Client::Actions m_actions; + Enum::Roles m_roles; }; #endif diff -Nru kpackagekit-0.5.4/SmartIcon/KPackageKitSmartIcon.notifyrc kpackagekit-0.6.0/SmartIcon/KPackageKitSmartIcon.notifyrc --- kpackagekit-0.5.4/SmartIcon/KPackageKitSmartIcon.notifyrc 2009-11-17 12:32:03.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KPackageKitSmartIcon.notifyrc 2010-03-19 21:14:58.000000000 +0000 @@ -3,6 +3,7 @@ Name=KPackageKit Name[bg]=KPackageKit Name[ca]=KPackageKit +Name[ca@valencia]=KPackageKit Name[cs]=KPackageKit Name[da]=KPackageKit Name[de]=KPackageKit @@ -10,9 +11,11 @@ Name[en_GB]=KPackageKit Name[es]=KPackageKit Name[et]=KPackageKit +Name[fi]=KPackageKit Name[fr]=KPackageKit Name[ga]=KPackageKit Name[gl]=KPackageKit +Name[hu]=KPackageKit Name[km]=KPackageKit Name[nds]=KPackageKit Name[nl]=KPackageKit @@ -29,6 +32,7 @@ Comment=KPackageKit Comment[bg]=KPackageKit Comment[ca]=KPackageKit +Comment[ca@valencia]=KPackageKit Comment[cs]=KPackageKit Comment[da]=KPackageKit Comment[de]=KPackageKit @@ -36,9 +40,11 @@ Comment[en_GB]=KPackageKit Comment[es]=KPackageKit Comment[et]=KPackageKit +Comment[fi]=KPackageKit Comment[fr]=KPackageKit Comment[ga]=KPackageKit Comment[gl]=KPackageKit +Comment[hu]=KPackageKit Comment[km]=KPackageKit Comment[nds]=KPackageKit Comment[nn]=KPackageKit @@ -56,14 +62,17 @@ Name=New updates avaliable Name[bg]=Има нови налични обновления Name[ca]=Hi ha noves actualitzacions disponibles +Name[ca@valencia]=Hi ha noves actualitzacions disponibles Name[cs]=Dostupné nové aktualizace Name[da]=Nye opdateringer tilgængelige Name[el]=Νέες ενημερώσεις διαθέσιμες Name[en_GB]=New updates avaliable Name[es]=Nuevas actualizaciones disponibles Name[et]=Saadaval on uuendused +Name[fi]=Uusia päivityksiä saatavilla Name[fr]=De nouvelles mises à jour sont disponibles Name[gl]=Hai novas actualizacións dispoñíbeis +Name[hu]=Új frissítések elérhetőek Name[km]=ភាព​ទាន់សម័យ​ថ្មី​ដែល​មាន Name[nds]=Nieg Opfrischen verföögbor Name[nn]=Oppdateringar er tilgjengelege @@ -71,7 +80,7 @@ Name[pt]=Estão disponíveis actualizações novas Name[pt_BR]=Novas atualizações disponíveis Name[ro]=Sînt disponibile actualizări -Name[sk]=Dostupné nové aktualizácie +Name[sk]=Sú dostupné nové aktualizácie Name[sv]=Nya uppdateringar tillgängliga Name[tr]=Yeni güncellemeler var Name[uk]=Доступні оновлення @@ -82,15 +91,18 @@ Name=Updates are being installed Name[bg]=Обновяванията се инсталират Name[ca]=S'estan instal·lant les actualitzacions +Name[ca@valencia]=S'estan instal·lant les actualitzacions Name[cs]=Aktualizace jsou instalovány Name[da]=Opdateringer installeres Name[el]=Γίνεται εγκατάσταση των ενημερώσεων Name[en_GB]=Updates are being installed Name[es]=Las actualizaciones se están instalando Name[et]=Uuendused paigaldatakse +Name[fi]=Päivityksiä asennetaan Name[fr]=Installation des mises à jour Name[ga]=Nuashonruithe á suiteáil Name[gl]=Estanse a instalar actualizacións +Name[hu]=Frissítések telepítése zajlik Name[km]=កំពុង​ដំឡើង​ភាព​ទាន់សម័យ Name[nds]=Opfrischen warrt installeert Name[nl]=Opwaarderingen worden geïnstalleerd @@ -110,14 +122,17 @@ Name=A System Restart is Required Name[bg]=Нужен е рестарт на системата Name[ca]=Cal reiniciar el sistema +Name[ca@valencia]=Cal reiniciar el sistema Name[cs]=Je vyžadován restart systému Name[da]=Genstart af system kræves Name[el]=Απαιτείται επανεκκίνηση του συστήματος Name[en_GB]=A System Restart is Required Name[es]=Es necesario reiniciar el equipo Name[et]=Vajalik on süsteemi taaskäivitus +Name[fi]=Järjestelmä pitää käynnistää uudelleen Name[fr]=Un redémarrage du système est nécessaire Name[gl]=Requírese un reinicio do sistema +Name[hu]=Egy rendszer újraindítás szükségeltetik Name[km]=តម្រូវ​ឲ្យ​ចាប់ផ្ដើម​ប្រព័ន្ធ​ឡើង​វិញ Name[nds]=En Systeem-Niegstart deit noot Name[nn]=Du må starta om att datamaskina @@ -135,16 +150,20 @@ [Event/TransactionFailed] Name=A transaction failed to complete successfully Name[ca]=No s'ha pogut completar la transacció +Name[ca@valencia]=No s'ha pogut completar la transacció Name[cs]=Dokončení transakce selhalo Name[da]=En transaktion blev ikke fuldt gennemført Name[en_GB]=A transaction failed to complete successfully Name[es]=Una transacción no ha podido completarse con éxito Name[et]=Ülekande lõpetamine nurjus +Name[fi]=Toimenpide ei valmistunut onnistuneesti Name[fr]=L'échec d'une transaction n'a pas permis de terminer convenablement Name[gl]=Unha transacción non se completou satisfactoriamente +Name[hu]=Egy tranzakciót nem sikerült teljesíteni Name[km]=ការ​ផ្ទេរ​បានបរាជ័យ​ក្នុងការ​បញ្ចប់​ដោយ​ជោគជ័យ Name[nds]=En Transakschoon lett sik nich mit Spood afsluten Name[nn]=Ei overføring vart ikkje fullførd +Name[pa]=ਟਰਾਂਸੈਕਸ਼ਨ ਪੂਰੀ ਹੋਣ ਲਈ ਫੇਲ੍ਹ ਹੈ Name[pt]=Não foi possível terminar com sucesso uma transacção Name[pt_BR]=Não foi possível concluir com sucesso uma transação Name[ro]=Încheierea cu succes a unei tranzacții a eșuat @@ -159,20 +178,24 @@ Name=Updates finished installing Name[bg]=Приключено с инсталирането на обновления Name[ca]=Les actualitzacions s'han acabat d'instal·lar +Name[ca@valencia]=Les actualitzacions s'han acabat d'instal·lar Name[cs]=Instalace aktualizací dokončena Name[da]=Opdateringer er færdige med installation Name[en_GB]=Updates finished installing Name[es]=Las actualizaciones han terminado de instalarse Name[et]=Uuendused on paigaldatud +Name[fi]=Päivitysten asennus valmistui Name[fr]=Fin de l'installation des mises à jour Name[gl]=Rematou de instalarse as actualizacións +Name[hu]=Frissítések telepítése befejezve Name[km]=បានបញ្ចប់​ការ​ដំឡើង​ភាព​ទាន់សម័យ Name[nds]=Opfrischen installeert Name[nn]=Oppdateringane er installerte +Name[pa]=ਅੱਪਡੇਟ ਇੰਸਟਾਲ ਹੋਣੇ ਮੁਕੰਮਲ Name[pt]=As actualizações acabar de ser instaladas Name[pt_BR]=As atualizações acabam de ser instaladas Name[ro]=Instalarea actualizărilor s-a încheiat -Name[sk]=Dokončená inštalácia aktualizácií +Name[sk]=Inštalácia aktualizácií bola dokončená Name[sv]=Installering av uppdateringar klar Name[tr]=Güncellemelerin yüklenmesi tamamlandı Name[uk]=Встановлення оновлень завершено @@ -182,14 +205,18 @@ [Event/TransactionError] Name=A transaction error occurred Name[ca]=Hi ha hagut un error durant la transacció +Name[ca@valencia]=Hi ha hagut un error durant la transacció Name[cs]=Nastala chyba v transakci Name[da]=En transaktionsfejl opstod Name[en_GB]=A transaction error occurred Name[es]=Ha ocurrido un error en la transacción Name[et]=Tekkis ülekandeviga +Name[fi]=Toimenpiteen aikana sattui virhe Name[fr]=Une erreur de transaction est apparue +Name[hu]=Egy tranzakciós hiba történt Name[nds]=Dat geev en Fehler bi en Transakschoon. Name[nn]=Det oppstod ein feil under overføringa. +Name[pa]=ਟਰਾਂਸੈਕਸ਼ਨ ਗਲਤੀ ਆਈ ਹੈ Name[pt]=Ocorreu um erro de transacção Name[pt_BR]=Ocorreu um erro na transação Name[ro]=A intervenit o eroare la tranzacție @@ -202,16 +229,21 @@ [Event/DistroUpgradeAvailable] Name=A distribution upgrade is available +Name[bg]=Налично е обновление на дистрибуцията Name[ca]=Hi ha disponible una actualització de la distribució +Name[ca@valencia]=Hi ha disponible una actualització de la distribució Name[cs]=Je dostupná aktualizace distribuce Name[da]=En distributionsopgradering er tilgængelig Name[en_GB]=A distribution upgrade is available Name[es]=Hay disponible una actualización de la distribución Name[et]=Saadaval on distributsiooni uuendus +Name[fi]=Saatavilla on jakelupäivitys Name[fr]=Une mise à jour de la distribution est disponible Name[gl]=Disponse dunha versión nova da distribución +Name[hu]=Egy disztribúció frissítés elérhető Name[nds]=Distributschoon-Opfrischen verföögbor Name[nn]=Ei distribusjonsoppdatering er tilgjengeleg +Name[pa]=ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਉਪਲੱਬਧ ਹੈ Name[pt]=Está disponível uma actualização da distribuição Name[pt_BR]=Está disponível uma atualização da distribuição Name[ro]=Este disponibilă o actualizare a distribuției @@ -224,20 +256,25 @@ [Event/DistroUpgradeFinished] Name=The distribution upgrade completed +Name[bg]=Обновяването на дистрибуцията приключи Name[ca]=S'ha completat l'actualització de la distribució +Name[ca@valencia]=S'ha completat l'actualització de la distribució Name[cs]=Aktualizace distribuce dokončena Name[da]=Distributionsopgradering gennemført Name[en_GB]=The distribution upgrade completed Name[es]=Actualización de la distribución completada Name[et]=Distributsioon on uuendatud +Name[fi]=Jakelupäivitys valmistui Name[fr]=Fin de la mise à jour de la distribution Name[gl]=Completouse o paso á nova versión da distribución. +Name[hu]=A disztribúció frissítés befejeződött Name[nds]=Distributschoon-Opfrischen afslaten Name[nn]=Distribusjonsoppdateringa er fullførd +Name[pa]=ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਮੁਕੰਮਲ ਹੋਇਆ Name[pt]=A actualização da distribuição está completa Name[pt_BR]=A atualização da distribuição foi concluída Name[ro]=Actualizarea distribuției s-a încheiat -Name[sk]=Dokončená aktualizácia distribúcie +Name[sk]=Aktualizácia distribúcie bola dokončená Name[sv]=Uppgraderingen av distributionen färdig Name[tr]=Dağıtım güncellemesi tamamlandı Name[uk]=Оновлення дистрибутива завершено @@ -246,16 +283,21 @@ [Event/DistroUpgradeError] Name=The distribution upgrade completed with an error +Name[bg]=Имаше грешка при обновяване на дистрибуцията Name[ca]=S'ha completat l'actualització de la distribució amb un error +Name[ca@valencia]=S'ha completat l'actualització de la distribució amb un error Name[cs]=Aktualizace distribuce dokončena s chybou Name[da]=Distributionsopgraderingen blev gennemført med en fejl Name[en_GB]=The distribution upgrade completed with an error Name[es]=Actualización de la distribución completada con errores Name[et]=Distributsioon uuendati, aga vigadega +Name[fi]=Jakelupäivitys päättyi virheeseen Name[fr]=Échec de la mise à jour de la distribution Name[gl]=O proceso de anovar a distribución completouse con erros +Name[hu]=A disztribúció frissítés egy hibával ért véget Name[nds]=Distributschoon-Opfrischen wöör mit en Fehler beendt Name[nn]=Distribusjonsoppdateringa er fullførd med feil +Name[pa]=ਡਿਸਟਰੀਬਿਊਸ਼ਨ ਅੱਪਗਰੇਡ ਗਲਤੀ ਨਾਲ ਪੂਰਾ ਹੋਇਆ Name[pt]=A actualização da distribuição terminou com erros Name[pt_BR]=A atualização da distribuição foi concluída com um erro Name[ro]=Actualizarea distribuției s-a încheiat cu o eroare diff -Nru kpackagekit-0.5.4/SmartIcon/KpkDistroUpgrade.cpp kpackagekit-0.6.0/SmartIcon/KpkDistroUpgrade.cpp --- kpackagekit-0.5.4/SmartIcon/KpkDistroUpgrade.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkDistroUpgrade.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -50,7 +50,7 @@ } } -void KpkDistroUpgrade::distroUpgrade(PackageKit::Client::DistroUpgradeType type, const QString &name, const QString &description) +void KpkDistroUpgrade::distroUpgrade(PackageKit::Enum::DistroUpgrade type, const QString &name, const QString &description) { Q_UNUSED(type) kDebug() << "Distro upgrade found!" << name << description; diff -Nru kpackagekit-0.5.4/SmartIcon/KpkDistroUpgrade.h kpackagekit-0.6.0/SmartIcon/KpkDistroUpgrade.h --- kpackagekit-0.5.4/SmartIcon/KpkDistroUpgrade.h 2009-11-17 12:32:03.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkDistroUpgrade.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -38,7 +38,7 @@ void checkDistroUpgrades(); private slots: - void distroUpgrade(PackageKit::Client::DistroUpgradeType type, const QString &name, const QString &description); + void distroUpgrade(PackageKit::Enum::DistroUpgrade type, const QString &name, const QString &description); void handleDistroUpgradeAction(uint action); void distroUpgradeError(QProcess::ProcessError error); void distroUpgradeFinished(int exitCode, QProcess::ExitStatus exitStatus); diff -Nru kpackagekit-0.5.4/SmartIcon/KpkInstallProvideFile.cpp kpackagekit-0.6.0/SmartIcon/KpkInstallProvideFile.cpp --- kpackagekit-0.5.4/SmartIcon/KpkInstallProvideFile.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkInstallProvideFile.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -66,7 +66,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for a package that provides these files and install it" ,"Install")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); int ret; ret = KMessageBox::questionYesNo(0, msg, @@ -82,8 +82,8 @@ KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); connect(trans, SIGNAL(kTransactionFinished(KpkTransaction::ExitStatus)), this, SLOT(kTransactionFinished(KpkTransaction::ExitStatus))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); trans->show(); // return to avoid the decreaseRunning() return; @@ -121,7 +121,7 @@ decreaseRunning(); } -void KpkInstallProvideFile::addPackage(PackageKit::Package *package) +void KpkInstallProvideFile::addPackage(PackageKit::QSharedPointerpackage) { if (package->state() != Package::StateInstalled) { m_foundPackages.append(package); diff -Nru kpackagekit-0.5.4/SmartIcon/KpkInstallProvideFile.h kpackagekit-0.6.0/SmartIcon/KpkInstallProvideFile.h --- kpackagekit-0.5.4/SmartIcon/KpkInstallProvideFile.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkInstallProvideFile.h 2010-03-19 21:14:58.000000000 +0000 @@ -40,10 +40,10 @@ private slots: void kTransactionFinished(KpkTransaction::ExitStatus status); - void addPackage(PackageKit::Package *package); + void addPackage(PackageKit::QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QHash m_transactionFiles; QStringList m_args; QString m_alreadyInstalled; diff -Nru kpackagekit-0.5.4/SmartIcon/KpkInterface.cpp kpackagekit-0.6.0/SmartIcon/KpkInterface.cpp --- kpackagekit-0.5.4/SmartIcon/KpkInterface.cpp 2009-11-17 18:25:12.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkInterface.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 Daniel Nicoletti * + * Copyright (C) 2008-2010 Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff -Nru kpackagekit-0.5.4/SmartIcon/KpkTransactionTrayIcon.cpp kpackagekit-0.6.0/SmartIcon/KpkTransactionTrayIcon.cpp --- kpackagekit-0.5.4/SmartIcon/KpkTransactionTrayIcon.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkTransactionTrayIcon.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -27,12 +27,12 @@ #include #include -#include #include #include #include #include #include +#include #include #include @@ -65,7 +65,7 @@ connect(m_client, SIGNAL(transactionListChanged(const QList &)), this, SLOT(transactionListChanged(const QList &))); - if (m_act & Client::ActionRefreshCache) { + if (m_act & Enum::RoleRefreshCache) { m_refreshCacheAction = new QAction(this); m_refreshCacheAction->setText(i18n("Refresh package list")); m_refreshCacheAction->setIcon(KIcon("view-refresh")); @@ -85,7 +85,7 @@ m_smartSTI, SLOT(hide())); // initiate the restart type - m_restartType = Client::RestartNone; + m_restartType = Enum::RestartNone; m_restartAction = new QAction(this); connect(m_restartAction, SIGNAL(triggered(bool)), @@ -125,29 +125,22 @@ // Check to see if we set a Transaction->tid() in action if (!action->data().isNull()) { // we need to find if the action clicked has already a dialog - QString tid = action->data().toString(); - if (m_transDialogs.contains(tid)) { - m_transDialogs[tid]->raise(); - } else { - // if we don't have a dialog already displaying - // our transaction let's create one - // BUT first we need to get the transaction pointer, - // since it might be already deleted if the transaction - // finished - foreach(Transaction *trans, Client::instance()->getTransactions()) { - if (trans->tid() == tid) { - // found it let's create a dialog - createTransactionDialog(trans); - break; - } - } - // if we don't find just don't do anything - } + createTransactionDialog(action->data().value()); } } void KpkTransactionTrayIcon::createTransactionDialog(Transaction *t) { + // if we don't have a dialog already displaying + // our transaction let's create one + // BUT first we need to get the transaction pointer, + // since it might be already deleted if the transaction + // finished + if (m_transDialogs.contains(t->tid())) { + KWindowSystem::forceActiveWindow(m_transDialogs[t->tid()]->winId()); + return; + } + increaseRunning(); // we need to close on finish otherwise smart-icon will timeout KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish, m_menu); @@ -175,14 +168,14 @@ setCurrentTransaction(tids.first()); } else { if (m_messages.isEmpty() && - m_restartType == Client::RestartNone) + m_restartType == Enum::RestartNone) { m_menu->hide(); m_smartSTI->hide(); emit close(); } else { QString toolTip; - if (m_restartType != Client::RestartNone) { + if (m_restartType != Enum::RestartNone) { toolTip.append(KpkStrings::restartType(m_restartType) + '\n'); toolTip.append(i18np("Package: %2", "Packages: %2", @@ -214,24 +207,21 @@ transactionChanged(); connect(m_currentTransaction, SIGNAL(changed()), this, SLOT(transactionChanged())); - connect(m_currentTransaction, SIGNAL(message(PackageKit::Client::MessageType, const QString &)), - this, SLOT(message(PackageKit::Client::MessageType, const QString &))); - connect(m_currentTransaction, SIGNAL(requireRestart(PackageKit::Client::RestartType, Package *)), - this, SLOT(requireRestart(PackageKit::Client::RestartType, Package *))); - connect(m_currentTransaction, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(finished(PackageKit::Transaction::ExitStatus, uint))); + connect(m_currentTransaction, SIGNAL(message(PackageKit::Enum::Message, const QString &)), + this, SLOT(message(PackageKit::Enum::Message, const QString &))); + connect(m_currentTransaction, SIGNAL(requireRestart(PackageKit::Enum::Restart, QSharedPointer)), + this, SLOT(requireRestart(PackageKit::Enum::Restart, QSharedPointer))); + connect(m_currentTransaction, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished())); m_smartSTI->show(); } -void KpkTransactionTrayIcon::finished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkTransactionTrayIcon::finished() { - Q_UNUSED(status) - Q_UNUSED(runtime) - // check if the transaction emitted any require restart - if (m_restartType != Client::RestartNone) { + if (m_restartType != Enum::RestartNone) { increaseRunning(); - Client::RestartType type = m_restartType; + Enum::Restart type = m_restartType; // Create the notification object KNotification *notify = new KNotification("RestartRequired", 0, KNotification::Persistent); @@ -245,26 +235,25 @@ QStringList actions; switch (type) { - case Client::RestartSystem : - case Client::RestartSecuritySystem : + case Enum::RestartSystem : + case Enum::RestartSecuritySystem : actions << i18nc("Restart the computer", "Restart"); actions << i18n("Not now"); m_restartAction->setText(i18nc("Restart the computer", "Restart")); break; - case Client::RestartSession : - case Client::RestartSecuritySession : + case Enum::RestartSession : + case Enum::RestartSecuritySession : actions << i18n("Logout"); actions << i18n("Not now"); m_restartAction->setText(i18n("Logout")); break; - case Client::RestartApplication : + case Enum::RestartApplication : // What do we do in restart application? // we don't even know what application is // SHOULD we check for pkg and see the installed // files and try to match some running process? break; - case Client::RestartNone : - case Client::UnknownRestartType : + default : // We do not set a restart type cause it will probably // be already none, if not we will still want that restart type. return; @@ -282,14 +271,14 @@ notify->sendEvent(); // Reset the restart type - m_restartType = Client::RestartNone; + m_restartType = Enum::RestartNone; } } void KpkTransactionTrayIcon::transactionChanged() { - uint percentage = m_currentTransaction->percentage(); - Transaction::Status status = m_currentTransaction->status(); + uint percentage = m_currentTransaction->percentage(); + Enum::Status status = m_currentTransaction->status(); QString toolTip; if (percentage && percentage <= 100) { @@ -302,7 +291,7 @@ m_smartSTI->setIcon(KpkIcons::statusIcon(status)); } -void KpkTransactionTrayIcon::message(PackageKit::Client::MessageType type, const QString &message) +void KpkTransactionTrayIcon::message(PackageKit::Enum::Message type, const QString &message) { m_messages.append(qMakePair(type, message)); } @@ -328,7 +317,7 @@ model->setHorizontalHeaderLabels(QStringList() << i18n("Message") << i18n("Details")); while (!m_messages.isEmpty()) { - QPair pair = m_messages.takeFirst(); + QPair pair = m_messages.takeFirst(); model->appendRow(QList() << new QStandardItem(KpkStrings::message(pair.first)) << new QStandardItem(pair.second) @@ -355,9 +344,9 @@ QAction *transactionAction = new QAction(this); // We use the tid since the pointer might get deleted // as it was some times - transactionAction->setData(t->tid()); + transactionAction->setData(QVariant::fromValue(t)); - if (t->role() == Client::ActionRefreshCache) { + if (t->role() == Enum::RoleRefreshCache) { refreshCache = false; } @@ -372,7 +361,7 @@ if (refreshCache && m_refreshCacheAction) { m_menu->addAction(m_refreshCacheAction); } - if (m_restartType != Client::RestartNone) { + if (m_restartType != Enum::RestartNone) { m_menu->addAction(m_restartAction); } if (m_messages.size()) { @@ -395,7 +384,7 @@ } } -void KpkTransactionTrayIcon::requireRestart(PackageKit::Client::RestartType type, Package *pkg) +void KpkTransactionTrayIcon::requireRestart(PackageKit::Enum::Restart type, QSharedPointer pkg) { int old = KpkImportance::restartImportance(m_restartType); int newer = KpkImportance::restartImportance(type); @@ -430,11 +419,11 @@ // KWorkSpace::ShutdownConfirmYes = 1 message << qVariantFromValue(1); - if (m_restartType == Client::RestartSystem) { + if (m_restartType == Enum::RestartSystem) { // The restart type was system // KWorkSpace::ShutdownTypeReboot = 1 message << qVariantFromValue(1); - } else if (m_restartType == Client::RestartSession) { + } else if (m_restartType == Enum::RestartSession) { // The restart type was session // KWorkSpace::ShutdownTypeLogout = 3 message << qVariantFromValue(3); @@ -457,7 +446,7 @@ return KpkAbstractIsRunning::isRunning() || Client::instance()->getTransactions().size() || m_messages.size() || - m_restartType != Client::RestartNone; + m_restartType != Enum::RestartNone; } #include "KpkTransactionTrayIcon.moc" diff -Nru kpackagekit-0.5.4/SmartIcon/KpkTransactionTrayIcon.h kpackagekit-0.6.0/SmartIcon/KpkTransactionTrayIcon.h --- kpackagekit-0.5.4/SmartIcon/KpkTransactionTrayIcon.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkTransactionTrayIcon.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -50,9 +50,9 @@ void triggered(QAction *action); void createTransactionDialog(Transaction *t); void transactionDialogClosed(); - void message(PackageKit::Client::MessageType type, const QString &message); - void requireRestart(PackageKit::Client::RestartType type, Package *pkg); - void finished(PackageKit::Transaction::ExitStatus status, uint runtime); + void message(PackageKit::Enum::Message type, const QString &message); + void requireRestart(PackageKit::Enum::Restart type, QSharedPointerpkg); + void finished(); void restartActivated(uint action = 1); void transactionChanged(); void logout(); @@ -64,7 +64,7 @@ void updateMenu(const QList &tids); void setCurrentTransaction(PackageKit::Transaction *transaction); - Client::Actions m_act; + Enum::Roles m_act; KSystemTrayIcon *m_smartSTI; Client *m_client; Transaction *m_pkClient_updates; @@ -77,11 +77,11 @@ QAction *m_refreshCacheAction; // Message Container - QList > m_messages; + QList > m_messages; QAction *m_messagesAction; // Restart menu entry - Client::RestartType m_restartType; + Enum::Restart m_restartType; QAction *m_restartAction; QStringList m_restartPackages; diff -Nru kpackagekit-0.5.4/SmartIcon/KpkTransactionWatcher.cpp kpackagekit-0.6.0/SmartIcon/KpkTransactionWatcher.cpp --- kpackagekit-0.5.4/SmartIcon/KpkTransactionWatcher.cpp 2009-11-17 18:25:12.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkTransactionWatcher.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -29,7 +29,7 @@ #include #include -Q_DECLARE_METATYPE(PackageKit::Client::ErrorType) +Q_DECLARE_METATYPE(PackageKit::Enum::Error) KpkTransactionWatcher::KpkTransactionWatcher(QObject *parent) : KpkAbstractIsRunning(parent) @@ -42,7 +42,7 @@ void KpkTransactionWatcher::watchTransaction(const QString &tid, bool interactive) { - foreach(Transaction *trans, m_hiddenTransactions) { + foreach(const Transaction *trans, m_hiddenTransactions) { if (trans->tid() == tid) { // Oops we are already watching this one // kDebug() << "Oops we are already watching this one" << tid; @@ -55,10 +55,10 @@ // kDebug() << "found it let's start watching" << tid; m_hiddenTransactions.append(trans); trans->setProperty("interactive", QVariant(interactive)); - connect(trans, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(finished(PackageKit::Transaction::ExitStatus, uint))); - connect(trans, SIGNAL(errorCode(PackageKit::Client::ErrorType, const QString &)), - this, SLOT(errorCode(PackageKit::Client::ErrorType, const QString &))); + connect(trans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished())); + connect(trans, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &))); break; } } @@ -72,21 +72,22 @@ // kDebug() << "found it let's remove" << tid; m_hiddenTransactions.removeOne(trans); // disconnect to not show any notification - trans->disconnect(); + disconnect(trans, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(finished())); + disconnect(trans, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &))); break; } } } -void KpkTransactionWatcher::finished(PackageKit::Transaction::ExitStatus status, uint time) +void KpkTransactionWatcher::finished() { - Q_UNUSED(status) - Q_UNUSED(time) m_hiddenTransactions.removeOne(qobject_cast(sender())); // TODO if the transaction took too long to finish warn the user } -void KpkTransactionWatcher::errorCode(PackageKit::Client::ErrorType err, const QString &details) +void KpkTransactionWatcher::errorCode(PackageKit::Enum::Error err, const QString &details) { increaseRunning(); KNotification *notify; @@ -130,9 +131,9 @@ void KpkTransactionWatcher::showError() { increaseRunning(); - PackageKit::Client::ErrorType error; + Enum::Error error; QString details; - error = sender()->property("ErrorType").value(); + error = sender()->property("ErrorType").value(); details = sender()->property("Details").toString(); KMessageBox::detailedSorry(0, KpkStrings::errorMessage(error), diff -Nru kpackagekit-0.5.4/SmartIcon/KpkTransactionWatcher.h kpackagekit-0.6.0/SmartIcon/KpkTransactionWatcher.h --- kpackagekit-0.5.4/SmartIcon/KpkTransactionWatcher.h 2009-11-17 18:25:12.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkTransactionWatcher.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -40,9 +40,9 @@ void removeTransactionWatcher(const QString &tid); private slots: - void errorCode(PackageKit::Client::ErrorType, const QString&); + void errorCode(PackageKit::Enum::Error, const QString&); void errorActivated(uint action); - void finished(PackageKit::Transaction::ExitStatus status, uint time); + void finished(); void showError(); private: diff -Nru kpackagekit-0.5.4/SmartIcon/KpkUpdateIcon.cpp kpackagekit-0.6.0/SmartIcon/KpkUpdateIcon.cpp --- kpackagekit-0.5.4/SmartIcon/KpkUpdateIcon.cpp 2009-11-17 18:25:12.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkUpdateIcon.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,7 +1,7 @@ /*************************************************************************** * Copyright (C) 2008 by Trever Fischer * * wm161@wm161.net * - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -74,7 +74,7 @@ QProcess::execute("kpackagekit", QStringList() << "--settings"); // KCMultiDialog* settings = new KCMultiDialog(); // settings->setWindowIcon( KIcon("applications-other") ); -// settings->addModule( KCModuleInfo::KCModuleInfo("kpk_settings.desktop") ); +// settings->addModule( KCModuleInfo("kpk_settings.desktop") ); // connect(settings, SIGNAL( finished() ), // settings, SLOT( deleteLater() )); // settings->show(); @@ -105,7 +105,7 @@ // if (m_updateView==0) { // m_updateView = new KCMultiDialog(); // m_updateView->setWindowIcon( KIcon("applications-other") ); -// m_updateView->addModule( KCModuleInfo::KCModuleInfo("kpk_update.desktop") ); +// m_updateView->addModule( KCModuleInfo("kpk_update.desktop") ); // connect(m_updateView, SIGNAL( finished(int) ), // this, SLOT( updaterClosed(int) )); // m_updateView->raise(); @@ -133,7 +133,7 @@ notify->setPixmap(KIcon("dialog-error").pixmap(KPK_ICON_SIZE, KPK_ICON_SIZE)); notify->sendEvent(); } else { - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), this, SLOT(update())); // don't be interactive to not upset an idle user emit watchTransaction(t->tid(), false); @@ -151,23 +151,23 @@ { KConfig config("KPackageKit"); KConfigGroup notifyGroup(&config, "Notify"); - if (Qt::Checked == (Qt::CheckState) notifyGroup.readEntry("notifyUpdates", (int) Qt::Checked)) { + if (Qt::Checked == static_cast(notifyGroup.readEntry("notifyUpdates", static_cast(Qt::Checked)))) { m_updateList.clear(); Transaction *t = Client::instance()->getUpdates(); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(updateListed(PackageKit::Package *))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(updateCheckFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(package(QSharedPointer)), + this, SLOT(updateListed(QSharedPointer))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(updateCheckFinished())); } else { decreaseRunning(); } } -void KpkUpdateIcon::updateListed(PackageKit::Package *package) +void KpkUpdateIcon::updateListed(QSharedPointerpackage) { // Blocked updates are not instalable updates so there is no // reason to show/count them - if (package->state() != Package::StateBlocked) { + if (package->info() != Enum::InfoBlocked) { m_updateList.append(package); } } @@ -177,18 +177,18 @@ { KConfig config("KPackageKit"); KConfigGroup checkUpdateGroup(&config, "CheckUpdate"); - Qt::CheckState notifyUpdates = (Qt::CheckState) checkUpdateGroup.readEntry("notifyUpdates", (int) Qt::Checked); + Qt::CheckState notifyUpdates = static_cast(checkUpdateGroup.readEntry("notifyUpdates", static_cast(Qt::Checked))); if (notifyUpdates == Qt::Unchecked) { return; } - Package::State highState = Package::StateInstalled; - QHash > packageGroups; + Enum::Info highState = Enum::InfoInstalled; + QHash > > packageGroups; - foreach(Package *p, m_updateList) { - packageGroups[p->state()].append(p); - if (p->state() > highState) { - highState = p->state(); + foreach(QSharedPointer p, m_updateList) { + packageGroups[p->info()].append(p); + if (p->info() > highState) { + highState = p->info(); } } @@ -211,12 +211,9 @@ } m_updateNotify->setText(text); + QStringList actions; -// m_icon->setToolTip(text); -// i18np("%1 update available", "%1 updates available", m_updateList.size())); -// m_icon->show(); actions << i18n("Review and update"); - actions << i18n("Not now"); actions << i18n("Do not ask again"); m_updateNotify->setActions(actions); m_updateNotify->sendEvent(); @@ -227,16 +224,15 @@ increaseRunning(); } -void KpkUpdateIcon::updateCheckFinished(PackageKit::Transaction::ExitStatus, uint runtime) +void KpkUpdateIcon::updateCheckFinished() { - Q_UNUSED(runtime) if (m_updateList.size() > 0) { // kDebug() << "Found " << m_updateList.size() << " updates"; - Package::State highState = Package::StateInstalled; + Enum::Info highState = Enum::InfoInstalled; //FIXME: This assumes that PackageKit shares our priority ranking. - foreach(Package *p, m_updateList) { - if (p->state() > highState) { - highState = p->state(); + foreach(const QSharedPointer p, m_updateList) { + if (p->info() > highState) { + highState = p->info(); } } // m_icon->setIcon(KpkIcons::packageIcon(highState)); @@ -244,7 +240,7 @@ // m_icon->show(); KConfig config("KPackageKit"); KConfigGroup checkUpdateGroup(&config, "CheckUpdate"); - uint updateType = (uint) checkUpdateGroup.readEntry("autoUpdate", KpkEnum::AutoUpdateDefault); + uint updateType = static_cast(checkUpdateGroup.readEntry("autoUpdate", KpkEnum::AutoUpdateDefault)); if (updateType == KpkEnum::None) { // update none notifyUpdates(); @@ -257,8 +253,8 @@ // update all failed notifyUpdates(); } else { - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(updatesFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(updatesFinished(PackageKit::Enum::Exit))); // don't be interactive to not upset an idle user emit watchTransaction(t->tid(), false); //autoUpdatesInstalling(t); @@ -272,9 +268,9 @@ } } else { // Defaults to security - QList updateList; - foreach(PackageKit::Package *package, m_updateList) { - if (package->state() == Package::StateSecurity) { + QList > updateList; + foreach(QSharedPointerpackage, m_updateList) { + if (package->info() == Enum::InfoSecurity) { updateList.append(package); } } @@ -286,8 +282,8 @@ notifyUpdates(); } else { // suppressSleep(true); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(updatesFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(updatesFinished(PackageKit::Enum::Exit))); // don't be interactive to not upset an idle user emit watchTransaction(t->tid(), false); //autoUpdatesInstalling(t); @@ -308,14 +304,13 @@ decreaseRunning(); } -void KpkUpdateIcon::updatesFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkUpdateIcon::updatesFinished(PackageKit::Enum::Exit status) { - Q_UNUSED(runtime) // decrease first only because we want to check for updates again decreaseRunning(); KNotification *notify = new KNotification("UpdatesComplete"); // suppressSleep(false); - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { KIcon icon("task-complete"); // use of QSize does the right thing notify->setPixmap(icon.pixmap(QSize(KPK_ICON_SIZE, KPK_ICON_SIZE))); @@ -341,8 +336,6 @@ showUpdates(); break; case 2: - break; - case 3: KConfig config("KPackageKit"); KConfigGroup smartIconGroup(&config, "Notify"); smartIconGroup.writeEntry("notifyUpdates", 0); diff -Nru kpackagekit-0.5.4/SmartIcon/KpkUpdateIcon.h kpackagekit-0.6.0/SmartIcon/KpkUpdateIcon.h --- kpackagekit-0.5.4/SmartIcon/KpkUpdateIcon.h 2009-11-17 18:25:12.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/KpkUpdateIcon.h 2010-03-19 21:14:58.000000000 +0000 @@ -23,7 +23,7 @@ #include -#include +// #include #include #include #include @@ -46,19 +46,19 @@ private slots: void update(); - void updateListed(PackageKit::Package*); - void updateCheckFinished(PackageKit::Transaction::ExitStatus, uint runtime); + void updateListed(QSharedPointer); + void updateCheckFinished(); void handleUpdateAction(uint action); void handleUpdateActionClosed(); void notifyUpdates(); void showSettings(); void showUpdates(QSystemTrayIcon::ActivationReason = KSystemTrayIcon::Unknown); - void updatesFinished(PackageKit::Transaction::ExitStatus status, uint runtime); + void updatesFinished(PackageKit::Enum::Exit exit); private: KSystemTrayIcon* m_icon; KNotification *m_updateNotify; - QList m_updateList; + QList > m_updateList; // int m_inhibitCookie; // void suppressSleep(bool enable); diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallCatalogs.cpp kpackagekit-0.6.0/SmartIcon/PkInstallCatalogs.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallCatalogs.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallCatalogs.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -60,7 +60,7 @@ m_files.size()); KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Parse the catalog search and install it", "Install")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); ret = KMessageBox::questionYesNo(this, message, title, @@ -79,16 +79,16 @@ QString arch = parts.at(2); QStringList rxActions; - Client::Actions actions = Client::instance()->actions(); - if (actions & Client::ActionResolve) { + Enum::Roles actions = Client::instance()->actions(); + if (actions & Enum::RoleResolve) { rxActions << "InstallPackages"; } - if (actions & Client::ActionWhatProvides) { + if (actions & Enum::RoleWhatProvides) { rxActions << "InstallProvides"; } - if (actions & Client::ActionSearchFile) { + if (actions & Enum::RoleSearchFile) { rxActions << "InstallFiles"; } @@ -103,7 +103,7 @@ return; } - // matches at the beggining of line installPackages or InstallProvides or installFiles and capture it + // matches at the beginning of line installPackages or InstallProvides or installFiles and capture it // matches an optional set of parenthesis // matches *%1* and or *%2* and or *%3* // matches after '=' but ';' at the end @@ -114,7 +114,7 @@ QStringList filesFailedToOpen; bool failed = false; - foreach (const QString file, m_files) { + foreach (const QString &file, m_files) { QFile catalog(file); if (catalog.open(QIODevice::ReadOnly | QIODevice::Text)) { QTextStream in(&catalog); @@ -176,27 +176,27 @@ { kDebug() << packages; Transaction *t = Client::instance()->resolve(packages, - Client::FilterArch | - Client::FilterNewest); + Enum::FilterArch | + Enum::FilterNewest); return runTransaction(t); } bool PkInstallCatalogs::installProvides(const QStringList &provides) { kDebug() << provides; - Transaction *t = Client::instance()->whatProvides(Client::ProvidesAny, + Transaction *t = Client::instance()->whatProvides(Enum::ProvidesAny, provides, - Client::FilterArch | - Client::FilterNewest); + Enum::FilterArch | + Enum::FilterNewest); return runTransaction(t); } bool PkInstallCatalogs::installFiles(const QStringList &files) { kDebug() << files; - Transaction *t = Client::instance()->searchFile(files, - Client::FilterArch | - Client::FilterNewest); + Transaction *t = Client::instance()->searchFiles(files, + Enum::FilterArch | + Enum::FilterNewest); return runTransaction(t); } @@ -213,10 +213,10 @@ return false; } else { QEventLoop loop; - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), &loop, SLOT(quit())); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); trans->show(); @@ -227,9 +227,9 @@ } } -void PkInstallCatalogs::addPackage(PackageKit::Package *package) +void PkInstallCatalogs::addPackage(QSharedPointerpackage) { - if (package->state() != Package::StateInstalled) { + if (package->info() != Enum::InfoInstalled) { m_foundPackages.append(package); } else { m_alreadyInstalled << package->name(); diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallCatalogs.h kpackagekit-0.6.0/SmartIcon/PkInstallCatalogs.h --- kpackagekit-0.5.4/SmartIcon/PkInstallCatalogs.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallCatalogs.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -45,7 +45,7 @@ void start(); private slots: - void addPackage(PackageKit::Package *package); + void addPackage(QSharedPointerpackage); private: bool installPackages(const QStringList &packages); @@ -53,7 +53,7 @@ bool installFiles(const QStringList &files); bool runTransaction(Transaction *trans); - QList m_foundPackages; + QList > m_foundPackages; QStringList m_files; QString m_interaction; QDBusMessage m_message; diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallFontconfigResources.cpp kpackagekit-0.6.0/SmartIcon/PkInstallFontconfigResources.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallFontconfigResources.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallFontconfigResources.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include "PkInstallFontconfigResources.h" #include +#include #include #include @@ -48,8 +49,8 @@ int ret = KMessageBox::Yes; if (showConfirmSearch()) { - foreach (const QString font, m_resources) { - if (!font.startsWith(":lang=")) { + foreach (const QString &font, m_resources) { + if (!font.startsWith(QLatin1String(":lang="))) { sendErrorFinished(InternalError, QString("not recognised prefix: '%1'").arg(font)); return; } @@ -81,7 +82,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for packages" ,"Search")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); ret = KMessageBox::questionYesNo(0, msg, @@ -90,11 +91,11 @@ } if (ret == KMessageBox::Yes) { - Transaction *t = Client::instance()->whatProvides(Client::ProvidesFont, + Transaction *t = Client::instance()->whatProvides(Enum::ProvidesFont, m_resources, - Client::FilterNotInstalled | - Client::FilterArch | - Client::FilterNewest); + Enum::FilterNotInstalled | + Enum::FilterArch | + Enum::FilterNewest); if (t->error()) { QString msg(i18n("Failed to search for provides")); KMessageBox::sorry(0, @@ -104,8 +105,8 @@ } else { connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), this, SLOT(whatProvidesFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans; trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); @@ -117,11 +118,11 @@ } } -void PkInstallFontconfigResources::whatProvidesFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void PkInstallFontconfigResources::whatProvidesFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) kDebug() << "Finished."; - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_foundPackages.size()) { KpkReviewChanges *frm = new KpkReviewChanges(m_foundPackages); frm->setTitle(i18np("Application that can open this type of file", @@ -151,7 +152,7 @@ } } -void PkInstallFontconfigResources::addPackage(PackageKit::Package *package) +void PkInstallFontconfigResources::addPackage(QSharedPointerpackage) { m_foundPackages.append(package); } diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallFontconfigResources.h kpackagekit-0.6.0/SmartIcon/PkInstallFontconfigResources.h --- kpackagekit-0.5.4/SmartIcon/PkInstallFontconfigResources.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallFontconfigResources.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,7 +22,6 @@ #define PK_INSTALL_FONTCONFIG_RESOURCES_H #include "KpkAbstractTask.h" -#include #include @@ -45,11 +44,11 @@ void start(); private slots: - void whatProvidesFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void addPackage(PackageKit::Package *package); + void whatProvidesFinished(PackageKit::Enum::Exit status, uint runtime); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QStringList m_resources; QDBusMessage m_message; }; diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallGStreamerResources.cpp kpackagekit-0.6.0/SmartIcon/PkInstallGStreamerResources.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallGStreamerResources.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallGStreamerResources.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include "PkInstallGStreamerResources.h" #include +#include #include #include @@ -110,7 +111,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for packages" ,"Search")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); ret = KMessageBox::questionYesNo(0, msg, title, @@ -118,11 +119,11 @@ } if (ret == KMessageBox::Yes) { - Transaction *t = Client::instance()->whatProvides(Client::ProvidesCodec, + Transaction *t = Client::instance()->whatProvides(Enum::ProvidesCodec, search, - Client::FilterNotInstalled | - Client::FilterArch | - Client::FilterNewest); + Enum::FilterNotInstalled | + Enum::FilterArch | + Enum::FilterNewest); if (t->error()) { QString msg(i18n("Failed to search for provides")); KMessageBox::sorry(0, @@ -130,10 +131,10 @@ msg); sendErrorFinished(InternalError, msg); } else { - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(whatProvidesFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(whatProvidesFinished(PackageKit::Enum::Exit, uint))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans; trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); @@ -145,11 +146,11 @@ } } -void PkInstallGStreamerResources::whatProvidesFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void PkInstallGStreamerResources::whatProvidesFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) kDebug() << "Finished."; - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_foundPackages.size()) { KpkReviewChanges *frm = new KpkReviewChanges(m_foundPackages); frm->setTitle(i18np("Do you want to install this package now?", @@ -173,7 +174,7 @@ } } -void PkInstallGStreamerResources::addPackage(PackageKit::Package *package) +void PkInstallGStreamerResources::addPackage(QSharedPointerpackage) { m_foundPackages.append(package); } diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallGStreamerResources.h kpackagekit-0.6.0/SmartIcon/PkInstallGStreamerResources.h --- kpackagekit-0.5.4/SmartIcon/PkInstallGStreamerResources.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallGStreamerResources.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,7 +22,6 @@ #define PK_INSTALL_GSTREAMER_RESOURCES_H #include "KpkAbstractTask.h" -#include #include @@ -43,11 +42,11 @@ void start(); private slots: - void whatProvidesFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void addPackage(PackageKit::Package *package); + void whatProvidesFinished(PackageKit::Enum::Exit status, uint runtime); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QStringList m_resources; }; diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallMimeTypes.cpp kpackagekit-0.6.0/SmartIcon/PkInstallMimeTypes.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallMimeTypes.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallMimeTypes.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include "PkInstallMimeTypes.h" #include +#include #include #include @@ -66,7 +67,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for a new mime type" ,"Search")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); ret = KMessageBox::questionYesNo(0, msg, title, @@ -74,11 +75,11 @@ } if (ret == KMessageBox::Yes) { - Transaction *t = Client::instance()->whatProvides(Client::ProvidesMimetype, + Transaction *t = Client::instance()->whatProvides(Enum::ProvidesMimetype, m_mimeTypes, - Client::FilterNotInstalled | - Client::FilterArch | - Client::FilterNewest); + Enum::FilterNotInstalled | + Enum::FilterArch | + Enum::FilterNewest); if (t->error()) { if (showWarning()) { KMessageBox::sorry(0, @@ -89,8 +90,8 @@ } else { connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), this, SLOT(whatProvidesFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); trans->show(); @@ -101,11 +102,11 @@ } } -void PkInstallMimeTypes::whatProvidesFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void PkInstallMimeTypes::whatProvidesFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) kDebug() << "Finished."; - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_foundPackages.size()) { KpkReviewChanges *frm = new KpkReviewChanges(m_foundPackages); frm->setTitle(i18np("Application that can open this type of file", @@ -129,7 +130,7 @@ } } -void PkInstallMimeTypes::addPackage(PackageKit::Package *package) +void PkInstallMimeTypes::addPackage(QSharedPointerpackage) { m_foundPackages.append(package); } diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallMimeTypes.h kpackagekit-0.6.0/SmartIcon/PkInstallMimeTypes.h --- kpackagekit-0.5.4/SmartIcon/PkInstallMimeTypes.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallMimeTypes.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,7 +22,6 @@ #define PK_INSTALL_MIME_TYPE_H #include "KpkAbstractTask.h" -#include #include @@ -43,11 +42,11 @@ void start(); private slots: - void whatProvidesFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void addPackage(PackageKit::Package *package); + void whatProvidesFinished(PackageKit::Enum::Exit status, uint runtime); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QStringList m_mimeTypes; }; diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallPackageFiles.cpp kpackagekit-0.6.0/SmartIcon/PkInstallPackageFiles.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallPackageFiles.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallPackageFiles.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008-2009 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -114,7 +114,7 @@ installBt); } if (ret == KMessageBox::Yes) { - if (Client::instance()->actions() & Client::ActionSimulateInstallFiles && + if (Client::instance()->actions() & Enum::RoleSimulateInstallFiles && showConfirmDeps()) { // TODO Transaction *t; @@ -130,10 +130,10 @@ sendErrorFinished(Failed, KpkStrings::daemonError(t->error())); } else { m_installFilesModel = new KpkSimulateModel(this); - connect(t, SIGNAL(package(PackageKit::Package *)), - m_installFilesModel, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + m_installFilesModel, SLOT(addPackage(PackageKit::QSharedPointer))); connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(simulateFinished(PackageKit::Transaction::ExitStatus, uint))); + this, SLOT(simulateFinished(PackageKit::Transaction::ExitStatus))); if (showProgress()) { KpkTransaction *trans; trans = new KpkTransaction(t, @@ -161,12 +161,11 @@ } } -void PkInstallPackageFiles::simulateFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void PkInstallPackageFiles::simulateFinished(PackageKit::Enum::Exit status) { - Q_UNUSED(runtime) - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_installFilesModel->rowCount() > 0) { - KpkRequirements *frm = new KpkRequirements(m_installFilesModel); + QPointer frm = new KpkRequirements(m_installFilesModel); if (frm->exec() == QDialog::Accepted) { installFiles(); } else { diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallPackageFiles.h kpackagekit-0.6.0/SmartIcon/PkInstallPackageFiles.h --- kpackagekit-0.5.4/SmartIcon/PkInstallPackageFiles.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallPackageFiles.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,9 +21,8 @@ #ifndef PK_INSTALL_PACKAGE_FILES_H #define PK_INSTALL_PACKAGE_FILES_H -#include #include "KpkAbstractTask.h" - +#include #include using namespace PackageKit; @@ -45,7 +44,7 @@ private slots: void installFilesFinished(KpkTransaction::ExitStatus status); - void simulateFinished(PackageKit::Transaction::ExitStatus status, uint runtime); + void simulateFinished(PackageKit::Enum::Exit status); // void installFinished(PackageKit::Transaction::ExitStatus status, uint runtime); private: diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallPackageNames.cpp kpackagekit-0.6.0/SmartIcon/PkInstallPackageNames.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallPackageNames.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallPackageNames.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include "PkInstallPackageNames.h" #include +#include #include #include @@ -69,7 +70,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for a package and install it", "Install")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); ret = KMessageBox::questionYesNo(this, msg, title, @@ -78,8 +79,8 @@ if (ret == KMessageBox::Yes) { Transaction *t = Client::instance()->resolve(m_packages, - Client::FilterArch | - Client::FilterNewest); + Enum::FilterArch | + Enum::FilterNewest); if (t->error()) { QString msg(i18n("Failed to start resolve transaction")); if (showWarning()) { @@ -91,8 +92,8 @@ } else { connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), this, SLOT(resolveFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); trans->show(); @@ -104,12 +105,12 @@ } } -void PkInstallPackageNames::resolveFinished(PackageKit::Transaction::ExitStatus status, +void PkInstallPackageNames::resolveFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) kDebug() << "Finished."; - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_alreadyInstalled.size()) { if (showWarning()) { KMessageBox::sorry(this, @@ -145,9 +146,9 @@ } } -void PkInstallPackageNames::addPackage(PackageKit::Package *package) +void PkInstallPackageNames::addPackage(QSharedPointerpackage) { - if (package->state() != Package::StateInstalled) { + if (package->info() != Enum::InfoInstalled) { m_foundPackages.append(package); } else { m_alreadyInstalled << package->name(); diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallPackageNames.h kpackagekit-0.6.0/SmartIcon/PkInstallPackageNames.h --- kpackagekit-0.5.4/SmartIcon/PkInstallPackageNames.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallPackageNames.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,7 +22,6 @@ #define PK_INSTALL_PACKAGE_NAMES_H #include "KpkAbstractTask.h" -#include #include #include @@ -45,11 +44,11 @@ void start(); private slots: - void resolveFinished(PackageKit::Transaction::ExitStatus, uint); - void addPackage(PackageKit::Package *package); + void resolveFinished(PackageKit::Enum::Exit, uint); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QStringList m_packages; QDBusMessage m_message; QStringList m_alreadyInstalled; diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallProvideFiles.cpp kpackagekit-0.6.0/SmartIcon/PkInstallProvideFiles.cpp --- kpackagekit-0.5.4/SmartIcon/PkInstallProvideFiles.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallProvideFiles.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,6 +21,7 @@ #include "PkInstallProvideFiles.h" #include +#include #include #include @@ -68,7 +69,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for a package that provides these files and install it", "Install")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); ret = KMessageBox::questionYesNo(0, msg, title, @@ -76,9 +77,9 @@ } if (ret == KMessageBox::Yes) { - Transaction *t = Client::instance()->searchFile(m_args.first(), - Client::FilterArch | - Client::FilterNewest); + Transaction *t = Client::instance()->searchFiles(m_args.first(), + Enum::FilterArch | + Enum::FilterNewest); if (t->error()) { if (showWarning()) { KMessageBox::sorry(0, @@ -89,8 +90,8 @@ } else { connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), this, SLOT(searchFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans; trans = new KpkTransaction(t, @@ -103,10 +104,10 @@ } } -void PkInstallProvideFiles::searchFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void PkInstallProvideFiles::searchFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_alreadyInstalled.size()) { if (showWarning()) { KMessageBox::sorry(0, @@ -140,9 +141,9 @@ } } -void PkInstallProvideFiles::addPackage(PackageKit::Package *package) +void PkInstallProvideFiles::addPackage(QSharedPointerpackage) { - if (package->state() != Package::StateInstalled) { + if (package->info() != Enum::InfoInstalled) { m_foundPackages.append(package); } else { m_alreadyInstalled = package->name(); diff -Nru kpackagekit-0.5.4/SmartIcon/PkInstallProvideFiles.h kpackagekit-0.6.0/SmartIcon/PkInstallProvideFiles.h --- kpackagekit-0.5.4/SmartIcon/PkInstallProvideFiles.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInstallProvideFiles.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -21,7 +21,6 @@ #ifndef KPK_INSTALL_PROVIDE_FILES_H #define KPK_INSTALL_PROVIDE_FILES_H -#include #include "KpkAbstractTask.h" #include @@ -43,11 +42,11 @@ void start(); private slots: - void searchFinished(PackageKit::Transaction::ExitStatus status, uint runtime); - void addPackage(PackageKit::Package *package); + void searchFinished(PackageKit::Enum::Exit status, uint runtime); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QStringList m_args; QString m_alreadyInstalled; }; diff -Nru kpackagekit-0.5.4/SmartIcon/PkInterface.cpp kpackagekit-0.6.0/SmartIcon/PkInterface.cpp --- kpackagekit-0.5.4/SmartIcon/PkInterface.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkInterface.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 Daniel Nicoletti * + * Copyright (C) 2008-2010 Daniel Nicoletti * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * diff -Nru kpackagekit-0.5.4/SmartIcon/PkIsInstalled.cpp kpackagekit-0.6.0/SmartIcon/PkIsInstalled.cpp --- kpackagekit-0.5.4/SmartIcon/PkIsInstalled.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkIsInstalled.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -44,7 +44,7 @@ void PkIsInstalled::start() { Transaction *t = Client::instance()->resolve(m_packageName, - Client::FilterInstalled); + Enum::FilterInstalled); if (t->error()) { if (showWarning()) { KMessageBox::sorry(0, @@ -53,10 +53,10 @@ } sendErrorFinished(Failed, "Failed to start resolve transaction"); } else { - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(searchFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(searchFinished(PackageKit::Enum::Exit, uint))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); trans->show(); @@ -65,21 +65,21 @@ } } -void PkIsInstalled::searchFinished(PackageKit::Transaction::ExitStatus status, uint) +void PkIsInstalled::searchFinished(PackageKit::Enum::Exit status, uint) { kDebug(); - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { QDBusMessage reply = m_message.createReply(); reply << (bool) m_foundPackages.size(); sendMessageFinished(reply); - } else if (status == Transaction::ExitCancelled) { + } else if (status == Enum::ExitCancelled) { sendErrorFinished(Cancelled, i18n("User canceled the transaction")); } else { sendErrorFinished(InternalError, i18n("An unknown error happened")); } } -void PkIsInstalled::addPackage(PackageKit::Package *package) +void PkIsInstalled::addPackage(QSharedPointerpackage) { m_foundPackages.append(package); } diff -Nru kpackagekit-0.5.4/SmartIcon/PkIsInstalled.h kpackagekit-0.6.0/SmartIcon/PkIsInstalled.h --- kpackagekit-0.5.4/SmartIcon/PkIsInstalled.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkIsInstalled.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -44,11 +44,11 @@ void start(); private slots: - void searchFinished(PackageKit::Transaction::ExitStatus, uint); - void addPackage(PackageKit::Package *package); + void searchFinished(PackageKit::Enum::Exit, uint); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QString m_packageName; QDBusMessage m_message; }; diff -Nru kpackagekit-0.5.4/SmartIcon/PkRemovePackageByFiles.cpp kpackagekit-0.6.0/SmartIcon/PkRemovePackageByFiles.cpp --- kpackagekit-0.5.4/SmartIcon/PkRemovePackageByFiles.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkRemovePackageByFiles.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -70,7 +70,7 @@ QString msg = "

                                                                          " + title + "

                                                                          " + message; KGuiItem searchBt = KStandardGuiItem::yes(); searchBt.setText(i18nc("Search for a package and remove", "Search")); - searchBt.setIcon(KIcon::KIcon("edit-find")); + searchBt.setIcon(KIcon("edit-find")); int ret; ret = KMessageBox::questionYesNo(this, msg, @@ -79,8 +79,8 @@ } if (ret == KMessageBox::Yes) { - Transaction *t = Client::instance()->searchFile(m_files, - Client::FilterInstalled); + Transaction *t = Client::instance()->searchFiles(m_files, + Enum::FilterInstalled); if (t->error()) { QString msg(i18n("Failed to start search file transaction")); if (showWarning()) { @@ -92,8 +92,8 @@ } else { connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), this, SLOT(resolveFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); trans->show(); @@ -105,12 +105,12 @@ } } -void PkRemovePackageByFiles::searchFinished(PackageKit::Transaction::ExitStatus status, +void PkRemovePackageByFiles::searchFinished(PackageKit::Enum::Exit status, uint runtime) { Q_UNUSED(runtime) kDebug() << "Finished."; - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_foundPackages.size()) { KpkReviewChanges *frm = new KpkReviewChanges(m_foundPackages, this); frm->setTitle(i18np("The following package will be removed", @@ -137,7 +137,7 @@ } } -void PkRemovePackageByFiles::addPackage(PackageKit::Package *package) +void PkRemovePackageByFiles::addPackage(QSharedPointerpackage) { m_foundPackages.append(package); } diff -Nru kpackagekit-0.5.4/SmartIcon/PkRemovePackageByFiles.h kpackagekit-0.6.0/SmartIcon/PkRemovePackageByFiles.h --- kpackagekit-0.5.4/SmartIcon/PkRemovePackageByFiles.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkRemovePackageByFiles.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -43,12 +43,11 @@ void start(); private slots: - void searchFinished(PackageKit::Transaction::ExitStatus status, - uint runtime); - void addPackage(PackageKit::Package *package); + void searchFinished(PackageKit::Enum::Exit status, uint runtime); + void addPackage(QSharedPointer package); private: - QList m_foundPackages; + QList > m_foundPackages; QStringList m_files; }; diff -Nru kpackagekit-0.5.4/SmartIcon/PkSearchFile.cpp kpackagekit-0.6.0/SmartIcon/PkSearchFile.cpp --- kpackagekit-0.5.4/SmartIcon/PkSearchFile.cpp 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkSearchFile.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -51,8 +51,8 @@ return; } - Transaction *t = Client::instance()->searchFile(m_fileName, - Client::FilterNewest); + Transaction *t = Client::instance()->searchFiles(m_fileName, + Enum::FilterNewest); if (t->error()) { if (showWarning()) { KMessageBox::sorry(this, @@ -65,8 +65,8 @@ // which cancel the transaction in x seconds if it's not running yet connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), this, SLOT(searchFinished(PackageKit::Transaction::ExitStatus, uint))); - connect(t, SIGNAL(package(PackageKit::Package *)), - this, SLOT(addPackage(PackageKit::Package *))); + connect(t, SIGNAL(package(PackageKit::QSharedPointer)), + this, SLOT(addPackage(PackageKit::QSharedPointer))); if (showProgress()) { KpkTransaction *trans = new KpkTransaction(t, KpkTransaction::CloseOnFinish); trans->show(); @@ -75,13 +75,13 @@ } } -void PkSearchFile::searchFinished(PackageKit::Transaction::ExitStatus status, uint) +void PkSearchFile::searchFinished(PackageKit::Enum::Exit status, uint) { kDebug(); - if (status == Transaction::ExitSuccess) { + if (status == Enum::ExitSuccess) { if (m_foundPackages.size()) { - Package *pkg = m_foundPackages.first(); - bool installed = pkg->state() == Package::StateInstalled; + QSharedPointerpkg = m_foundPackages.first(); + bool installed = pkg->info() == Enum::InfoInstalled; QDBusMessage reply = m_message.createReply(); reply << installed; reply << pkg->name(); @@ -99,7 +99,7 @@ } } -void PkSearchFile::addPackage(PackageKit::Package *package) +void PkSearchFile::addPackage(QSharedPointerpackage) { m_foundPackages.append(package); } diff -Nru kpackagekit-0.5.4/SmartIcon/PkSearchFile.h kpackagekit-0.6.0/SmartIcon/PkSearchFile.h --- kpackagekit-0.5.4/SmartIcon/PkSearchFile.h 2009-12-07 18:31:35.000000000 +0000 +++ kpackagekit-0.6.0/SmartIcon/PkSearchFile.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -44,11 +44,11 @@ void start(); private slots: - void searchFinished(PackageKit::Transaction::ExitStatus, uint); - void addPackage(PackageKit::Package *package); + void searchFinished(PackageKit::Enum::Exit, uint); + void addPackage(QSharedPointerpackage); private: - QList m_foundPackages; + QList > m_foundPackages; QString m_fileName; QDBusMessage m_message; }; diff -Nru kpackagekit-0.5.4/Updater/KcmKpkUpdate.cpp kpackagekit-0.6.0/Updater/KcmKpkUpdate.cpp --- kpackagekit-0.5.4/Updater/KcmKpkUpdate.cpp 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KcmKpkUpdate.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -20,6 +20,8 @@ #include "KcmKpkUpdate.h" +#include "KpkUpdate.h" + #include #include diff -Nru kpackagekit-0.5.4/Updater/KcmKpkUpdate.h kpackagekit-0.6.0/Updater/KcmKpkUpdate.h --- kpackagekit-0.5.4/Updater/KcmKpkUpdate.h 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KcmKpkUpdate.h 2010-03-19 21:14:58.000000000 +0000 @@ -23,8 +23,8 @@ #include #include -#include "KpkUpdate.h" +class KpkUpdate; class KcmKpkUpdate : public KCModule { Q_OBJECT diff -Nru kpackagekit-0.5.4/Updater/KpkHistory.cpp kpackagekit-0.6.0/Updater/KpkHistory.cpp --- kpackagekit-0.5.4/Updater/KpkHistory.cpp 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkHistory.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -20,6 +20,9 @@ #include "KpkHistory.h" +#include "KpkTransactionFilterModel.h" +#include "KpkSimpleTransactionModel.h" + #include #include #include @@ -75,12 +78,9 @@ switch (button) { case KDialog::User2 : // TODO implement rollback - kDebug() << "Roolback"; break; case KDialog::User1 : // Refresh transaction list - kDebug() << "Refresh transaction list"; - //TODO make sure this deletes the transaction since they are pointers m_transactionModel->clear(); t = Client::instance()->getOldTransactions(0); if (t->error()) { @@ -88,7 +88,7 @@ } else { connect(t, SIGNAL(transaction(PackageKit::Transaction *)), m_transactionModel, SLOT(addTransaction(PackageKit::Transaction *))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), this, SLOT(finished())); } break; @@ -96,7 +96,7 @@ KDialog::slotButtonClicked(button); } QString text; - uint time = Client::instance()->getTimeSinceAction(Client::ActionRefreshCache) * 1000; + uint time = Client::instance()->getTimeSinceAction(Enum::RoleRefreshCache) * 1000; text = i18n("Time since last cache refresh: %1", KGlobal::locale()->prettyFormatDuration(time)); timeCacheLabel->setText(text); } @@ -111,3 +111,4 @@ } #include "KpkHistory.moc" + diff -Nru kpackagekit-0.5.4/Updater/KpkHistory.h kpackagekit-0.6.0/Updater/KpkHistory.h --- kpackagekit-0.5.4/Updater/KpkHistory.h 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkHistory.h 2010-03-19 21:14:58.000000000 +0000 @@ -21,15 +21,12 @@ #ifndef KPK_HISTORY_H #define KPK_HISTORY_H -#include -#include - -#include "KpkTransactionFilterModel.h" -#include "KpkSimpleTransactionModel.h" #include "ui_KpkHistory.h" -using namespace PackageKit; +#include +class KpkTransactionFilterModel; +class KpkSimpleTransactionModel; class KpkHistory : public KDialog, Ui::KpkHistory { Q_OBJECT diff -Nru kpackagekit-0.5.4/Updater/KpkSimpleTransactionModel.cpp kpackagekit-0.6.0/Updater/KpkSimpleTransactionModel.cpp --- kpackagekit-0.5.4/Updater/KpkSimpleTransactionModel.cpp 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkSimpleTransactionModel.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -95,17 +95,17 @@ QStringList ret; QString text; - text = getTypeLine(lines, Transaction::StatusInstall); + text = getTypeLine(lines, Enum::StatusInstall); if (!text.isNull()) { ret << text; } - text = getTypeLine(lines, Transaction::StatusRemove); + text = getTypeLine(lines, Enum::StatusRemove); if (!text.isNull()) { ret << text; } - text = getTypeLine(lines, Transaction::StatusUpdate); + text = getTypeLine(lines, Enum::StatusUpdate); if (!text.isNull()) { ret << text; } @@ -113,24 +113,24 @@ return ret.join("\n"); } -QString KpkSimpleTransactionModel::getTypeLine(const QStringList &lines, Transaction::Status status) const +QString KpkSimpleTransactionModel::getTypeLine(const QStringList &lines, Enum::Status status) const { QStringList text; foreach(const QString &line, lines) { QStringList sections = line.split('\t'); if (sections.size() > 1) { switch (status) { - case Transaction::StatusInstall: + case Enum::StatusInstall: if (sections.at(0) != "installing") { continue; } break; - case Transaction::StatusRemove: + case Enum::StatusRemove: if (sections.at(0) != "removing") { continue; } break; - case Transaction::StatusUpdate: + case Enum::StatusUpdate: if (sections.at(0) != "updating") { continue; } diff -Nru kpackagekit-0.5.4/Updater/KpkSimpleTransactionModel.h kpackagekit-0.6.0/Updater/KpkSimpleTransactionModel.h --- kpackagekit-0.5.4/Updater/KpkSimpleTransactionModel.h 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkSimpleTransactionModel.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -22,8 +22,6 @@ #define KPK_SIMPLE_TRANSACTION_MODEL_H #include -#include - #include using namespace PackageKit; @@ -42,7 +40,7 @@ private: QString getDetailsLocalized(const QString &data) const; - QString getTypeLine(const QStringList &lines, Transaction::Status status) const; + QString getTypeLine(const QStringList &lines, Enum::Status status) const; QList m_transactions; }; diff -Nru kpackagekit-0.5.4/Updater/KpkUpdate.cpp kpackagekit-0.6.0/Updater/KpkUpdate.cpp --- kpackagekit-0.5.4/Updater/KpkUpdate.cpp 2009-12-07 18:31:37.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkUpdate.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -64,8 +64,8 @@ connect(m_client, SIGNAL(updatesChanged()), this, SLOT(getUpdates())); - // check to see what roles the backend - m_actions = m_client->actions(); + // check to see what roles the backend has + m_roles = m_client->actions(); // hide distro Upgrade container and line distroUpgradesSA->hide(); @@ -74,11 +74,10 @@ //TODO: We should add some kind of configuration to let users show unstable distributions //That way, by default, users only see stable ones. -void KpkUpdate::distroUpgrade(PackageKit::Client::DistroUpgradeType type, const QString &name, const QString &description) +void KpkUpdate::distroUpgrade(PackageKit::Enum::DistroUpgrade type, const QString &name, const QString &description) { Q_UNUSED(type) if (verticalLayout->count()) { - QFrame *frame = new QFrame(this); frame->setFrameShape(QFrame::HLine); verticalLayout->insertWidget(0, frame); @@ -111,17 +110,16 @@ void KpkUpdate::applyUpdates() { // If the backend supports getRequires do it - if (m_actions & Client::ActionSimulateUpdatePackages) { - - PackageKit::Transaction *t; - KpkSimulateModel *simulateModel = new KpkSimulateModel(this); - - t = m_client->simulateUpdatePackages(m_pkg_model_updates->selectedPackages()); + if (m_roles & Enum::RoleSimulateUpdatePackages) { + QList > selectedPackages; + selectedPackages = m_pkg_model_updates->selectedPackages(); + Transaction *t = m_client->simulateUpdatePackages(selectedPackages); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { - connect(t, SIGNAL(package(PackageKit::Package *)), - simulateModel, SLOT(addPackage(PackageKit::Package *))); + KpkSimulateModel *simulateModel = new KpkSimulateModel(this, selectedPackages); + connect(t, SIGNAL(package(QSharedPointer)), + simulateModel, SLOT(addPackage(QSharedPointer))); // Create a Transaction dialog to don't upset the user QPointer reqFinder = new KpkTransaction(t, KpkTransaction::CloseOnFinish | KpkTransaction::Modal, this); @@ -145,10 +143,9 @@ QTimer::singleShot(0, this, SLOT(checkEnableUpdateButton())); } -void KpkUpdate::getUpdatesFinished(Transaction::ExitStatus status, uint runtime) +void KpkUpdate::getUpdatesFinished(Enum::Exit status) { Q_UNUSED(status) - Q_UNUSED(runtime) // If we just have one group let's expand it if (m_pkg_model_updates->rowCount() == 1) { @@ -157,13 +154,13 @@ int nonBlockedIndex = -1; if (m_pkg_model_updates->data(m_pkg_model_updates->index(0,0), KpkPackageModel::StateRole).toUInt() - == Package::StateBlocked) { + == Enum::InfoBlocked) { // We got a blocked update in index 0, so 1 is not blocked... nonBlockedIndex = 1; } if (m_pkg_model_updates->data(m_pkg_model_updates->index(1,0), KpkPackageModel::StateRole).toUInt() - == Package::StateBlocked) { + == Enum::InfoBlocked) { // We got a blocked update in index 1, so 0 is not blocked... nonBlockedIndex = 0; } @@ -178,30 +175,19 @@ void KpkUpdate::updatePackages() { - QList packages = m_pkg_model_updates->selectedPackages(); + QList > packages = m_pkg_model_updates->selectedPackages(); SET_PROXY Transaction *t = m_client->updatePackages(true, packages); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { - KpkTransaction *frm = new KpkTransaction(t, KpkTransaction::Modal | KpkTransaction::CloseOnFinish, this); + QPointer frm = new KpkTransaction(t, KpkTransaction::Modal | KpkTransaction::CloseOnFinish, this); frm->setPackages(packages); connect(frm, SIGNAL(kTransactionFinished(KpkTransaction::ExitStatus)), this, SLOT(updatePackagesFinished(KpkTransaction::ExitStatus))); frm->exec(); - } -} - -void KpkUpdate::refresh() -{ - SET_PROXY - Transaction *t = m_client->refreshCache(true); - if (t->error()) { - KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); - } else { - KpkTransaction *frm = new KpkTransaction(t, KpkTransaction::Modal | KpkTransaction::CloseOnFinish, this); - frm->show(); + delete frm; } } @@ -217,12 +203,12 @@ KMessageBox::sorry(this, KpkStrings::daemonError(m_updatesT->error())); } else { transactionBar->addTransaction(m_updatesT); - connect(m_updatesT, SIGNAL(package(PackageKit::Package *)), - m_pkg_model_updates, SLOT(addPackage(PackageKit::Package *))); - connect(m_updatesT, SIGNAL(errorCode(PackageKit::Client::ErrorType, const QString &)), - this, SLOT(errorCode(PackageKit::Client::ErrorType, const QString &))); - connect(m_updatesT, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(getUpdatesFinished(PackageKit::Transaction::ExitStatus, uint) )); + connect(m_updatesT, SIGNAL(package(QSharedPointer)), + m_pkg_model_updates, SLOT(addPackage(QSharedPointer))); + connect(m_updatesT, SIGNAL(errorCode(PackageKit::Enum::Error, const QString &)), + this, SLOT(errorCode(PackageKit::Enum::Error, const QString &))); + connect(m_updatesT, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(getUpdatesFinished(PackageKit::Enum::Exit))); } // Clean the distribution upgrades area @@ -238,15 +224,15 @@ Transaction *t = m_client->getDistroUpgrades(); if (!t->error()) { transactionBar->addTransaction(t); - connect(t, SIGNAL(distroUpgrade(PackageKit::Client::DistroUpgradeType, const QString &, const QString &)), - this, SLOT(distroUpgrade(PackageKit::Client::DistroUpgradeType, const QString &, const QString &))); + connect(t, SIGNAL(distroUpgrade(PackageKit::Enum::DistroUpgrade, const QString &, const QString &)), + this, SLOT(distroUpgrade(PackageKit::Enum::DistroUpgrade, const QString &, const QString &))); } } void KpkUpdate::updatePackagesFinished(KpkTransaction::ExitStatus status) { checkEnableUpdateButton(); - KpkTransaction *trans = (KpkTransaction *) sender(); + KpkTransaction *trans = qobject_cast(sender()); if (status == KpkTransaction::ReQueue) { SET_PROXY Transaction *t = m_client->updatePackages(trans->onlyTrusted(), trans->packages()); @@ -261,15 +247,22 @@ void KpkUpdate::on_refreshPB_clicked() { - refresh(); + SET_PROXY + Transaction *t = m_client->refreshCache(true); + if (t->error()) { + KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); + } else { + KpkTransaction *frm = new KpkTransaction(t, KpkTransaction::Modal | KpkTransaction::CloseOnFinish, this); + frm->show(); + } } void KpkUpdate::on_packageView_pressed(const QModelIndex &index) { if (index.column() == 0) { - Package *p = m_pkg_model_updates->package(index); + QSharedPointer p = m_pkg_model_updates->package(index); // check to see if the backend support - if (p && (m_actions & Client::ActionGetUpdateDetail)) { + if (p && (m_roles & Enum::RoleGetUpdateDetail)) { if (pkg_delegate->isExtended(index)) { pkg_delegate->contractItem(index); } else { @@ -307,7 +300,7 @@ return QWidget::event(event); } -void KpkUpdate::errorCode(PackageKit::Client::ErrorType error, const QString &details) +void KpkUpdate::errorCode(PackageKit::Enum::Error error, const QString &details) { KMessageBox::detailedSorry(this, KpkStrings::errorMessage(error), diff -Nru kpackagekit-0.5.4/Updater/KpkUpdateDetails.cpp kpackagekit-0.6.0/Updater/KpkUpdateDetails.cpp --- kpackagekit-0.5.4/Updater/KpkUpdateDetails.cpp 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkUpdateDetails.cpp 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2009 by Daniel Nicoletti * + * Copyright (C) 2009-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -25,27 +25,26 @@ #include #include -KpkUpdateDetails::KpkUpdateDetails(PackageKit::Package *package, QWidget *parent) +KpkUpdateDetails::KpkUpdateDetails(QSharedPointerpackage, QWidget *parent) : QWidget(parent) { setupUi(this); - // only the model package has the right state - state = package->state(); + // only the model package has the right m_info + m_info = package->info(); Transaction *t = Client::instance()->getUpdateDetail(package); if (t->error()) { KMessageBox::sorry(this, KpkStrings::daemonError(t->error())); } else { connect(t, SIGNAL(updateDetail(PackageKit::Client::UpdateInfo)), this, SLOT(updateDetail(PackageKit::Client::UpdateInfo))); - connect(t, SIGNAL(finished(PackageKit::Transaction::ExitStatus, uint)), - this, SLOT(updateDetailFinished(PackageKit::Transaction::ExitStatus, uint))); + connect(t, SIGNAL(finished(PackageKit::Enum::Exit, uint)), + this, SLOT(updateDetailFinished())); } } KpkUpdateDetails::~KpkUpdateDetails() { -// kDebug() << "~KpkUpdateDetails()"; } void KpkUpdateDetails::updateDetail(PackageKit::Client::UpdateInfo info) @@ -55,15 +54,15 @@ description += ""; // update type (ie Security Update) - if (state == Package::UnknownState) { - state = Package::StateNormal; + if (m_info == Enum::UnknownInfo) { + m_info = Enum::InfoNormal; } description += ""; - // state - if (info.state != Client::UnknownUpdateState) { + // m_info + if (info.state != Enum::UnknownUpdateState) { description += ""; @@ -91,7 +90,7 @@ // Updates (lists of packages that are updated) if (info.updates.size()) { QStringList updates; - foreach (Package *p, info.updates) updates << p->name() + '-' + p->version(); + foreach (QSharedPointer p, info.updates) updates << p->name() + '-' + p->version(); description += ""; @@ -100,7 +99,7 @@ // Obsoletes (lists of packages that are obsoleted) if (info.obsoletes.size()) { QStringList obsoletes; - foreach (Package *p, info.obsoletes) obsoletes << p->id() + '-' + p->version(); + foreach (QSharedPointer p, info.obsoletes) obsoletes << p->id() + '-' + p->version(); description += ""; @@ -145,7 +144,7 @@ } // Notice (about the need for a reboot) - if (info.restart == Client::RestartSession || info.restart == Client::RestartSystem) { + if (info.restart == Enum::RestartSession || info.restart == Enum::RestartSystem) { description += ""; @@ -177,10 +176,8 @@ return ret; } -void KpkUpdateDetails::updateDetailFinished(PackageKit::Transaction::ExitStatus status, uint runtime) +void KpkUpdateDetails::updateDetailFinished() { - Q_UNUSED(status) - Q_UNUSED(runtime) if (descriptionKTB->document()->toPlainText().isEmpty()) { descriptionKTB->setPlainText(i18n("No update description was found.")); } diff -Nru kpackagekit-0.5.4/Updater/KpkUpdateDetails.h kpackagekit-0.6.0/Updater/KpkUpdateDetails.h --- kpackagekit-0.5.4/Updater/KpkUpdateDetails.h 2009-11-17 12:32:11.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkUpdateDetails.h 2010-03-19 21:14:58.000000000 +0000 @@ -23,8 +23,6 @@ #include -#include "KpkPackageModel.h" - #include "ui_KpkUpdateDetails.h" using namespace PackageKit; @@ -33,15 +31,15 @@ { Q_OBJECT public: - explicit KpkUpdateDetails(PackageKit::Package *package, QWidget *parent = 0); + explicit KpkUpdateDetails(QSharedPointerpackage, QWidget *parent = 0); ~KpkUpdateDetails(); private slots: void updateDetail(PackageKit::Client::UpdateInfo info); - void updateDetailFinished(PackageKit::Transaction::ExitStatus status, uint runtime); + void updateDetailFinished(); private: - Package::State state; + Enum::Info m_info; QString getLinkList(const QString &links) const; }; diff -Nru kpackagekit-0.5.4/Updater/KpkUpdate.h kpackagekit-0.6.0/Updater/KpkUpdate.h --- kpackagekit-0.5.4/Updater/KpkUpdate.h 2009-12-07 18:31:37.000000000 +0000 +++ kpackagekit-0.6.0/Updater/KpkUpdate.h 2010-03-19 21:14:58.000000000 +0000 @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2008 by Daniel Nicoletti * + * Copyright (C) 2008-2010 by Daniel Nicoletti * * dantti85-pk@yahoo.com.br * * * * This program is free software; you can redistribute it and/or modify * @@ -18,14 +18,15 @@ * Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef PKUPDATE_H -#define PKUPDATE_H +#ifndef KPK_UPDATE_H +#define KPK_UPDATE_H #include -#include #include +#include + #include "ui_KpkUpdate.h" class KpkPackageModel; @@ -46,17 +47,16 @@ public slots: void load(); void applyUpdates(); - void refresh(); private slots: void on_selectAllPB_clicked(); void on_refreshPB_clicked(); void on_historyPB_clicked(); - void distroUpgrade(PackageKit::Client::DistroUpgradeType type, const QString &name, const QString &description); + void distroUpgrade(PackageKit::Enum::DistroUpgrade type, const QString &name, const QString &description); void getUpdates(); - void getUpdatesFinished(PackageKit::Transaction::ExitStatus status, uint runtime); + void getUpdatesFinished(PackageKit::Enum::Exit status); void updatePackages(); void updatePackagesFinished(KpkTransaction::ExitStatus status); @@ -65,7 +65,7 @@ void on_packageView_pressed(const QModelIndex &index); void checkEnableUpdateButton(); - void errorCode(PackageKit::Client::ErrorType error, const QString &details); + void errorCode(PackageKit::Enum::Error error, const QString &details); private: @@ -74,7 +74,7 @@ KpkDelegate *pkg_delegate; Client *m_client; Transaction *m_updatesT; - Client::Actions m_actions; + Enum::Roles m_roles; protected: virtual void resizeEvent(QResizeEvent *event);
                                                                          " + i18n("Type") + ":" - + KpkStrings::info(state) + + KpkStrings::info(m_info) + "
                                                                          " + i18nc("State of the upgrade (ie testing, unstable..)", "State") + ":" + KpkStrings::updateState(info.state) + "
                                                                          " + i18n("Updates") + ":" + updates.join("
                                                                          ") + "
                                                                          " + i18n("Obsoletes") + ":" + obsoletes.join("
                                                                          ") + "
                                                                          " + i18n("Notice") + ":" + KpkStrings::restartType(info.restart) + "